/* ============================================
   CRUST PIZZA CO. - MAIN STYLESHEET
   ============================================
   Table of Contents:
   1. CSS Variables (Design Tokens)
   2. Font Face Declarations
   3. Base Reset & Typography
   4. Utility Classes
   5. Buttons
   6. Form Elements
   7. Navbar
   8. Hero Section
   9. Section Styles (added in Phase 4)
   ============================================ */

/* ============================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ============================================ */
:root {
    /* Primary Colors */
    --clr-primary: #E2662A;
    --clr-primary-dark: #E16529;
    --clr-primary-darker: #D55D22;
    --clr-accent: #FC9C19;

    /* Neutral Colors */
    --clr-white: #FFFFFF;
    --clr-gray-100: #F6F6F6;
    --clr-cream: #FCEFE9;
    --clr-gray-200: #E8E8E8;
    --clr-gray-300: #E5E5E5;
    --clr-gray-400: #B2B2B2;
    --clr-gray-700: #403D3E;
    --clr-dark: #222222;
    --clr-dark-alt: #1F1F1F;
    --clr-text: #212121;
    --clr-black: #000000;

    /* Typography - Font Families */
    --ff-heading: 'Cervo-Medium', sans-serif;
    --ff-body: 'Switzer', sans-serif;
    --ff-display: 'Bebas Neue', sans-serif;
    --ff-script: 'Boston Skyline Clean', cursive;
    --ff-ui: 'Inter', sans-serif;

    /* Typography - Font Sizes */
    --fs-hero: clamp(72px, 7vw, 133px);
    --fs-h1: clamp(56px, 5.5vw, 106px);
    --fs-h2: clamp(42px, 4vw, 60px);
    --fs-h3: clamp(32px, 2.5vw, 46px);
    --fs-h4: clamp(28px, 2vw, 42px);
    --fs-h5: clamp(24px, 1.5vw, 32px);
    --fs-subtitle: clamp(18px, 1.3vw, 25px);
    --fs-body-lg: clamp(18px, 1.25vw, 24px);
    --fs-body: clamp(16px, 1vw, 20px);
    --fs-body-sm: clamp(14px, 0.9vw, 18px);
    --fs-small: clamp(13px, 0.8vw, 16px);

    /* Spacing Scale (8px grid) */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-15: 120px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-btn: 6px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0px 6px 11px rgba(0, 0, 0, 0.05);
    --shadow-md: 0px 7px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 4px 8px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Container */
    --container-max: 1560px;
}

/* ============================================
   2. FONT FACE DECLARATIONS
   ============================================ */

