
/*GOOGLE BRAND VARIABLES*/
:root{
    /*Brand Colors*/
    --primary-gold:#B8860B;
    --dark-gold:#8B6914;
    --midnight-black:#1A1A1A;
    --white:#FFFFFF;
    --light-gold:#FDF6E3;
    --forest-green:#1E5631;

    /*Neutral*/
    --gray-100:#F8F8F8;
    --gray-200:#ECECEC;
    --gray-400:#9A9A9A;
    --gray-700:#4A4A4A;

    /*Typography*/
    --heading-font:"Playfair Display", Georgia, serif;
    --body-font:"Lato", Arial, sans-serif;

    /*Font Sizes*/
    --fs-hero:clamp(3rem,6vw,5rem);
    --fs-h1:clamp(2.6rem,4vw,4rem);
    --fs-h2:clamp(2rem,3vw,3rem);
    --fs-h3:1.5rem;
    --fs-body:1.05rem;
    --fs-small:.95rem;

    /*Spacing*/
    --section-padding:120px 0;
    --container-width:1200px;
    --border-radius:10px;
    --transition:.35s ease;
    --shadow:0 12px 35px rgba(0,0,0,.18);
}

/*CSS RESET*/
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{
    background:var(--midnight-black);
    color:var(--white);
    font-family:var(--body-font);
    line-height:1.8;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

/*GLOBAL ELEMENTS*/
img{
    display:block;
    max-width:100%;
    height:auto;
}

a{
    text-decoration:none;
    color:inherit;
    transition:var(--transition);
}

button{
    font-family:inherit;
    cursor:pointer;
    border:none;
    transition:var(--transition);
}

input{
    font-family:inherit;
    outline:none;
}

ul{
    list-style:none;
}

/*TYPOGRAPHY*/
h1,
h2,
h3,
h4,
h5,
h6{
    font-family:var(--heading-font);
    font-weight:700;
    line-height:1.2;
    color:var(--white);
}

h1{
    font-size:var(--fs-h1);
    margin-bottom:25px;
}

h2{
    font-size:var(--fs-h2);
    margin-bottom:25px;
}

h3{
    font-size:var(--fs-h3);
}

p{
    font-size:var(--fs-body);
    color:#DDDDDD;
    margin-bottom:20px;
}

.section-label{
    display:inline-block;
    color:var(--primary-gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:20px;
}

/*Container*/
.container{
    width:min(92%,var(--container-width));
    margin-inline:auto;
}

/*Section Spacing*/
section{
    padding:var(--section-padding);
}

/*==============================
  BUTTONS
==============================*/
.btn-primary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:18px 38px;

    background:var(--primary-gold);
    color:var(--white);
    border-radius:50px;

    font-weight:700;
    letter-spacing:.5px;

    transition:var(--transition);
    box-shadow:var(--shadow);

    position:relative;
    overflow:hidden;
}

.btn-primary:hover{
    background:var(--dark-gold);
    transform:translateY(-3px);
}

.btn-primary:focus{
    outline:3px solid var(--white);
    outline-offset:4px;
}

.btn-primary::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.28),
        transparent
    );
    transition:.8s;
}

.btn-primary:hover::before{
    left:120%;
}


/*==============================
  SECTION HEADER
==============================*/
.section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-header p{
    color:#CCCCCC;
}

.section-header::after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    margin:30px auto 0;
    background:var(--primary-gold);
    border-radius:30px;
}


/*==============================
  TEXT SELECTION
==============================*/
::selection{
    background:var(--primary-gold);
    color:var(--white);
}


/*==============================
  HEADER
==============================*/
#header{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    z-index:999;

    background:rgba(26,26,26,.92);
    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(184,134,11,.18);

    box-shadow:0 8px 35px rgba(0,0,0,.22);

    transition:var(--transition);
}


/*==============================
  NAVBAR
==============================*/
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    min-height:85px;
    padding:0 5px;
}


