/* =========================================
   FONTS — local brand fonts only
   ========================================= */

@font-face {
    font-family: 'Concrette';
    src: url('../assets/fonts/ConcretteTRIALVF.ttf') format('truetype-variations');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reckless Neue';
    src: url('../assets/fonts/RecklessNeueTRIAL-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reckless Neue';
    src: url('../assets/fonts/RecklessNeueTRIAL-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reckless Neue';
    src: url('../assets/fonts/RecklessNeueTRIAL-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Reckless Neue';
    src: url('../assets/fonts/RecklessNeueTRIAL-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../assets/fonts/sofiapro-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('../assets/fonts/Archivo-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Mono';
    src: url('../assets/fonts/DMMono-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Mono';
    src: url('../assets/fonts/DMMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oooh Baby';
    src: url('../assets/fonts/OoohBaby-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    /* Brand palette */
    --clr-navy:        #1a1f36;
    --clr-lavender:    #b9a3e1;
    --clr-lavender-light: #d8c8f0;
    --clr-purple-deep: #6c5ce7;
    --clr-red:         #ff512d;
    --clr-coral:       #f37159;
    --clr-yellow:      #f6bf00;
    --clr-yellow-soft: #fde68a;
    --clr-blue:        #2256ff;
    --clr-blue-soft:   #cfd9ff;
    --clr-blue-light:  #eaeefb;
    --clr-white:       #ffffff;
    --clr-cream:       #faf6ee;
    --clr-greige:      #ece7da;
    --clr-peach:       #f4b9a8;

    /* Typography */
    --font-display:    'Reckless Neue', 'Times New Roman', serif;
    --font-script:     'Oooh Baby', cursive;
    --font-body:       'Archivo', 'Sofia Pro', system-ui, sans-serif;
    --font-mono:       'DM Mono', 'Courier New', monospace;

    /* Layout */
    --container-w:     1200px;
    --container-wide:  1400px;
    --section-py:      96px;   /* default */
    --section-py-md:   80px;   /* tighter (confetti) */
    --section-py-lg:   140px;  /* roomier (services, process) */
    --section-py-sm:   56px;   /* mobile default */

    /* Responsive breakpoints (use with @media (max-width: ...)) */
    --bp-lg:           1024px;  /* desktop → tablet */
    --bp-md:           768px;   /* tablet → large phone */
    --bp-sm:           480px;   /* phone */
}

/* =========================================
   RESET
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* overflow-x: clip (not "hidden") prevents horizontal scrollbars without
   creating a scroll container — required for `position: sticky` descendants
   (e.g., the About-page story-stack panels) to work correctly. */
html { scroll-behavior: smooth; overflow-x: clip; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-navy);
    background: var(--clr-white);
    overflow-x: clip;
}

/* Locked-line headlines (Hard Rule #3) — release below desktop so phones can wrap freely. */
@media (max-width: 1024px) {
    .line {
        white-space: normal !important;
        display: inline !important;
    }
    /* Restore a space between consecutive .line spans when they collapse to inline */
    .line + .line::before { content: " "; }
}

/* Tighten paragraph tracking on phones — 1.2px tracking eats too much horizontal space */
@media (max-width: 768px) {
    p { letter-spacing: 0.6px; }
}

img, svg { max-width: 100%; display: block; }

/* Icon utility — used with the SVG sprite (#icon-* symbols at top of body).
   Size from parent font-size unless width/height set on the <svg>. */
.icon {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--clr-navy);
}

h1 { font-size: clamp(2.5rem, 4.6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; letter-spacing: 1.2px; }

.script { font-family: var(--font-script); font-weight: 400; }
.mono   { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }

/* Inline highlight effects */
.hl-yellow {
    background: linear-gradient(transparent 62%, var(--clr-yellow) 62%, var(--clr-yellow) 92%, transparent 92%);
    padding: 0 0.05em;
}
.hl-blue-circle {
    position: relative;
    display: inline-block;
    padding: 0 0.18em;
}
.hl-blue-circle::after {
    content: "";
    position: absolute;
    inset: -0.1em -0.05em -0.05em -0.05em;
    border: 2.5px solid var(--clr-blue);
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    transform: rotate(-3deg);
    pointer-events: none;
}
.italic { font-style: italic; }

/* Canonical sublede / supporting-line treatment. See STYLE-TOKENS.md →
   section-sublede. Apply alongside per-section classes that handle layout
   (max-width, margin, text-align). One source of truth for the typography. */
.section-sublede {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.5rem, 1.94vw, 1.8rem);
    line-height: 1.4;
    color: var(--clr-navy);
    letter-spacing: 0.2px;
}

/* =========================================
   BRUSHSTROKE OVERLAY (.fx) — site-wide base
   Per-section .fx-<name>::before rules just set the background-image
   and small position overrides (see hero.css, problem.css, etc.)
   ========================================= */
.fx {
    position: relative;
    display: inline-block;
    font-weight: 500; /* Hard Rule 5b — bolded portion uses 500 */
    padding: 0 0.05em;
    z-index: 0;
}
.fx::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}
.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

/* SIZE MODIFIER — `.btn-lg` is the canonical "primary section CTA" size.
   Use it on every prominent CTA so all pages share the same vertical rhythm.
   Don't author per-page padding overrides anymore. */
.btn-lg { padding: 18px 34px; }

/* Variants — name = visual treatment, not "where it's used".
   Stick to these everywhere; do not author one-off section-scoped buttons. */

.btn-yellow {
    background: var(--clr-yellow);
    color: var(--clr-navy);
    border-color: var(--clr-yellow);
}
.btn-yellow:hover { background: #eab000; border-color: #eab000; }

.btn-red {
    background: var(--clr-red);
    color: #fff;
    border-color: var(--clr-red);
}
.btn-red:hover { background: #e8421f; border-color: #e8421f; }

.btn-lavender {
    background: #8090ff;
    color: #fff;
    border-color: #8090ff;
    box-shadow: 0 6px 22px rgba(128, 144, 255, 0.32);
}
.btn-lavender:hover {
    background: #6b75ff;
    border-color: #6b75ff;
}

.btn-blue {
    background: #0152f5;
    color: #fff;
    border-color: #0152f5;
}
.btn-blue:hover { background: #0145cd; border-color: #0145cd; }

.btn-blue-soft {
    background: #a4bce0;
    color: var(--clr-navy);
    border-color: #a4bce0;
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 1.6px;
    padding: 16px 48px;
}
.btn-blue-soft:hover { background: #93afda; border-color: #93afda; }

/* Brand gradient pill — peach → soft purple → lavender-blue */
.btn-gradient {
    background: linear-gradient(90deg, #f4b9a8 0%, #c2a8e8 60%, #b2baff 100%);
    color: var(--clr-navy);
    border: 0;
    font-weight: 500;
}
.btn-gradient:hover { filter: brightness(1.03); color: var(--clr-navy); }

.btn-outline {
    background: transparent;
    color: var(--clr-navy);
    border-color: var(--clr-navy);
}
.btn-outline:hover { background: var(--clr-navy); color: #fff; }

.btn-white {
    background: #fff;
    color: var(--clr-navy);
    border: 1px solid var(--clr-navy);
    letter-spacing: 1.2px;
    padding: 20px 34px; /* taller per spec */
}
.btn-white:hover {
    background: var(--clr-navy);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--clr-navy); }

/* Optional spacing helper used inside content where a button needs nudging */
.btn-mt { margin-top: 14px; }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
}

/* Header layout: 3-column grid (logo | centered nav | CTA) so nav stays visually centered */
.header-container {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.header-container .logo { justify-self: start; }
.header-container .main-nav { justify-self: center; }
.header-container .nav-actions { justify-self: end; }

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.logo img { height: 76px; width: auto; }

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 44px; /* more breathing room between items */
}
.main-nav a,
.main-nav .nav-submenu-trigger {
    font-family: var(--font-body);
    font-weight: 400; /* lighter weight per spec */
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    transition: color 0.18s ease;
}
.main-nav a:hover,
.main-nav .nav-submenu-trigger:hover { color: var(--clr-yellow); }

/* ---------- Submenu (Work With Us) ---------- */
.has-submenu {
    position: relative;
}
.nav-submenu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    line-height: inherit;
}
.nav-caret {
    transition: transform 0.22s ease;
    margin-top: 1px;
}
.has-submenu:hover .nav-caret,
.nav-submenu-trigger[aria-expanded="true"] .nav-caret {
    transform: rotate(-180deg);
    color: var(--clr-yellow);
}

/* Desktop dropdown panel */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 240px;
    margin-top: 18px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(26, 31, 54, 0.22);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 110;
}
.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.nav-submenu-trigger[aria-expanded="true"] + .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

/* Hover bridge — invisible padding so cursor doesn't leave the trigger area */
.nav-submenu::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 0;
    right: 0;
    height: 22px;
}

.nav-submenu li { margin: 0; }
.nav-submenu a {
    display: block;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.4px;
    color: #fff;
    border-radius: 10px;
    transition: background 0.16s ease, transform 0.16s ease, color 0.16s ease;
}
.nav-submenu a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(4px);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header {
    background: transparent;
    color: #fff;
    border: 1.5px solid #fff;
    padding: 16px 28px; /* taller per spec */
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 1.2px; /* match paragraph tracking */
    text-transform: uppercase;
}
.btn-header:hover { background: #fff; color: var(--clr-navy); }

/* =========================================
   HEADER LIGHT VARIANT
   Add `site-header--light` class to <header.site-header> for sub-pages where
   the header sits on a white/cream background instead of the lavender hero.
   Pair with the stacked "oh yes" SVG logo in the .logo <img> (assets/images/SVG/oh-yes-logo-stacked.svg).
   ========================================= */
.site-header--light .main-nav a,
.site-header--light .nav-submenu-trigger { color: var(--clr-navy); }
.site-header--light .main-nav a:hover,
.site-header--light .nav-submenu-trigger:hover { color: var(--clr-red); }

.site-header--light .btn-header {
    background: #b2baff;        /* soft lavender-blue */
    color: #fff;
    border: 0;
    padding: 17px 30px;
    font-weight: 500;
    letter-spacing: 0.14em;
}
.site-header--light .btn-header:hover {
    background: #9aa3ff;
    color: #fff;
}

/* Submenu caret on light variant: navy stroke */
.site-header--light .nav-caret { color: var(--clr-navy); }

/* Light-variant pages use the same stacked SVG and same 76px height as the
   homepage so the logo doesn't drift in size or position when navigating. */

.menu-toggle {
    width: 44px; height: 44px;
    background: var(--clr-red);
    border: none;
    border-radius: 50%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    z-index: 1100; /* above drawer overlay */
    transition: background 0.18s ease;
}
.menu-toggle span {
    width: 18px; height: 2px;
    background: #fff;
    display: block;
    transition: transform 0.25s ease, opacity 0.18s ease;
    transform-origin: center;
}
/* Hamburger → X when drawer open */
body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}
body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Mobile drawer (≤1024) ---------- */
@media (max-width: 1024px) {
    /* Hide desktop nav + CTA, show toggle */
    .header-container {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }
    .header-container .main-nav,
    .header-container .nav-actions .btn-header {
        display: none;
    }
    .header-container .nav-actions { justify-self: end; }
    .menu-toggle { display: flex; }

    /* Drawer panel: slides in from the right, overlays page */
    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(360px, 88vw);
        background: var(--clr-navy);
        z-index: 1050;
        padding: 110px 28px 40px;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(.6,.05,.28,1), box-shadow 0.32s ease;
        display: block !important; /* override the .header-container hide */
        overflow-y: auto;
    }
    body.nav-open .main-nav {
        transform: translateX(0);
        box-shadow: -20px 0 40px rgba(0,0,0,0.18);
    }

    .main-nav .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    /* Drawer links — always white inside the open panel,
       regardless of which header variant the page is using */
    .main-nav a,
    .main-nav .nav-submenu-trigger,
    .site-header--light .main-nav a,
    .site-header--light .nav-submenu-trigger {
        font-size: 1.15rem;
        letter-spacing: 1.4px;
        color: #fff;
    }
    .main-nav a:hover,
    .main-nav .nav-submenu-trigger:hover,
    .site-header--light .main-nav a:hover,
    .site-header--light .nav-submenu-trigger:hover { color: var(--clr-yellow); }
    /* Submenu items inside the drawer also stay white */
    .site-header--light .nav-submenu a { color: #fff; }
    .site-header--light .nav-submenu a:hover { color: var(--clr-yellow); }
    /* Caret on light variant turns white inside the drawer */
    .site-header--light .nav-caret { color: #fff; }

    /* Mobile drawer: submenu becomes an inline expandable accordion */
    .has-submenu { display: flex; flex-direction: column; gap: 0; }
    .main-nav .nav-submenu-trigger {
        width: 100%;
        justify-content: space-between;
        text-align: left;
    }
    .main-nav .nav-submenu,
    .main-nav .has-submenu:hover .nav-submenu,
    .main-nav .has-submenu:focus-within .nav-submenu,
    .main-nav .nav-submenu-trigger[aria-expanded="true"] + .nav-submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.32s cubic-bezier(.4,0,.2,1), padding 0.22s ease, margin 0.22s ease;
        left: auto;
        top: auto;
    }
    .main-nav .nav-submenu::before { display: none; }
    .main-nav .nav-submenu-trigger[aria-expanded="true"] + .nav-submenu {
        max-height: 360px;
        padding: 14px 0 6px 14px;
        margin-top: 6px;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
    }
    .nav-submenu li { margin: 0; }
    .nav-submenu a {
        padding: 10px 8px;
        font-size: 0.92rem;
        letter-spacing: 0.6px;
        font-weight: 400;
        opacity: 0.85;
    }
    .nav-submenu a:hover {
        background: transparent;
        transform: none;
        opacity: 1;
        color: var(--clr-yellow);
    }

    /* Drawer footer: keep the CTA accessible inside the drawer.
       Hugs the content (no full-width fill) and uses tighter padding/tracking
       so it stays comfortably inset from the drawer edges even on narrow phones. */
    .nav-drawer-cta {
        display: block;
        width: fit-content;
        margin: 36px auto 0;
        padding: 12px 18px;
        border-radius: 999px;
        background: var(--clr-yellow);
        color: var(--clr-navy);
        font-family: var(--font-body);
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
    }
    .nav-drawer-cta:hover { background: #fff; color: var(--clr-navy); }

    /* Backdrop */
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
        z-index: 1040;
    }
    body.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open { overflow: hidden; }
}

/* Hide the in-drawer CTA on desktop (it's always rendered for the JS-less fallback) */
@media (min-width: 1025px) {
    .nav-drawer-cta { display: none; }
    .nav-backdrop { display: none; }
}

/* =========================================
   SECTION BACKGROUND HELPERS
   ========================================= */
.bg-lavender   { background: var(--clr-lavender); }
.bg-cream      { background: var(--clr-cream); }
.bg-greige     { background: var(--clr-greige); }
.bg-red        { background: var(--clr-red); color: #fff; }
.bg-blue-light { background: var(--clr-blue-light); }
.bg-yellow     { background: var(--clr-yellow); }
.bg-yellow-soft{ background: var(--clr-yellow-soft); }
.bg-purple     { background: var(--clr-purple-deep); color: #fff; }
.bg-navy       { background: var(--clr-navy); color: #fff; }
.bg-white      { background: var(--clr-white); }

.section { padding: var(--section-py) 0; }
.section-lg { padding: var(--section-py-lg) 0; }

/* Section header row: a sentence-case label on the left,
   a colored CTA pill on the right, separated by a thin rule. */
.section-head-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 35px;
    border-bottom: 1px solid #d9d4c5;
    margin-bottom: 22px;
}
.section-head-cta__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0;
    color: var(--clr-navy);
    margin: 0;
}
.section-head-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    transition: filter 0.18s ease, transform 0.18s ease;
}
.section-head-cta__btn:hover { filter: brightness(0.94); transform: translateY(-1px); color: #fff; }

/* Per-name color modifiers (Branding=lavender, Marketing=red, Case Studies=blue).
   All use white text per spec. */
.section-head-cta__btn--lavender { background: #8090ff; }
.section-head-cta__btn--red      { background: var(--clr-red); }
.section-head-cta__btn--blue     { background: var(--clr-blue); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background: var(--clr-greige);
    padding: 72px 0 56px;
    color: var(--clr-navy);
}

.site-footer .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    align-items: start;
    gap: 0;
}

/* vertical dividers between the three columns */
.site-footer .footer-col--center,
.site-footer .footer-col--right {
    border-left: 1px solid #c9c2b1;
}
.site-footer .footer-col--center { padding: 0 56px; }
.site-footer .footer-col--right  { padding: 0 0 0 64px; }
.site-footer .footer-col--left   { padding: 0 56px 0 8px; }

/* ---------- LEFT: newsletter signup ---------- */
.site-footer .footer-cta-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.55rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
    color: var(--clr-navy);
    margin: 0 0 28px;
}
.site-footer .footer-cta-headline .line {
    display: block;
    white-space: nowrap;
}

.site-footer .footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 340px;
}

.site-footer .footer-field { display: block; }

.site-footer .footer-field input {
    width: 100%;
    padding: 11px 22px;
    border: none;
    border-radius: 14px;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--clr-navy);
    outline: none;
    transition: box-shadow 0.18s ease;
}

.site-footer .footer-field input::placeholder {
    color: var(--clr-navy);
    opacity: 0.85;
    text-transform: uppercase;
}

.site-footer .footer-field input:focus {
    box-shadow: 0 0 0 2px #b2baff;
}

.site-footer .footer-submit {
    width: 100%;
    padding: 11px 22px;
    border: none;
    border-radius: 14px;
    background: #b2baff;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.18s ease;
}
.site-footer .footer-submit:hover { background: #9aa3ff; }

/* ---------- CENTER: logo + serving area + placeholders ---------- */
.site-footer .footer-col--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer .footer-logo-img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.site-footer .footer-serving {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.66rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-navy);
    margin: 0 0 40px;
}
.site-footer .footer-serving-line {
    display: block;
    white-space: nowrap;
}

.site-footer .footer-placeholders {
    display: flex;
    gap: 14px;
    justify-content: center;
    width: 100%;
}

.site-footer .footer-placeholder {
    width: 86px;
    height: 86px;
    background: #fff;
    border: 1px solid #1a1f36;
    border-radius: 16px;
}

/* ---------- RIGHT: social icons + nav links ---------- */
.site-footer .footer-col--right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.site-footer .footer-socials {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.site-footer .footer-socials li { display: block; }

.site-footer .footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--clr-navy);
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}
.site-footer .footer-social:hover {
    background: #8090ff;
    color: #fff;
}

.site-footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-nav a {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--clr-navy);
    text-decoration: none;
    transition: opacity 0.18s ease;
}
.site-footer .footer-nav a:hover { opacity: 0.6; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .site-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .site-footer .footer-col--left,
    .site-footer .footer-col--center,
    .site-footer .footer-col--right {
        border-left: none;
        padding: 0;
        align-items: center;
        text-align: center;
    }
    .site-footer .footer-form { margin: 0 auto; }
    .site-footer .footer-cta-headline { text-align: center; }
}