/* Cervo Medium */
@font-face {
    font-family: 'Cervo-Medium';
    src: url('../fonts/Cervo-Medium/Web Fonts/9518c799c1636fd5e3276286f30a66bb.woff2') format('woff2'),
         url('../fonts/Cervo-Medium/Web Fonts/9518c799c1636fd5e3276286f30a66bb.woff') format('woff'),
         url('../fonts/Cervo-Medium/Cervo-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Switzer */
@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/fonts/Switzer-Light.woff2') format('woff2'),
         url('../fonts/switzer/fonts/Switzer-Light.woff') format('woff'),
         url('../fonts/switzer/fonts/Switzer-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/fonts/Switzer-Regular.woff2') format('woff2'),
         url('../fonts/switzer/fonts/Switzer-Regular.woff') format('woff'),
         url('../fonts/switzer/fonts/Switzer-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/fonts/Switzer-Medium.woff2') format('woff2'),
         url('../fonts/switzer/fonts/Switzer-Medium.woff') format('woff'),
         url('../fonts/switzer/fonts/Switzer-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/fonts/Switzer-Bold.woff2') format('woff2'),
         url('../fonts/switzer/fonts/Switzer-Bold.woff') format('woff'),
         url('../fonts/switzer/fonts/Switzer-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Bebas Neue */
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas_neue/BebasNeue-Regular.woff2') format('woff2'),
         url('../fonts/bebas_neue/BebasNeue-Regular.woff') format('woff'),
         url('../fonts/bebas_neue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Boston Skyline Clean */
@font-face {
    font-family: 'Boston Skyline Clean';
    src: url('../fonts/Set-Sail-Studios-Boston-Skyline-Clean.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   3. BASE RESET & TYPOGRAPHY
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--clr-text);
    background-color: var(--clr-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--ff-heading);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: var(--space-3);
}

h1, .h1 { font-size: var(--fs-hero); }
h2, .h2 { font-size: var(--fs-h1); }
h3, .h3 { font-size: var(--fs-h2); }
h4, .h4 { font-size: var(--fs-h3); }
h5, .h5 { font-size: var(--fs-h4); }
h6, .h6 { font-size: var(--fs-h5); }

p {
    margin-bottom: var(--space-2);
}

a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--clr-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   4. UTILITY CLASSES
   ============================================ */

/* Text Colors */
.text-primary { color: var(--clr-primary) !important; }
.text-dark { color: var(--clr-text) !important; }
.text-white { color: var(--clr-white) !important; }
.text-muted { color: var(--clr-gray-400) !important; }

/* Background Colors */
.bg-primary { background-color: var(--clr-primary) !important; }
.bg-dark { background-color: var(--clr-dark) !important; }
.bg-cream { background-color: var(--clr-cream) !important; }
.bg-gray { background-color: var(--clr-gray-100) !important; }
.bg-white { background-color: var(--clr-white) !important; }

/* Typography Classes */
.heading-hero {
    font-family: var(--ff-heading);
    font-size: var(--fs-hero);
    line-height: 0.84;
    text-transform: uppercase;
}

.heading-xl {
    font-family: var(--ff-heading);
    font-size: var(--fs-h1);
    line-height: 0.85;
    text-transform: uppercase;
}

.heading-lg {
    font-family: var(--ff-display);
    font-size: var(--fs-h2);
    line-height: 1.2;
    text-transform: uppercase;
}

.heading-md {
    font-family: var(--ff-heading);
    font-size: var(--fs-h3);
    line-height: 1.17;
    text-transform: uppercase;
}

.heading-sm {
    font-family: var(--ff-heading);
    font-size: var(--fs-h4);
    line-height: 1;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--ff-body);
    font-size: var(--fs-subtitle);
    font-weight: 600;
    line-height: 1.68;
    text-transform: uppercase;
}

.body-lg {
    font-size: var(--fs-body-lg);
    line-height: 1.67;
}

.body-sm {
    font-size: var(--fs-body-sm);
    line-height: 1.44;
}

.tagline {
    font-family: var(--ff-script);
    font-size: clamp(42px, 4vw, 76px);
    line-height: 1.24;
    font-weight: 400;
}

/* Spacing Utilities */
.py-80 { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.py-120 { padding-top: var(--space-15); padding-bottom: var(--space-15); }

.mb-80 { margin-bottom: var(--space-10); }

/* Section Title Block */
.section-header {
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
}

.section-header__title {
    margin-bottom: var(--space-3);
}

.section-header__subtitle {
    font-family: var(--ff-body);
    font-size: var(--fs-subtitle);
    font-weight: 600;
    line-height: 1.68;
    text-transform: uppercase;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    font-family: var(--ff-body);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

/* Override Bootstrap container max-width */
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1560px;
    }
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
}

.btn-dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.btn-dark:hover {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.btn-outline-primary:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.btn-nav {
    padding: 14px 24px;
    font-size: 18px;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 22px;
}

.btn__icon {
    width: 20px;
    height: auto;
    margin-left: var(--space-1);
}

/* Font Awesome icons in buttons */
.btn i {
    margin-left: var(--space-1);
    font-size: 0.9em;
}

/* Make icon white on primary/dark buttons */
.btn-primary .btn__icon,
.btn-dark .btn__icon {
    filter: brightness(0) invert(1);
}

/* ============================================
   6. FORM ELEMENTS
   ============================================ */
.form-label {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-1);
    display: block;
}

.form-control {
    width: 100%;
    height: 58px;
    padding: 16px 20px;
    font-family: var(--ff-body);
    font-size: 16px;
    color: var(--clr-text);
    background-color: var(--clr-white);
    border: 1px solid var(--clr-gray-300);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(226, 102, 42, 0.15);
}

.form-control::placeholder {
    color: var(--clr-gray-400);
}

/* ============================================
   7. NAVBAR
   ============================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 144px;
    background-color: var(--clr-white);
}

.header__logo {
    width: 156px;
    height: auto;
}

.navbar {
    padding: 0;
    height: 100%;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    gap: 40px;
    padding-top: 66px;
    padding-bottom: 66px;
}

.nav-link {
    font-family: var(--ff-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-black) !important;
    text-transform: uppercase;
    padding: 0 !important;
    white-space: nowrap;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--clr-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button - Pill Shape */
.btn-nav {
    padding: 14px 32px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px; /* Pill shape */
    margin-top: 44px;
    margin-bottom: 44px;
}

.navbar-toggler {
    border: none;
    padding: var(--space-1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   8. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    /* Match Figma frame 1920×1532 so background-size: cover crops the same at every width */
    aspect-ratio: 1920 / 1532;
    height: auto;
    min-height: 700px;
    background: url('../img/hero.jpg') center bottom / cover no-repeat;
    margin-top: 144px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.hero > .container {
    padding-top: 127px;
}

/* Hero Row - Custom gap */
.hero__row {
    display: flex;
    align-items: flex-start;
    gap: 118px;
}

/* Hero Left Column - includes orange bar + space + text */
.hero__left-col {
    width: 730px; /* 7px bar + 35px space + 689px text */
    flex-shrink: 1;
    padding: 0;
}

/* Hero Right Column - Exact width */
.hero__right-col {
    width: 712px;
    flex-shrink: 1;
}

/* Hero Left Content */
.hero__content {
    position: relative;
    z-index: 1;
    padding-left: 35px;
}

.hero__accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 569px; /* Exact Figma height */
    background-color: var(--clr-primary);
}

.hero__tagline {
    font-family: var(--ff-script);
    font-size: 76px;
    line-height: 55px;
    color: #E16529;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-family: var(--ff-heading);
    font-size: 133px;
    line-height: 112px; /* 84% line-height */
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero__text {
    font-family: var(--ff-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 40px; /* 167% */
    color: #FFFFFF;
    max-width: 585px;
    margin-bottom: 0;
}

/* Hero Form Card */
.hero__form-card {
    --hero-form-bg: rgba(31, 31, 31, 0.902); /* #1f1f1f with 0.9 opacity */
    background: var(--hero-form-bg);
    width: 100%;
    padding: 40px 48px 48px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

/* Franchise wizard: full-card overlay while step 1 saves (hero + footer forms) */
.franchise-wizard-busy-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 30;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.55);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-family: var(--ff-ui);
    text-align: center;
    padding: 24px;
    pointer-events: auto;
}

.hero__form-card.is-franchise-wizard-busy .franchise-wizard-busy-overlay {
    display: flex;
}

.franchise-wizard-busy-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: franchise-wizard-spin 0.75s linear infinite;
}

@keyframes franchise-wizard-spin {
    to {
        transform: rotate(360deg);
    }
}

.franchise-wizard-busy-label {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    max-width: 260px;
    line-height: 1.35;
}

.hero__form-title {
    font-family: var(--ff-display);
    font-size: 52px;
    line-height: 1;
    color: var(--clr-white);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

/* Form Stepper with connecting lines */
.form-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
    isolation: isolate;
}

.form-stepper__step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.form-stepper__connector {
    flex: 1 1 0;
    min-width: 0;
    height: 3px;
    align-self: center;
    margin: 0 -2px;
    background-color: var(--clr-primary);
    border-radius: 0;
    position: relative;
    z-index: 0;
}

.form-stepper__connector.form-stepper__connector--pending {
    background-color: rgba(255, 255, 255, 0.22);
}

.form-stepper__circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-ui);
    font-size: 26px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.form-stepper__circle--filled {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

.form-stepper__circle--outline {
    /* Same as form card so connector overlap doesn’t show through the ring */
    background-color: var(--hero-form-bg, rgba(31, 31, 31, 0.902));
    border: 2px solid var(--clr-primary);
    color: var(--clr-white);
}

/* Hero franchise 3-step wizard */
.hero-franchise-step {
    display: none;
}

.hero-franchise-step.is-active {
    display: block;
    padding-top: 4px;
}

.hero-franchise-step__title {
    font-family: var(--ff-ui);
    font-size: 15px;
    font-weight: 700;
    color: var(--clr-white);
    margin: 0 0 14px;
    padding-top: 2px;
    clear: both;
    position: relative;
    z-index: 0;
}

.hero__form .form-select {
    height: 52px;
    border-radius: 10px;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
}

.hero__form .form-select:focus {
    box-shadow: 0 0 0 3px rgba(226, 102, 42, 0.3);
}

/* Hero Form */
.hero__form .form-label {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: 8px;
}

.hero__form .form-label .label-field {
    font-family: var(--ff-body);
    font-weight: 700;
    font-style: normal;
}

.hero__form .label-light {
    font-weight: 400;
    font-style: normal;
}

/* Keep paired yes/no fields aligned when label lengths differ */
.hero__form .hero-paired-field .form-label {
    min-height: 46px;
    display: flex;
    align-items: flex-end;
}

.hero__form .form-control {
    height: 52px;
    border-radius: 10px;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
}

.hero__form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(226, 102, 42, 0.3);
}

/* Hero Button */
.btn-hero {
    margin-top: 24px;
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px; /* Pill shape */
    letter-spacing: 1px;
}

/* ============================================
   9. EARNINGS / HOW MUCH CAN I MAKE
   ============================================ */
.earnings {
    padding-top: 247px;
    padding-bottom: 229px;
}

.earnings .section-header {
    margin-bottom: 146px;
    max-width: 100%;
    width: 100%;
}

.earnings .section-header__subtitle {
    font-weight: 600;
}

.earnings__subtitle-inner {
    display: block;
    width: 100%;
    max-width: 1234px;
    margin-left: auto;
    margin-right: auto;
}

.earnings__stats-row {
    gap: 48px;
}

/* $50B Industry Card */
.earnings__industry-card {
    background-color: var(--clr-primary);
    border-radius: 20px;
    padding: 12px;
    max-width: 590px;
}

.earnings__industry-inner {
    border: 3px dashed rgba(255, 255, 255);
    border-radius: 16px;
    padding: 98px 40px;
    text-align: center;
}

.earnings__industry-value {
    display: block;
    width: min(309.7px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-family: var(--ff-body);
    font-size: 110px;
    font-weight: 700;
    line-height: calc(78 / 110);
    color: var(--clr-white);
    text-transform: uppercase;
    margin-bottom: 0;
}

.earnings__industry-label {
    display: block;
    width: min(313px, 100%);
    margin-top: 42.5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-family: var(--ff-body);
    font-size: 40px;
    font-weight: 500;
    line-height: calc(29 / 40);
    color: var(--clr-white);
    text-transform: uppercase;
}

/* Stat Items (right 2x2 grid) */
.earnings__stat {
    text-align: center;
    padding: 20px 0;
}

.earnings__stat-value {
    font-family: var(--ff-body);
    font-size: 96px;
    line-height: 1;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.earnings__stat-value--dark {
    color: var(--clr-text);
}

.earnings__stat-icon {
    width: 106px;
    height: 110px;
    margin: 0 auto 12px;
    object-fit: contain;
}

.earnings__stat-label {
    font-family: var(--ff-body);
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--clr-text);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* ============================================
   10. CEO WELCOME SECTION
   ============================================ */
.ceo-welcome {
    position: relative;
    height: 675px;
    background: url('../img/Layer149.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-welcome__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.ceo-welcome__content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-welcome__title {
    font-family: var(--ff-heading);
    font-size: 106px;
    line-height: 1;
    color: var(--clr-white);
    text-transform: uppercase;
    margin-top: 42px;
    margin-bottom: 24px;
}

.ceo-welcome__subtitle {
    font-family: var(--ff-body);
    font-size: 25px;
    font-weight: 600;
    line-height: 1.8;
    color: var(--clr-white);
    text-align: center;
    max-width: 1120px;
    margin-bottom: 56px;
    text-transform: uppercase;
}

.ceo-welcome__play-btn {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ceo-welcome__play-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.ceo-welcome__play-btn img {
    width: 133px;
    height: 133px;
}

/* ============================================
   11. ADDITIONAL SECTIONS (Phase 4)
   ============================================ */
/* More sections will be added progressively */

/* ============================================
   12. WHY FRANCHISE SECTION
   ============================================ */
.why-franchise {
  background-color: var(--clr-white);
  /* Figma: 170px from section top to heading, 142px bottom after grid */
  padding-top: clamp(3rem, 10vw, 170px);
  padding-bottom: clamp(2.5rem, 8vw, 142px);
}

@media (min-width: 992px) {
  .why-franchise {
    padding-top: 170px;
    padding-bottom: 142px;
  }
}

/* Space between heading block and card grid */
.why-franchise__header {
  margin-bottom: clamp(2rem, 5vw, 5rem);
}

/* Section title — Cervo-Medium 106px / 90px lh (Figma) */
.why-franchise__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(2.25rem, 7vw, 106px);
  line-height: clamp(2rem, 5.9vw, 90px);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-text);
}

/* Gutters: 50px cols + 40px rows at 1400px+ only; tighter below */
.why-franchise__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 28px;
}

@media (min-width: 768px) and (max-width: 1400px) {
  .why-franchise__row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 24px;
  }
}

@media (max-width: 767.98px) {
  .why-franchise__row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 24px;
  }
}

@media (max-width: 575.98px) {
  .why-franchise__row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 20px;
  }
}

/* ——— Pizza Card ——— */

/* Wrapper: fixed card footprint; flex-shrink 0 so Bootstrap row never squishes cards */
.pizza-card-wrapper {
  flex-shrink: 0;
  width: 388px;
  max-width: none;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.25))
          drop-shadow(0px 6px 11px rgba(0, 0, 0, 0.05));
}