/*==============================
  LOGO
==============================*/
.logo img{
    width:180px;
    height:auto;
    transition:var(--transition);
}

.logo img:hover{
    transform:scale(1.04);
}


/*==============================
  NAVIGATION
==============================*/
.nav-links{
    display:flex;
    align-items:center;
    gap:42px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:var(--white);
    font-size:.98rem;
    font-weight:600;
    letter-spacing:.4px;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary-gold);

    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--primary-gold);
}

.nav-links a:hover::after{
    width:100%;
}


/*==============================
  MOBILE MENU
==============================*/
.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:var(--white);
    border-radius:10px;
    transition:var(--transition);
}

/*=========================================================
    HERO SECTION
=========================================================*/

#hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-top: 110px;

    overflow: hidden;

    isolation: isolate;

}


/*=========================================================
    HERO IMAGE
=========================================================*/

.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    z-index: -3;

    filter:
        brightness(.72)
        contrast(1.08)
        saturate(.95);

}


/*=========================================================
    HERO OVERLAY
=========================================================*/

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        rgba(0, 0, 0, .72),
        rgba(0, 0, 0, .85)
    );

    z-index: -2;

}


/*=========================================================
    HERO CONTENT
=========================================================*/

.hero-content {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    width: 100%;

}


.hero-text {

    max-width: 860px;

    margin: auto;

    animation: heroFade 1.2s ease forwards;

}


/*=========================================================
    HERO TITLE
=========================================================*/

.hero-text h1 {

    margin-bottom: 30px;

    letter-spacing: 1px;

    text-shadow:
        0 5px 18px rgba(0, 0, 0, .45);

}


/* Gold divider beneath hero content */

.hero-text::after {

    content: "";

    display: block;

    width: 120px;

    height: 3px;

    margin: 45px auto 0;

    border-radius: 30px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-gold),
        transparent
    );

}


/*=========================================================
    HERO TAGLINE
=========================================================*/

.hero-tagline {

    font-size: 1.45rem;

    color: var(--primary-gold);

    font-weight: 700;

    margin-bottom: 35px;

    font-family: var(--heading-font);

    letter-spacing: 1px;

    text-shadow:
        0 0 15px rgba(184, 134, 11, .18);

}


/*=========================================================
    LAUNCH INFORMATION
=========================================================*/

.hero-launch {

    font-size: 1.2rem;

    color: #E6E6E6;

    margin-bottom: 55px;

    line-height: 2;

    max-width: 620px;

    margin-left: auto;

    margin-right: auto;

}


/*=========================================================
    HERO BUTTON
=========================================================*/

.hero-text .btn-primary {

    font-size: 1rem;

    min-width: 230px;

}


/*=========================================================
    HERO SCROLL INDICATOR
=========================================================*/

.hero-scroll {

    position: absolute;

    bottom: 45px;

    left: 50%;

    transform: translateX(-50%);

    color: var(--primary-gold);

    font-size: 1.8rem;

    animation: bounce 2s infinite;

}


/*=========================================================
    HERO ANIMATIONS
=========================================================*/

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {

        transform: translate(-50%, 0);

    }

    40% {

        transform: translate(-50%, -10px);

    }

    60% {

        transform: translate(-50%, -5px);

    }

    

}


/*=========================================================
    HERO RESPONSIVE
=========================================================*/

@media (max-width: 768px) {

    #hero {

        min-height: 90vh;

        padding-top: 100px;

        padding-left: 20px;

        padding-right: 20px;

    }

    .hero-text {

        max-width: 650px;

    }

    .hero-tagline {

        font-size: 1.15rem;

    }

    .hero-launch {

        font-size: 1rem;

        margin-bottom: 40px;

    }

    .hero-text::after {

        width: 90px;

        margin-top: 35px;

    }

    .hero-scroll {

        bottom: 25px;

    }

}



/*========================================
  PREMISE SECTION
========================================*/
#premise{
    background:var(--midnight-black);
}