/* Card: Figma 388 × 804 — fixed dimensions at all breakpoints */
.pizza-card {
  width: 388px;
  height: 804px;
  max-width: none;
  background-color: var(--clr-white);
  clip-path: url(#pizza-card-clip);
  overflow: hidden;
  position: relative;
  cursor: default;
}

/* Primary-color wave-accent stroke that traces the card's bottom clip edge.
   Hidden by default; draws in on hover / focus / tap (see reveal rules below). */
.pizza-card__wave-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.pizza-card__wave-accent path,
.crust-card__wave-accent path {
  stroke-dasharray: 1 9999;
  stroke-dashoffset: 1.1;
  transition: stroke-dashoffset 600ms ease-out;
}

.pizza-card:hover .pizza-card__wave-accent path,
.pizza-card:focus-within .pizza-card__wave-accent path,
.pizza-card-wrapper.is-cta-revealed .pizza-card__wave-accent path,
.crust-card:hover .crust-card__wave-accent path,
.crust-card:focus-within .crust-card__wave-accent path,
.crust-card-wrapper.is-cta-revealed .crust-card__wave-accent path {
  stroke-dashoffset: 0;
}

.pizza-card__thumb {
  display: block;
  width: 356px;
  height: 356px;
  object-fit: cover;
  border-radius: 50%;
  margin: 12px auto 0;
  padding: 8px;
}

/* Content block below the thumbnail */
.pizza-card__body {
  padding: 42px 33px 0;
  text-align: center;
}

/* Fixed 388px cards: allow horizontal scroll when viewport can’t fit columns */
@media (max-width: 1399.98px) and (min-width: 768px) {
  .why-franchise .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 419.98px) {
  .why-franchise .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Heading — Cervo-Medium 42px, tight leading, uppercase */
.pizza-card__heading {
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-text);
  min-height: 71px;
  margin-bottom: 28px;
}

/* Description — Switzer Light 18px */
.pizza-card__desc {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--clr-text);
  min-height: 117px;
  margin-bottom: 44px;
}

/* CTA link — always visible; subtle hover/focus micro-interaction on color + gap */
.pizza-card__cta {
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

@media (hover: hover) and (pointer: fine) {
  .pizza-card__cta:hover {
    color: var(--clr-primary);
    gap: 14px;
  }
}

.pizza-card__cta:focus-visible {
  color: var(--clr-primary);
  gap: 14px;
}

.pizza-card__cta:active {
  color: var(--clr-primary);
  gap: 14px;
}

/* Dot-arrow icon */
.pizza-card__cta-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 28px;
  height: 14px;
  flex-shrink: 0;
}

/* Filled dot at the tail — 0.7 opacity, arrow starts from its center */
.pizza-card__cta-icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: rgba(226, 102, 42, 0.6);
  border-radius: 50%;
  z-index: 1;
}

/* Arrow line + head, left edge at dot center (5px) */
.pizza-card__cta-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23' height='14' viewBox='0 0 23 14' fill='none'%3E%3Cline x1='0' y1='7' x2='18' y2='7' stroke='%23E2662A' stroke-width='2'/%3E%3Cpolyline points='12,1 18,7 12,13' fill='none' stroke='%23E2662A' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ============================================
   13. AMERICANS LOVE OUR PIZZA
   (1920px reference — pattern + two-column layout)
   ============================================ */
.americans-love {
  position: relative;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  min-height: 1888px;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: 527px;
}

/* Repeating watermark pattern on top of primary fill */
.americans-love__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../img/Layer169.png');
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.americans-love__container {
  position: relative;
  z-index: 1;
}

.americans-love__row {
  --bs-gutter-x: 48px;
}

/* Left column: 178px from top; right: 190px (1920 artboard) */
.americans-love__col--images {
  padding-top: 178px;
  padding-bottom: 200px;
  padding-right: 100px;
}

.americans-love__col--content {
  padding-top: 190px;
  padding-left: 100px;
  padding-bottom: 80px;
}

.americans-love__photo-stack {
  position: relative;
  width: 100%;
  max-width: 696px;
  /* Lets flex children shrink on narrow viewports */
  min-width: 0;
}

.americans-love__img-primary {
  display: block;
  width: 100%;
  max-width: min(696px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: clamp(24px, 2.5vw + 16px, 48px);
}

/* Second image overlaps bottom-right of primary (458×352 @ 696×818 artboard) */
.americans-love__img-secondary {
  position: absolute;
  /* Stack-relative size + cap so it shrinks on narrow viewports (e.g. ~475px) */
  width: min(458px, 65.8%, calc((100vw - 48px) * 0.48));
  height: auto;
  object-fit: contain;
  right: -16.95%;
  bottom: -11.74%;
  border-radius: clamp(24px, 2.5vw + 16px, 48px);
  border: clamp(4px, 1.2vw, 9px) solid var(--clr-white);
  z-index: 2;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

h2.americans-love__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 90px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 67px;
}

.americans-love__quote-card {
  margin: 0 0 40px;
  max-width: 565px;
  width: 100%;
  height: 240px;
  box-sizing: border-box;
  padding: 20px 36px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.americans-love__quote-card .americans-love__quote {
  margin-bottom: 12px;
}

.americans-love__quote {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 33px;
  line-height: 46px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin: 0 0 38px;
}

.americans-love__quote-cite {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--clr-white);
  font-style: normal;
}

.americans-love__text {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.67;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  max-width: 640px;
}

.americans-love__text:last-child {
  margin-bottom: 0;
}

.americans-love__text-card {
  width: 621px;
  height: 441px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -30px;
}

.americans-love__text-card .americans-love__text:last-child {
  margin-bottom: 0;
}

/* ============================================
   14. DON'T TAKE OUR WORD FOR IT
   ============================================ */
.dont-take-word {
  position: relative;
  z-index: 2;
  margin-top: -527px;
  margin-bottom: -2px;
  padding-bottom: 0;
  background: transparent;
}

.dont-take-word__card {
  background-color: #1F1F1F;
  background-image: url('../img/franchisebg.png');
  background-repeat: repeat;
  background-position: 0 0;
  border-radius: 28px;
  max-width: 1562px;
  margin: 0 auto;
  padding: 80px 80px 88px;
  text-align: center;
}

.dont-take-word__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 90px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.dont-take-word__subtitle {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.32;
  color: var(--clr-white);
  margin-bottom: 48px;
}

.dont-take-word__carousel {
  max-width: 936px;
  margin: 0 auto;
}

.dont-take-word__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}

.dont-take-word__track::-webkit-scrollbar {
  display: none;
}

.dont-take-word__slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.dont-take-word__video-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.dont-take-word__video-wrap--playing .dont-take-word__video-img,
.dont-take-word__video-wrap--playing .dont-take-word__play-btn {
  visibility: hidden;
  pointer-events: none;
}

.dont-take-word__video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-sizing: border-box;
  border: 6px solid var(--clr-white);
  border-radius: 20px;
}

.dont-take-word__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.dont-take-word__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.9;
}

.dont-take-word__play-btn img {
  width: 133px;
  height: 133px;
}

.dont-take-word__player {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
}

.dont-take-word__player iframe,
.dont-take-word__player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 20px;
}

.dont-take-word__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.dont-take-word__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background-color var(--transition-base),
    border-color var(--transition-base), width var(--transition-base);
}

.dont-take-word__dot--active {
  width: 36px;
  border-radius: 999px;
  border-color: var(--clr-primary);
  background-color: var(--clr-primary);
}

.dont-take-word__dot:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

/* ============================================
   15. WHAT IS CRUST PIZZA
   ============================================ */
.what-is-crust {
  /* Pull peach up past testimonial bottom — increase if a white hairline remains */
  --wic-overlap: 520px;
  position: relative;
  z-index: 1;
  background-color: #FCEFE9;
  height: 1910px;
  box-sizing: border-box;
  overflow: hidden;
  margin-top: calc(-1 * var(--wic-overlap));
  padding-top: var(--wic-overlap);
}

.what-is-crust__deco-left {
    position: absolute;
    top: 380px;
    left: -72px;
    z-index: 0;
    pointer-events: none;
    width: 471px;
    height: 487px;
    object-fit: contain;
}

.what-is-crust__deco-right {
  position: absolute;
  top: 500px;
  right: -220px;
  z-index: 0;
  pointer-events: none;
  width: 518px;
  height: 414px;
  object-fit: contain;
}

.what-is-crust .container {
  position: relative;
  z-index: 1;
}

.what-is-crust__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-top: 212px;
  margin-bottom: 5px;
}

.what-is-crust__text {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
  color: var(--clr-text);
  max-width: min(100%, 1400px);
  margin-top: 0;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.what-is-crust__text-line {
  display: block;
}

@media (min-width: 1400px) {
  .what-is-crust__text-line {
    white-space: nowrap;
  }
}

/* 1332×625 artboard: three 408px cards + 54px gaps (408×3 + 54×2 = 1332) */
.what-is-crust__cards {
  width: min(100%, 1332px);
  height: 625px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 155px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 54px;
  box-sizing: border-box;
}

.crust-card-wrapper {
  flex-shrink: 0;

  width: 391px;
  max-width: none;
  filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.08))
          drop-shadow(0px 6px 20px rgba(0, 0, 0, 0.05));
}