.premise-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.premise-content p{
    font-family:var(--heading-font);
    font-size:clamp(1.45rem,2.3vw,2rem);
    line-height:1.8;
    color:var(--light-gold);
    font-weight:600;
    letter-spacing:.3px;
    margin-bottom:0;
}

/*Decorative Divider*/
.premise-content::after{
    content:"";
    display:block;
    width:110px;
    height:3px;

    background:var(--primary-gold);

    margin:60px auto;

    border-radius:10px;
}


/*========================================
  SEASON ONE
========================================*/
#season-one{
    background:#121212;
}

.guest-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}


/*Guest Card*/
.guest-card{
    background:#202020;

    border:1px solid rgba(184,134,11,.12);

    border-radius:18px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 15px 45px rgba(0,0,0,.22);

    backdrop-filter:blur(8px);

    position:relative;
}

.guest-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary-gold);
    box-shadow:0 22px 55px rgba(0,0,0,.35);
}



/*Gold Border Animation*/
.guest-card::before{
    content:"";

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--primary-gold),
        transparent
    );

    opacity:0;

    transition:var(--transition);
}

.guest-card:hover::before{
    opacity:1;
}


/*Guest Image*/
/*========================================*
* GUEST IMAGE — DESKTOP
*========================================*/

.guest-image{
    width:100%;
    height:360px;
    overflow:hidden;
    background:#2C2C2C;

    display:flex;
    align-items:center;
    justify-content:center;
}

.guest-image img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center 25%;

    display:block;

    transition:transform .7s ease;

    filter:
        contrast(1.05)
        saturate(.95);
}

.guest-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(
            circle at center,
            rgba(184,134,11,.12),
            transparent 65%
        ),
        #202020;
}

.placeholder-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    text-align:center;
    color:#BDBDBD;
}

.placeholder-content i{
    font-size:2.5rem;
    color:var(--primary-gold);
}

.placeholder-content span{
    font-size:.9rem;
    line-height:1.6;
}

.guest-card:hover .guest-image img{
    transform:scale(1.08);
}


/*Guest Information*/
.guest-info{
    padding:30px;
    text-align:center;
}

.guest-info h3{
    color:var(--primary-gold);
    font-size:1.55rem;
    margin-bottom:15px;
    transition:var(--transition);
}



.guest-card:hover{
    border-color:var(--primary-gold);
}
.guest-info p{
    color:#D7D7D7;
    margin-bottom:0;
    line-height:1.8;
}


/*Season Header*/
#season-one .section-header{
    margin-bottom:80px;
}

#season-one .section-header h2{
    margin-bottom:25px;
}

#season-one .section-header p{
    max-width:720px;
    margin:auto;
}


/*========================================
  NEWSLETTER
========================================*/
#newsletter{
    background:linear-gradient(
        180deg,
        #1A1A1A,
        #111111
    );
}

.newsletter-wrapper{
    position:relative;

    overflow:hidden;

    max-width:950px;

    margin:auto;

    text-align:center;

    background:#202020;

    border:1px solid rgba(184,134,11,.18);

    border-radius:20px;

    padding:70px 50px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);
}


/*Decorative Glow*/
.newsletter-wrapper::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    top:-160px;
    right:-160px;

    background:radial-gradient(
        rgba(255,255,255,.08),
        transparent
    );

    pointer-events:none;
}

.newsletter-wrapper::after{
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    bottom:-120px;
    left:-120px;

    background:radial-gradient(
        rgba(255,255,255,.08),
        transparent
    );

    pointer-events:none;
}


/*Newsletter Content*/
.newsletter-content{
    margin-bottom:45px;
}

.newsletter-content h2{
    margin-bottom:25px;
}

.newsletter-content p{
    max-width:700px;
    margin:0 auto;
    color:#D7D7D7;
}


/*Newsletter Form*/
.newsletter-form{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.newsletter-form input{
    flex:1;

    min-width:320px;
    max-width:520px;

    height:65px;

    padding:0 25px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.08);

    background:#2A2A2A;

    color:var(--white);

    font-size:1rem;

    transition:var(--transition);
}