.crust-card {
  width: 408px;
  height: 612px;
  max-width: none;
  background-color: var(--clr-white);
  clip-path: url(#crust-card-clip);
  overflow: hidden;
  position: relative;
  cursor: default;
}

/* Primary-color wave-accent stroke traces the card's bottom clip edge (hidden by default). */
.crust-card__wave-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.crust-card__img-wrap {
  position: relative;
  width: 356px;
  height: 356px;
  border-radius: 50%;
  overflow: hidden;
  margin: 18px auto 0;
}

.crust-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.crust-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.crust-card__heading {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  z-index: 2;
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  text-align: center;
  margin: 0;
}

.crust-card__body {
  padding: 20px 33px 0;
  text-align: center;
  margin-top: 8px;
}

.crust-card__desc {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0;
  color: var(--clr-text);
  margin-bottom: 28px;
}

/* ============================================
   16. THE STORY AND HISTORY OF CRUST PIZZA CO
   ============================================ */
.crust-story {
  position: relative;
  background-color: var(--clr-white);
  color: var(--clr-text);
  overflow: hidden;
  /* Fluid circle diameter: ~200px (narrow) → 640px (wide); all assets use --crust-d */
  --crust-d: clamp(200px, 31.25vw + 40px, 640px);
  height: auto;
  min-height: 0;
  padding-top: clamp(72px, 8vw + 48px, 162px);
  padding-bottom: clamp(88px, 9vw + 56px, 197px);
  box-sizing: border-box;
}

.crust-story__container {
  position: relative;
  z-index: 1;
}

.crust-story__col--media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.crust-story__media-wrap {
  position: relative;
  display: inline-block;
  width: var(--crust-d);
  height: var(--crust-d);
  max-width: 100%;
  transform: translateX(clamp(-50px, -2.3vw - 18px, -8px));
}

.crust-story__ring-orange {
  position: absolute;
  top: 0;
  left: calc(-20 * var(--crust-d) / 580);
  width: var(--crust-d);
  height: var(--crust-d);
  border-radius: 50%;
  background-color: #F0893E;
  z-index: 0;
}

.crust-story__ring-white {
  position: absolute;
  top: 0;
  left: calc(-10 * var(--crust-d) / 580);
  width: var(--crust-d);
  height: var(--crust-d);
  border-radius: 50%;
  background-color: var(--clr-white);
  z-index: 1;
}

.crust-story__photo-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--crust-d);
  height: var(--crust-d);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

.crust-story__founders-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crust-story__play-btn {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(120 * var(--crust-d) / 580);
  height: calc(120 * var(--crust-d) / 580);
  border-radius: 50%;
  background: transparent;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.crust-story__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.crust-story__play-btn:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 4px;
}

.crust-story__play-btn__white {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--clr-white);
  z-index: 1;
  pointer-events: none;
}

.crust-story__play-btn__icon {
  position: relative;
  z-index: 2;
  width: calc(82 * var(--crust-d) / 580);
  height: auto;
  display: block;
  pointer-events: none;
}

.crust-story__cup {
  position: absolute;
  bottom: calc(-40 * var(--crust-d) / 580);
  left: calc(-100 * var(--crust-d) / 580);
  width: calc(156 * var(--crust-d) / 580);
  height: auto;
  max-width: none;
  object-fit: contain;
  z-index: 5;
}

.crust-story__col--content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.crust-story__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: clamp(28px, 4.8vw + 14px, 106px);
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: clamp(24px, 2vw + 16px, 40px);
}

.crust-story__text {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(15px, 0.65vw + 12.5px, 20px);
  line-height: 2;
  color: var(--clr-text);
  max-width: min(599px, 100%);
  margin-bottom: clamp(24px, 2vw + 16px, 40px);
}

.crust-story__cta {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(15px, 0.65vw + 12.5px, 20px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  background-color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw + 4px, 12px);
  text-decoration: none;
  padding: clamp(14px, 1.2vw + 10px, 18px) clamp(20px, 2vw + 12px, 40px);
  border-radius: 50px;
  transition: background-color var(--transition-fast), gap var(--transition-fast);
  width: fit-content;
}

.crust-story__cta:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
  gap: 18px;
}

.crust-story__sauce {
  position: absolute;
  top: calc(90 * var(--crust-d) / 580);
  right: calc(57 * var(--crust-d) / 580);
  width: calc(193 * var(--crust-d) / 580);
  height: auto;
  max-width: none;
  object-fit: contain;
  z-index: 0;
}

.crust-story__pizza-box {
  position: absolute;
  bottom: 0;
  right: calc(-100 * var(--crust-d) / 580);
  width: calc(445 * var(--crust-d) / 580);
  height: auto;
  aspect-ratio: 445 / 523;
  max-height: none;
  object-fit: contain;
  z-index: 0;
}

/* ============================================
   17. WHY NOW IS THE TIME TO OWN A CRUST
   ============================================ */
.why-now {
  position: relative;
  background: url('../img/imgcard8.png') center center/cover no-repeat;
  padding-top: 180px;
  padding-bottom: 180px;
  min-height: 600px;
}

.why-now__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.why-now__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 90px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.why-now__features {
  position: relative;
  z-index: 1;
}

.why-now__feature {
  text-align: center;
  padding: 24px 16px;
}

.why-now__feature-icon {
  display: block;
  width: auto;
  max-width: 140px;
  height: 120px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.why-now__feature-icon--explode {
  width: 85px;
  height: 81px;
  max-width: 85px;
}

.why-now__feature-icon--prime {
  width: 61px;
  height: 81px;
  max-width: 61px;
}

.why-now__feature-icon--shop {
  width: 75px;
  height: 81px;
  max-width: 75px;
}

.why-now__feature-icon--badge {
  width: 92px;
  height: 82px;
  max-width: 92px;
}

.why-now__feature-title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0;
}

/* ============================================
   17b. INVESTMENT SNAPSHOT + QUALIFICATIONS
   ============================================ */