.newsletter-form input::placeholder{
    color:#BBBBBB;
}

.newsletter-form input:focus{
    border-color:var(--primary-gold);

    box-shadow:0 0 18px rgba(184,134,11,.25);
}


/*========================================*
* NEWSLETTER — FINISHING TOUCHES
*========================================*/

.newsletter-wrapper{
    isolation:isolate;
}

.newsletter-wrapper .section-header{
    position:relative;
    z-index:2;
}

.newsletter-form{
    position:relative;
    z-index:2;
}

.newsletter-form input{
    outline:none;
}

.newsletter-form input:focus{
    transform:translateY(-1px);
}

.newsletter-form .btn-primary{
    min-height:65px;
    padding-left:32px;
    padding-right:32px;
    white-space:nowrap;
}
/*========================================
  FOOTER
========================================*/
#footer{
    background:#0F0F0F;
    padding:90px 0 35px;
    border-top:1px solid rgba(184,134,11,.12);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:50px;
    margin-bottom:70px;
}

.footer-logo{
    width:170px;
    margin-bottom:25px;
    filter:drop-shadow(0 0 15px rgba(184,134,11,.20));
}

.footer-brand p{
    color:#CFCFCF;
    line-height:1.9;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4{
    color:var(--primary-gold);
    margin-bottom:25px;
}

.footer-links ul{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.footer-links a{
    color:#DDDDDD;
    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--primary-gold);
    padding-left:8px;
}

.footer-contact p{
    color:#DDDDDD;
    word-break:break-word;
}


/*========================================
  SOCIAL ICONS
========================================*/
.social-icons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.social-icons a{
    width:48px;
    height:48px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#1F1F1F;

    border:1px solid rgba(255,255,255,.08);

    color:var(--white);

    box-shadow:0 6px 20px rgba(0,0,0,.22);

    transition:var(--transition);
}

.social-icons a:hover{
    background:var(--primary-gold);
    color:#111111;
    transform:translateY(-5px);
}


/*========================================
  FOOTER BOTTOM
========================================*/
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#BEBEBE;
    font-size:.95rem;
}

.footer-bottom a{
    color:var(--primary-gold);
}

.footer-bottom a:hover{
    text-decoration:underline;
}

/*========================================*
* FOOTER — FINISHING TOUCHES
*========================================*/

.footer-brand{
    max-width:360px;
}

.footer-brand p{
    max-width:360px;
}

.footer-links a{
    text-decoration:none;
}

.footer-contact p{
    line-height:1.8;
}

.social-icons a{
    text-decoration:none;
}

.social-icons a:hover{
    background:var(--primary-gold);
    color:#111111;
    transform:translateY(-5px);
}

.footer-bottom{
    line-height:1.7;
}

.footer-bottom a{
    text-decoration:none;
    transition:var(--transition);
}

/*========================================
  UTILITY CLASSES
========================================*/
.text-center{
    text-align:center;
}

.mb-0{
    margin-bottom:0;
}

.hidden{
    display:none;
}


/*========================================
  ACCESSIBILITY
========================================*/
a:focus,
button:focus,
input:focus{
    outline:3px solid var(--primary-gold);
    outline-offset:4px;
}


/*========================================
  SCROLLBAR
========================================*/
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--primary-gold);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--dark-gold);
}


/*========================================
  FADE-UP ANIMATION
========================================*/
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}


/*========================================
  PREMIUM SECTION EFFECT
========================================*/
section{
    transition:.5s ease;
}

section:hover{
    transition:.5s ease;
}


/*========================================
  PREMIUM CARD EFFECTS
========================================*/
.guest-card:hover{
    border-color:#D4AF37;
}

.guest-info h3{
    transition:var(--transition);
}

.guest-card:hover h3{
    color:#D4AF37;
}


/*========================================
  PREMIUM IMAGE TREATMENT
========================================*/
.hero-image{
    filter:
        brightness(.72)
        contrast(1.08)
        saturate(.95);
}