.investment-snapshot {
  margin-top: 180px;
  margin-bottom: 214px;
  padding: 140px 160px 105px;
  border-radius: 24px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.investment-snapshot__title {
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 90px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 86px;
}

.investment-snapshot__row-2 {
  --bs-gutter-x: 65px;
  margin-bottom: 64px;
}

.investment-snapshot__photo {
  display: block;
  width: 714px;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 4px solid var(--clr-white);
  border-radius: 16px;
}

.investment-snapshot__invest-label {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.investment-snapshot__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.investment-snapshot__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.investment-snapshot__list li:last-child {
  margin-bottom: 0;
}

.investment-snapshot__tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.investment-snapshot__tick img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.investment-snapshot__list-text {
  flex: 1;
  min-width: 0;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 23px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--clr-white);
}

.investment-snapshot__row-3 {
  --bs-gutter-x: 36px;
  margin-bottom: 80px;
}

.investment-snapshot__col-heading {
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.investment-snapshot__cta-wrap {
  text-align: center;
}

.investment-snapshot__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  background-color: var(--clr-dark-alt);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 999px;
  transition: background-color var(--transition-fast), gap var(--transition-fast);
}

.investment-snapshot__cta:hover {
  color: var(--clr-white);
  background-color: var(--clr-black);
  gap: 16px;
}

/* ============================================
   18. IT'S EASY TO GET STARTED (STEPS)
   ============================================ */
.easy-steps {
  background-color: var(--clr-white);
  padding-bottom: 142px;
}

.easy-steps .section-header {
  margin-bottom: 100px;
}

.easy-steps .section-header__subtitle {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* ≥1400px: one row, four cards */
.easy-steps__timeline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(20px, 2.5vw, 40px);
  row-gap: 0;
  padding-top: 85px;
}

.easy-steps__step {
  flex: 1 1 0%;
  max-width: 360px;
  min-width: 0;
}

/* 1399px and below: two columns (two rows of two cards) */
@media (max-width: 1399.98px) {
  .easy-steps__timeline {
    flex-wrap: wrap;
    row-gap: 112px;
    column-gap: 40px;
    justify-content: center;
  }

  .easy-steps__step {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    width: auto;
  }
}

/* Small mobile: one card per row */
@media (max-width: 575.98px) {
  .easy-steps__timeline {
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 72px;
    column-gap: 0;
    align-items: center;
    padding-top: 72px;
  }

  .easy-steps__step {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
}

.easy-steps__card {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 330px;
  height: auto;
  margin: 0 auto;
  padding: 140px 20px 70px;
  box-sizing: border-box;
  background-color: var(--clr-white);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 169px dashed ring, 143px inner #222 — badge centered on top edge */
.easy-steps__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 169px;
  height: 169px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed var(--clr-primary);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-white);
}

.easy-steps__badge-inner {
  width: 143px;
  height: 143px;
  border-radius: 50%;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easy-steps__icon {
  width: auto;
  height: auto;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.easy-steps__label {
  flex-shrink: 0;
  margin: 0;
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.23;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.easy-steps__desc {
  margin-top: auto;
  margin-bottom: 0;
  max-width: 100%;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--clr-text);
}

/* ============================================
   19. AVAILABLE TERRITORIES
   ============================================ */
.territories {
  background-color: var(--clr-gray-100);
  padding-top: 198px;
  padding-bottom: 140px;
}

.territories__header.section-header {
  margin-bottom: 0;
}

.territories .section-header__title {
  margin-bottom: var(--space-3);
}

.territories__subtitle {
  margin-bottom: 54px;
}

.territories__subtitle-line {
  font-family: var(--ff-body);
  font-size: var(--fs-subtitle);
  font-weight: 600;
  line-height: 1.68;
  text-transform: uppercase;
  color: var(--clr-text);
  margin: 0;
}

.territories__subtitle-line--lead {
  text-align: center;
}

.territories__subtitle-line--wide {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 1226px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .territories__subtitle-line--wide {
    white-space: nowrap;
  }
}

.territories__search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 950px;
  height: 98px;
  margin: 0 auto 58px;
  padding-left: 40px;
  padding-right: 17px;
  box-sizing: border-box;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: 999px;
}

.territories__select {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 16px 0 0;
  border: 0;
  background: transparent;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: var(--clr-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.territories__select:focus {
  outline: none;
}

.territories__search:focus-within {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

.territories__search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 50%;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  cursor: pointer;
}

.territories__search-chevron {
  display: block;
  margin-top: 4px;
}

.territories__map-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 57px;
}

.territories__map {
  display: block;
  width: 897px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 897 / 573;
}

.territories__grid-card {
  width: min(100%, 1354px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 150px;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.territories__grid {
  margin-bottom: 0;
}

.territories__grid-row--spaced {
  margin-top: clamp(24px, 3vw, 40px);
}

.territories__state {
  margin-bottom: 0;
}

.territories__state-block + .territories__state-block {
  margin-top: 0;
}

.territories__state-name {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 12px;
}

.territories__state-name--stack {
  margin-top: 16px;
  margin-bottom: 12px;
}

.territories__cities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.territories__cities li {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--clr-text);
  position: relative;
  padding-left: 28px;
}

.territories__cities li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  background: url('../img/statelisticon.png') no-repeat center / contain;
}

.territories__banner {
  max-width: 946px;
  min-height: 186px;
  margin: 0 auto;
  padding: 32px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-dark);
  border-radius: 24px;
  text-align: center;
}

.territories__banner-text {
  margin: 0;
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 50px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-white);
}

.territories__banner-link {
  color: var(--clr-primary);
  text-decoration: none;
}

.territories__banner-link:hover {
  color: var(--clr-accent);
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .territories__banner-text {
    font-size: 20px;
    line-height: 24px;
  }
}

/* ============================================
   20. NEWS AND BLOG
   ============================================ */
.news-blog {
  background-color: var(--clr-white);
  padding-top: 180px;
  padding-bottom: 140px;
}

.news-blog .section-header {
  margin-bottom: 64px;
}

.news-blog__carousel-card {
  width: min(100%, 1450px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.news-blog__carousel {
  width: 100%;
  margin-bottom: 48px;
}

.news-blog__track {
  --news-blog-gap: 58px;
  display: flex;
  gap: var(--news-blog-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.news-blog__track::-webkit-scrollbar {
  display: none;
}

.news-blog__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.news-blog__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--clr-gray-400);
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background-color var(--transition-base),
    border-color var(--transition-base), width var(--transition-base);
}

.news-blog__dot--active {
  width: 36px;
  border-radius: 999px;
  border-color: var(--clr-primary);
  background-color: var(--clr-primary);
}

.news-blog__dot:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

.news-blog-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  margin: 0;
  flex: 0 0 calc((100% - 2 * var(--news-blog-gap)) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.news-blog-tile__img {
  width: 100%;
  max-width: 422px;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 36px;
  display: block;
}

.news-blog-tile__date {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--clr-primary);
  margin-bottom: 28px;
}

.news-blog-tile__title {
  margin: 0 0 auto;
  padding-bottom: 40px;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 21px;
  line-height: 30.13px;
  letter-spacing: 0;
  color: var(--clr-text);
  text-align: left;
}

.news-blog-tile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 178px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background-color: var(--clr-primary);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-white);
  text-decoration: none;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.news-blog-tile__btn:hover {
  background-color: var(--clr-primary-darker);
  color: var(--clr-white);
}

.news-blog-tile__btn-icon {
  flex-shrink: 0;
  display: block;
}

@media (max-width: 1199.98px) {
  .news-blog__track {
    --news-blog-gap: 48px;
  }

  .news-blog-tile {
    flex: 0 0 calc((100% - var(--news-blog-gap)) / 2);
  }
}

@media (max-width: 991.98px) {
  .news-blog-tile__title {
    padding-bottom: 28px;
  }

  .news-blog-tile__btn {
    margin-top: -10px;
  }
}

@media (max-width: 767.98px) {
  .news-blog__track {
    --news-blog-gap: 40px;
  }

  .news-blog-tile {
    flex: 0 0 100%;
  }

  .news-blog-tile__img {
    height: auto;
    max-height: none;
    aspect-ratio: 422 / 330;
  }

  .news-blog-tile__title {
    margin-bottom: 28px;
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 26px;
  }

  .news-blog-tile__btn {
    margin-top: -12px;
  }
}

@media (max-width: 575.98px) {
  .news-blog-tile__date {
    font-size: 15px;
  }

  .news-blog-tile__title {
    margin-bottom: 24px;
    padding-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }

  .news-blog-tile__btn {
    margin-top: -14px;
  }
}

/* ============================================
   CRUST CULTURE
   ============================================ */
.crust-culture {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  overflow-y: visible;
  box-sizing: border-box;
  min-height: 952px;
  padding-top: 190px;
  padding-bottom: 134px;
  background-color: var(--clr-cream);
}

.crust-culture .container {
  position: relative;
  z-index: 1;
}

.crust-culture__deco {
  pointer-events: none;
}

.crust-culture__deco--pizza {
  position: absolute;
  top: -80px;
  left: 16px;
  width: 378px;
  height: auto;
  aspect-ratio: 378 / 330;
  max-width: min(378px, 92vw);
  max-height: 330px;
  object-fit: contain;
  object-position: left top;
  z-index: 0;
}

.crust-culture__deco--sauce {
  position: absolute;
  right: 148px;
  bottom: 0;
  width: 166px;
  height: 166px;
  max-width: min(200px, 28vw);
  /* Center asset on bottom-right corner (half in section, half past border) */
  transform: translate(50%, 50%);
  z-index: 10;
}

.crust-culture__heading {
  margin: 0 0 56px;
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 106px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-black);
}

.crust-culture__carousel {
  width: 100%;
  margin-bottom: 100px;
}

.crust-culture__track {
  --crust-culture-gap: 24px;
  display: flex;
  gap: var(--crust-culture-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.crust-culture__track::-webkit-scrollbar {
  display: none;
}

.crust-culture-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  flex: 0 0 calc((100% - 3 * var(--crust-culture-gap)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.crust-culture-card__media {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0;
  border-radius: 24px;
  overflow: visible;
  text-decoration: none;
}

.crust-culture-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 300;
  object-fit: cover;
  border-radius: 24px;
}

.crust-culture-card__play {
  position: absolute;
  right: 34px;
  bottom: -34px;
  display: block;
  line-height: 0;
  padding: 6px;
  border-radius: 50%;
  background: var(--clr-white);
}

.crust-culture-card__play img {
  display: block;
  width: clamp(56px, 12vw, 72px);
  height: auto;
}

.crust-culture-card__title {
  margin: 20px 0 25px;
  font-family: var(--ff-heading);
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--clr-black);
}

.crust-culture-card__desc {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--clr-text);
}

.crust-culture__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.crust-culture__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--clr-gray-400);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color var(--transition-base),
    border-color var(--transition-base), width var(--transition-base);
}