.guest-image img{
    filter:
        contrast(1.05)
        saturate(.95);
}


/*========================================
  PREMIUM TEXT SELECTION
========================================*/
::selection{
    background:#D4AF37;
    color:#111111;
}

/*==================================================
    RESPONSIVE DESIGN
==================================================*/

/*==========================
  LARGE DESKTOP
===========================*/
@media (max-width:1400px){

.container{
    width:min(94%,1200px);
}

.hero-text{
    max-width:760px;
}

/*========================================*
* SECTION SPACING — FINISHING TOUCHES
*========================================*/

section{
    position:relative;
}



.section-header{
    margin-bottom:55px;
}

.section-header .section-label{
    display:inline-block;
    margin-bottom:15px;
}

.section-header h2{
    margin-bottom:18px;
}

.section-header p{
    max-width:720px;
    margin-left:auto;
    margin-right:auto;
}

/*========================================*
* SECTION DIVIDERS
*========================================*/

#premise::before,
#season-one::before,
#newsletter::before{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:min(85%,900px);
    height:1px;

    transform:translateX(-50%);

    background:linear-gradient(
        90deg,
        transparent,
        rgba(184,134,11,.22),
        transparent
    );
}

}

#premise,
#season-one,
#newsletter{
    padding-top:100px;
    padding-bottom:100px;
}


/*==========================
  DESKTOP
===========================*/
@media (max-width:1200px){

.container{
    width:92%;
}

.hero-text{
    max-width:700px;
}

.hero-text h1{
    font-size:3.6rem;
}

.guest-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/*==========================
  LAPTOP
===========================*/
@media (max-width:992px){

section{
    padding:90px 0;
}

.navbar{
    min-height:75px;
}

.logo img{
    width:150px;
}

.nav-links{
    gap:25px;
}

.hero-text h1{
    font-size:3rem;
}

.hero-tagline{
    font-size:1.25rem;
}

.hero-launch{
    font-size:1.05rem;
}

.section-header{
    margin-bottom:55px;
}

.newsletter-wrapper{
    padding:60px 35px;
}

/*==================================
HEADER — TABLET POLISH
==================================*/

#header{
    padding:0 1rem;
}

#header .container{
    width:92%;
}

.nav-links{
    gap:1.5rem;
}

/*==================================*
* HEADER — TABLET
*==================================*/

.navbar{
    min-height:80px;
}

.logo img{
    width:160px;
}

.nav-links{
    gap:1.5rem;
}

.nav-links a{
    font-size:.9rem;
}
}

/*==================================
GUEST CARDS — TABLET
==================================*/

.guest-grid{
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
}

.guest-card{
    width:100%;
}

.guest-info{
    padding:1.8rem;
}

/*==================================*
* SECTION SPACING — TABLET
*==================================*/

#premise,
#season-one,
#newsletter{
    padding-top:85px;
    padding-bottom:85px;
}

.section-header{
    margin-bottom:45px;
}

/*========================================*
* FOOTER — TABLET
*========================================*/

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.footer-brand{
    max-width:100%;
}

.footer-brand p{
    max-width:400px;
}

/*=========================================================*
* HERO — TABLET
*=========================================================*/

@media (max-width: 992px) {

    #hero{
        min-height:92vh;
        padding-top:100px;
        padding-left:30px;
        padding-right:30px;
    }

    .hero-text{
        max-width:760px;
    }

    .hero-text h1{
        margin-bottom:25px;
    }

    .hero-tagline{
        font-size:1.3rem;
    }

    .hero-launch{
        font-size:1.1rem;
        margin-bottom:45px;
    }

}