.crust-culture__dot--active {
  width: 36px;
  border-radius: 999px;
  border-color: var(--clr-primary);
  background-color: var(--clr-primary);
}

.crust-culture__dot:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 2px;
}

@media (max-width: 1199.98px) {
  .crust-culture__heading {
    font-size: clamp(48px, 8vw, 90px);
  }

  .crust-culture__track {
    --crust-culture-gap: 32px;
  }

  .crust-culture-card {
    flex: 0 0 calc((100% - var(--crust-culture-gap)) / 2);
    min-width: 0;
  }
}

@media (max-width: 991.98px) {
  .crust-culture__deco--pizza {
    width: clamp(120px, 28vw, 220px);
    max-height: none;
    left: 8px;
    top: clamp(-48px, -6vw, -16px);
  }
}

@media (max-width: 767.98px) {
  .crust-culture {
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .crust-culture__heading {
    margin-bottom: 40px;
    font-size: clamp(40px, 10vw, 64px);
  }

  .crust-culture__carousel {
    margin-bottom: 64px;
  }

  .crust-culture__track {
    --crust-culture-gap: 40px;
  }

  .crust-culture-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .crust-culture-card__title {
    font-size: 28px;
    line-height: 1.1;
  }

  .crust-culture__deco--pizza {
    width: clamp(96px, 34vw, 180px);
    max-height: none;
    top: -8px;
  }

  .crust-culture__deco--sauce {
    right: 8px;
    max-width: min(140px, 36vw);
  }
}

@media (max-width: 575.98px) {
  .crust-culture__deco--pizza {
    width: clamp(72px, 30vw, 120px);
    top: -32px;
    left: 4px;
  }
}

/* Crust culture — video lightbox (full-viewport overlay, centered theater player) */
@keyframes crust-culture-modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes crust-culture-modal-dialog-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.crust-culture-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top, 0px))
    max(20px, env(safe-area-inset-right, 0px))
    max(20px, env(safe-area-inset-bottom, 0px))
    max(20px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  isolation: isolate;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.crust-culture-modal[hidden] {
  display: none !important;
}

.crust-culture-modal:not([hidden]) {
  animation: crust-culture-modal-fade-in 0.22s ease-out both;
}

.crust-culture-modal__backdrop {
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(5, 4, 3, 0.88);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .crust-culture-modal__backdrop {
    background: rgba(12, 10, 8, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}

.crust-culture-modal__dialog {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: min(1120px, calc(100vw - 40px));
  max-width: 100%;
  margin: 0;
  background: #050403;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 28px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  overflow: hidden;
}

.crust-culture-modal:not([hidden]) .crust-culture-modal__dialog {
  animation: crust-culture-modal-dialog-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .crust-culture-modal:not([hidden]),
  .crust-culture-modal:not([hidden]) .crust-culture-modal__dialog {
    animation: none;
  }
}

.crust-culture-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.crust-culture-modal__close:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.crust-culture-modal__close:focus-visible {
  outline: 2px solid var(--clr-primary, #f97316);
  outline-offset: 3px;
}

.crust-culture-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  background: #000;
}

.crust-culture-modal__player iframe,
.crust-culture-modal__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   21–23. UNIFIED FOOTER
   ============================================ */
.site-footer {
  background-color: #231F20;
  color: var(--clr-white);
}

/* --- 21a. Contact Form --- */
.footer-form {
  padding-top: 151px;
  padding-bottom: 120px;
}

.footer-form__title {
  margin: 0 0 50px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 96px;
  text-align: center;
  text-transform: uppercase;
  color: var(--clr-white);
}

.footer-form__form {
  max-width: 1014px;
  margin: 0 auto;
}

.footer-form__label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 23px;
  line-height: 28px;
  text-transform: uppercase;
  color: var(--clr-white);
}

.footer-form__input {
  width: 100%;
  height: 60px;
  padding: 0 29px;
  box-sizing: border-box;
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 24px;
  color: var(--clr-text);
  background-color: var(--clr-white);
  border: none;
  border-radius: 10px;
}

.footer-form__input::placeholder {
  color: #AAAAAA;
}

.footer-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(226, 102, 42, 0.3);
}

.footer-form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
  color: var(--clr-black);
}

.footer-form__textarea {
  height: auto;
  min-height: 187px;
  padding-top: 18px;
  padding-bottom: 18px;
  resize: vertical;
}

.footer-form__submit-wrap {
  text-align: center;
  padding-top: 20px;
}

.footer-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 364px;
  max-width: 100%;
  height: 55px;
  border: none;
  border-radius: 27.5px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: 'Montserrat', var(--ff-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.footer-form__btn:hover {
  background-color: var(--clr-primary-darker);
}

.footer-form__btn-arrow {
  flex-shrink: 0;
}

/* --- 22. Want to Place an Order --- */
.footer-order {
    background-color: #453E39;
  padding-top: 56px;
  padding-bottom: 56px;
}

.footer-order__card {
  width: min(100%, 1239px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.footer-order__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-order__last {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}


.footer-order__title {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 80px;
  line-height: 96px;
  text-transform: uppercase;
  color: var(--clr-white);
}

.footer-order__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 247px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 27.5px;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  font-family: 'Montserrat', var(--ff-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--transition-base);
}

.footer-order__btn:hover {
  background-color: var(--clr-primary-darker);
  color: var(--clr-white);
}

.footer-order__btn-arrow {
  flex-shrink: 0;
}

/* --- 23a. Five-Column Navigation --- */
.footer-nav {
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-nav__card {
  width: min(100%, 1239px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.footer-nav__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.footer-nav__heading {
  margin: 0 0 17px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 21px;
  line-height: 25px;
  text-transform: uppercase;
  color: var(--clr-white);
}

.footer-nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__links li {
  margin: 0;
}

.footer-nav__links a {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  color: var(--clr-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav__links a:hover {
  color: var(--clr-primary);
}

/* --- 23b. Divider + bottom strip card --- */
.footer-end__card {
  width: min(100%, 1239px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  box-sizing: border-box;
  border: none;
  background-color: transparent;
  box-shadow: none;
}

.footer-end__card .footer-divider__line {
  max-width: 100%;
}

.footer-divider {
  padding: 0;
}

.footer-divider__line {
  max-width: 1560px;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #403D3E;
  opacity: 1;
}

/* --- 23c. Bottom Strip --- */
.footer-bottom {
  padding-top: 44px;
  padding-bottom: 40px;
  margin-top: 40px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-bottom__badge--ifa img {
  width: 149px;
  height: 104px;
  object-fit: contain;
}

.footer-bottom__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-bottom__copy {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  color: var(--clr-white);
}

.footer-bottom__legal {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--clr-white);
  text-align: center;
}

.footer-bottom__legal a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom__legal a:hover {
  color: var(--clr-primary);
}

.footer-bottom__legal-sep {
  margin: 0 0.25em;
  opacity: 0.85;
}

.footer-bottom__social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-bottom__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom__social a:hover {
  color: var(--clr-primary);
}

.footer-bottom__social a:hover svg path,
.footer-bottom__social a:hover svg circle {
  fill: var(--clr-primary);
}

.footer-bottom__badges-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom__badges-right img {
  height: auto;
  object-fit: contain;
}

.footer-bottom__badges-right img:nth-child(1) {
  width: 149px;
}

.footer-bottom__badges-right img:nth-child(2) {
  width: 90px;
}

.footer-bottom__badges-right img:nth-child(3) {
  width: 158px;
}

/* ============================================
   24. FLOATING eBROCHURE CARD
   ============================================ */
.ebrochure-card {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  width: 322px;
  height: 260px;
  background-color: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 30px 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border: none;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.ebrochure-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.ebrochure-card:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
}

.ebrochure-card__close {
  position: absolute;
  top: -30px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  color: var(--clr-white);
  font-size: 48px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.ebrochure-card__close:hover {
  color: var(--clr-primary);
}

.ebrochure-card__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.55px;
  text-align: center;
  color: var(--clr-text);
  margin-bottom: 18px;
  text-transform: none;
}

.ebrochure-card__title span {
  font-weight: 700;
}

.ebrochure-card__link {
  display: block;
}

.ebrochure-card__img {
  width: 194px;
  height: 171px;
  object-fit: contain;
}

/* ============================================
   25. eBROCHURE DOWNLOAD MODAL
   ============================================ */
.ebrochure-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.ebrochure-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ebrochure-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.75);
  backdrop-filter: blur(4px);
}

.ebrochure-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: var(--clr-white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  padding: 28px 32px 32px;
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition-base);
}

.ebrochure-modal.is-open .ebrochure-modal__dialog {
  transform: translateY(0) scale(1);
}

.ebrochure-modal__dialog::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background-color: var(--clr-primary);
  border-radius: 0 4px 4px 0;
}

.ebrochure-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius-full);
  background-color: var(--clr-dark);
  color: var(--clr-white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.ebrochure-modal__close:hover {
  background-color: var(--clr-primary);
}

.ebrochure-modal__script {
  font-family: var(--ff-script);
  font-size: 22px;
  color: var(--clr-primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.ebrochure-modal__title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.15;
  color: var(--clr-text);
  margin: 0 0 12px;
  padding: 0 24px;
}

.ebrochure-modal__title span {
  color: var(--clr-primary);
}

.ebrochure-modal__desc {
  font-family: var(--ff-ui);
  font-size: 14px;
  line-height: 1.55;
  color: var(--clr-gray-700);
  margin: 0 0 16px;
  padding: 0 4px;
}

.ebrochure-modal__preview {
  width: 150px;
  height: auto;
  max-height: 130px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

.ebrochure-modal__form {
  width: 100%;
  margin: 0;
  text-align: left;
}

.ebrochure-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 2px 0;
}

.ebrochure-modal__field {
  margin: 0;
}

.ebrochure-modal__label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.ebrochure-modal__label span {
  font-weight: 500;
  color: var(--clr-gray-700);
}

.ebrochure-modal__input {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--clr-gray-300);
  padding: 12px 16px;
  font-family: var(--ff-ui);
  font-size: 15px;
  color: var(--clr-text);
  background-color: #fafafa;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.ebrochure-modal__input::placeholder {
  color: var(--clr-gray-500, #9ca3af);
  opacity: 1;
}

.ebrochure-modal__input:hover:not(:disabled) {
  border-color: var(--clr-gray-400, #bdbdbd);
  background-color: var(--clr-white);
}

.ebrochure-modal__input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(226, 102, 42, 0.15);
  outline: none;
  background-color: var(--clr-white);
}

.ebrochure-modal__input:-webkit-autofill,
.ebrochure-modal__input:-webkit-autofill:hover,
.ebrochure-modal__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--clr-text);
  -webkit-box-shadow: 0 0 0 1000px var(--clr-white) inset;
  box-shadow: 0 0 0 1000px var(--clr-white) inset;
  transition: background-color 9999s ease-out 0s;
}

.ebrochure-modal__status {
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1.4;
  color: var(--clr-gray-700);
  margin: 16px 0 0;
  min-height: 1.25em;
  text-align: center;
}

.ebrochure-modal__status.is-success {
  color: #15803d;
}

.ebrochure-modal__error {
  font-family: var(--ff-ui);
  font-size: 13px;
  line-height: 1.4;
  color: #b91c1c;
  margin: 12px 0 0;
  text-align: center;
}

.ebrochure-modal__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px;
  min-height: 52px;
  font-family: var(--ff-ui);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.2;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: 2px solid var(--clr-primary);
  background-color: var(--clr-primary);
  color: var(--clr-white);
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), opacity var(--transition-base);
}

.ebrochure-modal__download:hover:not(:disabled) {
  background-color: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

.ebrochure-modal__download:focus-visible {
  outline: 2px solid var(--clr-primary-darker);
  outline-offset: 2px;
}

.ebrochure-modal__download:disabled {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  opacity: 0.42;
  cursor: not-allowed;
}

.ebrochure-modal__download i {
  margin-left: 0;
  font-size: 0.95em;
}

body.ebrochure-modal-open {
  overflow: hidden;
}