/*==========================
  TABLET
===========================*/
@media (max-width:768px){

.menu-toggle{
    display:flex;
}

/*==================================
HERO — MOBILE POLISH
==================================*/

.hero-content{
    width:100%;
    padding:0 1rem;
}

.hero-text{
    max-width:680px;
}

.hero-text h1{
    font-size:clamp(2.4rem, 8vw, 3.3rem);
    line-height:1.15;
    margin-bottom:1.5rem;
}

.hero-tagline{
    font-size:1.1rem;
    line-height:1.6;
    margin-bottom:1.8rem;
}

.hero-launch{
    font-size:1rem;
    line-height:1.7;
    margin-bottom:2.5rem;
}

.hero-text .btn-primary{
    min-width:210px;
}

.hero-text::after{
    width:90px;
    margin-top:35px;
}

.hero-scroll{
    bottom:30px;
    font-size:1.5rem;
}

/*Mobile Navigation*/
.nav-links{

    position:fixed;

    top:85px;
    left:-100%;

    width:100%;

    background:rgba(26,26,26,.98);

    backdrop-filter:blur(12px);

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    gap:30px;

    padding:50px 0;

    transition:.4s ease;

    border-top:1px solid rgba(184,134,11,.15);

}

/*==================================
FEATURED IMAGE — MOBILE
==================================*/

.featured-image{
    width:100%;
    max-width:700px;
    margin:0 auto;
}

.featured-image img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
}

/*==================================
GUEST IMAGE — TABLET
==================================*/

.guest-image{
    height:auto;
    min-height:0;
    overflow:hidden;
}

.guest-image img{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    object-position:center top;
}

/*==================================
GUEST CARDS — MOBILE
==================================*/

.guest-grid{
    grid-template-columns:1fr;
    gap:2rem;
}

.guest-card{
    width:100%;
    max-width:520px;
    margin:0 auto;
}

.guest-info{
    padding:1.8rem 1.5rem;
}

.guest-info h3{
    font-size:1.5rem;
}

.guest-info p{
    font-size:.95rem;
    line-height:1.7;
}


.hero-text{
    max-width:100%;
}

.hero-text h1{
    font-size:2.6rem;
}

.hero-tagline{
    font-size:1.15rem;
}

.hero-launch{
    font-size:1rem;
}

.hero-scroll{
    display:none;
}

.guest-grid{
    grid-template-columns:1fr;
}


/*==================================*
* GUEST IMAGE — 768px AND BELOW
*==================================*/

.guest-image{
    width:100%;
    height:auto;
    min-height:0;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#2C2C2C;
}

.guest-image img{
    width:100%;
    height:auto;

    object-fit:contain;
    object-position:center;

    display:block;

    filter:
        contrast(1.05)
        saturate(.95);
}



.section-header p{
    font-size:.95rem;
}

.premise-content p{
    font-size:1.2rem;
}


/*==================================*
* NEWSLETTER — TABLET & MOBILE
*==================================*/

.newsletter-wrapper{
    padding:50px 30px;
}

.newsletter-form{
    width:100%;
    flex-direction:column;
    gap:1rem;
}

.newsletter-form input{
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
}

.newsletter-form .btn-primary{
    width:100%;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.social-icons{
    justify-content:center;
}

.footer-links ul{
    align-items:center;
}

/*==================================*
* GUEST SECTION — MOBILE
*==================================*/

.guest-card{
    width:100%;
}

.guest-info{
    padding:1.5rem;
}

.guest-info h3{
    font-size:1.5rem;
}

.guest-info p{
    font-size:.95rem;
    line-height:1.7;
}

.guest-social{
    justify-content:center;
}

/*==================================*
* HEADER — MOBILE
*==================================*/

.navbar{
    min-height:75px;
    padding:0 5px;
}

.logo img{
    width:145px;
}

.menu-toggle{
    display:flex;
}

.nav-links{
    position:absolute;
    top:75px;
    left:0;

    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:0;

    padding:1.5rem 0;

    background:rgba(26,26,26,.98);

    backdrop-filter:blur(14px);

    border-top:1px solid rgba(184,134,11,.18);

    box-shadow:0 15px 30px rgba(0,0,0,.25);

    transform:translateY(-120%);
    opacity:0;
    visibility:hidden;

    transition:all .35s ease;
}

.nav-links.active{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
}

.nav-links li{
    width:100%;
    text-align:center;
}

.nav-links a{
    display:block;
    padding:1rem;
    font-size:1rem;
}

.nav-links a::after{
    display:none;
}

/*==================================*
* SECTION SPACING — MOBILE
*==================================*/

#premise,
#season-one,
#newsletter{
    padding-top:70px;
    padding-bottom:70px;
}

.section-header{
    margin-bottom:38px;
}

/*========================================*
* FOOTER — MOBILE
*========================================*/

#footer{
    padding:65px 0 30px;
}

.footer-grid{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-brand{
    max-width:500px;
    margin:0 auto;
}

.footer-brand p{
    max-width:500px;
    margin:0 auto;
}

.footer-logo{
    margin-left:auto;
    margin-right:auto;
}

.footer-links ul{
    align-items:center;
}

.social-icons{
    justify-content:center;
}

.footer-bottom{
    padding-top:25px;
}

}

/*==================================*
* GUEST IMAGE — TABLET
*==================================*/

@media (min-width:401px) and (max-width:1024px){

    .guest-image{
        width:100%;
        height:auto;
        min-height:0;
        overflow:hidden;
        background:#2C2C2C;
    }

    .guest-image img{
        width:100%;
        height:auto;
        max-height:none;

        object-fit:contain;
        object-position:center;

        display:block;
    }

}




/*==========================*
* SMALL MOBILE
*===========================*/

@media (max-width:400px){

    /* HERO */
    .hero-text h1{
        font-size:1.8rem;
        line-height:1.15;
    }

    .hero-tagline{
        font-size:.95rem;
        line-height:1.6;
    }

    .hero-launch{
        font-size:.9rem;
        line-height:1.7;
    }

    .hero-text .btn-primary{
        width:100%;
        max-width:230px;
        min-width:0;
    }

    .hero-scroll{
        bottom:25px;
        font-size:1.4rem;
    }


    /* SECTION HEADINGS */
    .section-header h2{
        font-size:1.7rem;
        line-height:1.2;
    }

    .section-header p{
        font-size:.95rem;
        line-height:1.7;
    }


    /* GUEST */
    .guest-image{
        height:280px;
    }

    .guest-info h3{
        font-size:1.3rem;
    }



    .newsletter-content h2{
        font-size:1.7rem;
    }

    .newsletter-content p{
        font-size:.9rem;
    }

    .newsletter-form input{
        height:50px;
        padding:0 18px;
        font-size:.9rem;
    }

    .newsletter-form .btn-primary{
        min-height:50px;
    }




    /* SOCIAL ICONS */
    .social-icons a{
        width:42px;
        height:42px;
    }


    /* GENERAL BUTTONS */
    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:260px;
    }

    /*==================================*
* HEADER — SMALL MOBILE
*==================================*/

#header .container{
    width:92%;
}

.logo img{
    width:130px;
    max-width:130px;
}

.navbar{
    min-height:70px;
}

.nav-links{
    top:70px;
}

/*==================================*
* SECTION SPACING — SMALL MOBILE
*==================================*/

#premise,
#season-one,
#newsletter{
    padding-top:60px;
    padding-bottom:60px;
}

.section-header{
    margin-bottom:32px;
}

/*========================================*
* FOOTER — SMALL MOBILE
*========================================*/

.footer-logo{
    width:135px;
}

.footer-brand p{
    font-size:.9rem;
    line-height:1.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4{
    margin-bottom:18px;
}

.social-icons{
    gap:10px;
}

.social-icons a{
    width:42px;
    height:42px;
}

.footer-bottom p{
    font-size:.8rem;
    line-height:1.7;
}
}

/*==========================
  LANDSCAPE PHONES
===========================*/
@media (max-height:500px) and (orientation:landscape){

#hero{
    min-height:700px;
}

.hero-scroll{
    display:none;
}

}

