﻿/* ---------------------------------------------------------------------------
   pages.css - styling for the pages that were NOT part of the design hand-off:
   About Us, Contact Us, Privacy Policy, Terms of Service, 404 and the blog and
   geo templates (spec section 7 lists these; no comps were supplied).

   Every value below is taken from the design's own custom properties so these
   pages sit inside the approved visual system rather than beside it. The tokens
   are redeclared here because the design ships them inside each page's own
   stylesheet, and these pages load none of those files.
   --------------------------------------------------------------------------- */

:root {
    --ink: #1c1611;
    --ink-soft: #473b30;
    --cream: #fbf6ee;
    --cream-2: #f4ecdf;
    --paper: #ffffff;
    --muted: #8c7f70;
    --muted-2: #a99c8c;
    --line: rgba(28, 22, 17, .10);
    --line-2: rgba(28, 22, 17, .06);

    --amber: #e85d1f;
    --amber-2: #f4933a;
    --amber-deep: #bf4310;
    --honey: #f2a65a;

    --sky: #9dc7dd;
    --sky-d: #3f7d9c;
    --leaf: #a6cfa0;
    --leaf-d: #4f8a54;
    --lilac: #cabceb;
    --lilac-d: #6f57aa;
    --mint: #bde3d2;
    --mint-d: #3f8f74;
    --bloom: #f0b8c4;
    --bloom-d: #c25d77;
    --sun: #f3d58a;
    --sun-d: #b88a1c;

    --shell: 1240px;
    --r-sm: 14px;
    --r: 22px;
    --r-lg: 34px;

    --shadow-sm: 0 1px 2px rgba(28, 22, 17, .05), 0 4px 14px rgba(28, 22, 17, .05);
    --shadow: 0 8px 30px rgba(28, 22, 17, .09), 0 2px 8px rgba(28, 22, 17, .05);

    --display: "Fraunces", Georgia, serif;
    --sans: "DM Sans", system-ui, sans-serif;
    --mono: "DM Mono", ui-monospace, monospace;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ===== TRIGOTALE SHOWCASE SECTION ===== */
.tt-showcase {
    position: relative;
    overflow: hidden;
    background: #f5ede0;
    font-family: 'DM Sans', sans-serif;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.tt-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

.tt-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(245, 237, 224, 0.97) 0%, rgba(245, 237, 224, 0.92) 35%, rgba(245, 237, 224, 0.60) 60%, rgba(245, 237, 224, 0.10) 100%);
    z-index: 1;
}

.tt-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 4rem 0 1.5rem;
    flex: 1;
}

/* LEFT */
.tt-left {
    padding: 2rem 2rem 2rem 0;
}

.tt-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.2rem;
}

.tt-logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.tt-brand-text {
    display: flex;
    flex-direction: column;
}

.tt-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3a1f0d;
    line-height: 1.1;
    letter-spacing: -.01em;
}

.tt-brand-sub {
    font-size: .7rem;
    color: #8a6a4a;
    letter-spacing: .04em;
}

.tt-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: #2a1505;
    margin: 0 0 .9rem;
}

.tt-headline-em {
    font-style: italic;
    color: #c8763a;
}

.tt-tagline {
    font-size: .9rem;
    color: #5a3e2b;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 360px;
}

/* FEATURE BADGES */
.tt-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
    margin-bottom: 1.8rem;
    max-width: 530px;
}

.tt-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: .4rem;
    padding: .7rem .5rem;
    border: 1.5px solid rgba(200, 118, 58, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(4px);
    font-size: .68rem;
    font-weight: 600;
    color: #3a1f0d;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}

.tt-badge:hover {
    border-color: rgba(200, 118, 58, .55);
    box-shadow: 0 2px 12px rgba(200, 118, 58, .12);
}

.tt-badge-ic {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8763a;
    font-size: 1.1rem;
}

.tt-badge-ic svg {
    width: 20px;
    height: 20px;
}

/* BUY ROW */
.tt-buy-row {
    display: flex;
    align-items: stretch;
    border: 1.5px solid rgba(200, 118, 58, .25);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    max-width: 530px;
}

.tt-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .8rem 1rem;
    text-decoration: none;
    color: #2a1505;
    flex: 1;
    transition: background .2s;
}

.tt-buy-btn:hover {
    background: rgba(200, 118, 58, .08);
}

.tt-buy-sep {
    width: 1px;
    background: rgba(200, 118, 58, .2);
    align-self: stretch;
}

.tt-buy-ic {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #4a2e1a;
    font-size: 1rem;
}

.tt-buy-ic svg {
    width: 20px;
    height: 20px;
}

.tt-buy-ic img {
    object-fit: contain;
}

.tt-buy-ic--trigotale {
    width: 28px;
    height: 28px;
}

.tt-buy-ic--amazon {
    width: 110px;
    height: 44px;
}

.tt-buy-ic--amazon img {
    width: 100%;
    height: 100%;
}

.tt-buy-ic--fk {
    width: 120px;
    height: 44px;
}

.tt-buy-ic--fk img {
    width: 100%;
    height: 100%;
}

.tt-buy-pre {
    display: block;
    font-size: .65rem;
    color: #8a6a4a;
}

.tt-buy-name {
    display: block;
    font-size: 20px;
    text-decoration: underline;
    font-weight: 700;
    color: #2a1505;
}

.tt-name-amazon {
    color: #e07b00;
}

.tt-name-fk {
    color: #2874f0;
}

/* CENTER ORBIT */
.tt-orbit-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 300px;
    flex-shrink: 0;
}

.tt-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.tt-orbit-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: tt-orbit-spin 30s linear infinite;
}

@@keyframes tt-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

.tt-orbit-node {
    position: absolute;
    transform: translate(-50%, -50%);
}

.tt-orbit-top {
    top: 8%;
    left: 50%;
}

.tt-orbit-amazon {
    top: 14%;
    left: 70%;
}

.tt-orbit-flipkart {
    top: 72%;
    left: 22%;
}

.tt-orbit-heart {
    top: 60%;
    left: 72%;
}

.tt-orbit-center {
    top: 50%;
    left: 50%;
}

.tt-orbit-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    border: 1.5px solid rgba(200, 118, 58, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    color: #c8763a;
    font-size: 1.1rem;
}

.tt-orbit-dot svg {
    width: 22px;
    height: 22px;
}

.tt-orbit-dot--sm {
    width: 32px;
    height: 32px;
    font-size: .85rem;
}

.tt-orbit-dot--sm svg {
    width: 16px;
    height: 16px;
}

.tt-orbit-bubble-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: .4rem;
}

.tt-orbit-bubble {
    background: rgba(255, 255, 255, .92);
    border: 1.5px solid rgba(200, 118, 58, .3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
    padding: .6rem;
}

.tt-bubble-amazon {
    width: 90px;
    height: 90px;
}

.tt-bubble-flipkart {
    width: 90px;
    height: 90px;
}

.tt-bubble-center {
    width: 100px;
    height: 100px;
    border-color: #c8763a;
}

.tt-bubble-label {
    font-size: .75rem;
    font-weight: 700;
    color: #2a1505;
}

.amazon-text {
    font-style: italic;
    color: #e07b00;
    font-size: .9rem;
}

.tt-bubble-sub {
    font-size: .6rem;
    color: #8a6a4a;
}

.tt-bubble-fk-bag {
    font-size: 1.3rem;
    line-height: 1;
}

.tt-bubble-brand {
    font-size: .78rem;
    font-weight: 700;
    color: #3a1f0d;
    font-family: 'Fraunces', serif;
}

.tt-orbit-caption {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: #c8763a;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    font-style: normal;
}

.tt-orbit-caption em {
    font-style: italic;
}

/* RIGHT PRODUCTS */
.tt-products-wrap {
    padding: 0 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tt-products-stage {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-end;
    position: relative;
}

.tt-pack-row {
    display: flex;
    gap: .65rem;
}

.tt-pack {
    border-radius: 14px;
    padding: .9rem .75rem 1rem;
    display: flex;
    align-items: flex-end;
    min-width: 100px;
    min-height: 140px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    transition: transform .25s, box-shadow .25s;
    cursor: default;
}

.tt-pack:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.tt-pack--antioxidant {
    background: linear-gradient(155deg, #b5276a, #8f1d50);
}

.tt-pack--protein {
    background: linear-gradient(155deg, #2a2a2a, #111);
}

.tt-pack--choco {
    background: linear-gradient(155deg, #5a2e0a, #3a1800);
}

.tt-pack--slim {
    background: linear-gradient(155deg, #e07b20, #b85a10);
}

.tt-pack--fiber {
    background: linear-gradient(155deg, #5a2e90, #3a1870);
}

.tt-pack-inner {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.tt-pack-tag {
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
}

.tt-pack-name {
    font-size: .7rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.tt-pack-weight {
    font-size: .75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .9);
    margin-top: .3rem;
}

.tt-trust-badge {
    position: absolute;
    top: 0;
    right: -10px;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .9);
    border: 1.5px solid rgba(200, 118, 58, .3);
    border-radius: 12px;
    padding: .6rem .8rem;
    font-size: .7rem;
    color: #3a1f0d;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.tt-trust-badge svg {
    width: 24px;
    height: 24px;
    color: #f5a623;
}

.tt-trust-badge strong {
    display: block;
    font-weight: 700;
    line-height: 1.3;
}

.tt-stars {
    color: #f5a623;
    font-size: .75rem;
}

/* BOTTOM TRUST BAR */
.tt-trust-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(50, 28, 12, .88);
    backdrop-filter: blur(6px);
    padding: 1.1rem 2rem;
}

.tt-trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    justify-content: center;
    max-width: 200px;
    font-size: .75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    line-height: 1.3;
}

.tt-trust-item i {
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
    font-size: 1rem;
}

.tt-trust-item svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
}

.tt-trust-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
    flex-shrink: 0;
}

/* Responsive */
@@media (max-width: 1100px) {
    .tt-shell {
        grid-template-columns: 1fr auto;
    }

    .tt-products-wrap {
        display: none;
    }
}

@@media (max-width: 720px) {
    .tt-shell {
        grid-template-columns: 1fr;
        padding: 2.5rem 0 1rem;
    }

    .tt-left {
        padding: 1.5rem 1rem;
    }

    .tt-orbit-wrap {
        width: 220px;
    }

    .tt-orbit {
        width: 220px;
        height: 220px;
    }

    .tt-trust-bar {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .tt-trust-sep {
        display: none;
    }

    .tt-buy-row {
        max-width: 100%;
        flex-direction: column;
    }
}

.sc-page {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
}

.sc-page *,
.sc-page *::before,
.sc-page *::after {
    box-sizing: border-box;
}

.sc-shell {
    width: min(100% - 40px, var(--shell));
    margin-inline: auto;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line) !important;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

/* Shared Hero & Divider utilities */
.eyebrow {
    font-family: var(--mono, "DM Mono", monospace);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber-deep, #bf4310);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow .lead-line,
.eyebrow::before {
    content: "";
    width: 24px;
    height: 1.5px;
    background: var(--amber, #e85d1f);
    display: inline-block;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 20px;
    max-width: 470px;
}

.divider .ln {
    height: 1px;
    background: linear-gradient(90deg, var(--amber, #e85d1f), rgba(232, 93, 31, .15));
    flex: 1;
}

.divider .ln.r {
    background: linear-gradient(90deg, rgba(232, 93, 31, .15), transparent);
}

.divider .leaf {
    width: 26px;
    height: 16px;
    color: var(--amber, #e85d1f);
    flex-shrink: 0;
}

/* ==========================================================================
   FLOATING SPLIT-PILL HEADER  (matches design screenshot)
   ========================================================================== */

/*
   Structure:
   ┌──────────────────────────────────────────────────────────┐  ← outer pill
   │ [dark-green logo capsule]  Home  Lines▼  Contact  [CTA] │
   └──────────────────────────────────────────────────────────┘
   The outer pill (.sc-bar) has the cream background.
   The logo link (.sc-brand) is a dark-green inner capsule inset 5px from edges.
*/

/* 1 ─ OUTER FLOATING PILL */
.sc-bar {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: min(100% - 44px, 1120px);
    background: transparent;
    border-radius: 40px;
    z-index: 1000;
    padding: 0;
    border: none;
    overflow: visible;
    /* allow dropdown to escape */
}


.nav-row{background-repeat: round !important;}

.sc-bar.nav {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: min(100% - 44px, 1120px) !important;
}

.burger span {
    width: 18px;
    height: 2px;
    background: #000 !important;
    border-radius: 2px;
    transition: .3s;
}

/* 2 ─ INNER ROW  (full-width inside the pill) */
.sc-bar-in {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 24px;
    width: 100%;
    margin-inline: unset;
    min-height: 70px;
    box-sizing: border-box;
    border-radius: inherit;
    background: url(https://res.cloudinary.com/dcz3mvwdn/image/upload/v1786079871/Untitled_design_4_vl7sib.png) !important;
    background-repeat: round;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
background-repeat: round !important;
}

/* 3 ─ DARK-GREEN LOGO CAPSULE (left side) */
.sc-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    text-decoration: none !important;
    padding: 16px 24px !important;
    border-radius: 34px !important;
    flex: 0 0 30% !important;
    min-width: 260px !important;
    margin: 0 !important;
    align-self: stretch !important;
    transition: background .25s ease !important;
}


.sc-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-brand-name {
    font-family: var(--display, Georgia, serif);
    font-size: 17px;
    letter-spacing: -0.01em;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.05;
}

.sc-brand-tag {
    font-family: var(--sans, 'DM Sans', sans-serif);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.sc-logo {
    height: 40px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

/* 4 ─ NAV LINKS  (on the cream background, flex-grows to fill space) */
.sc-bar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: transparent;
    padding: 0 12px;
    flex: 0 0 40%;
    align-self: center;
}

.sc-bar-links a {
    font-family: 'Plus Jakarta Sans', var(--sans, 'DM Sans'), sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    color: #222222;
    text-decoration: none;
    transition: color .25s ease;
    padding: 12px 0;
    border-radius: 999px;
    white-space: nowrap;
    position: relative;
}

.sc-bar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 24px;
    height: 2px;
    background: #e76a18;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
    opacity: 0;
}

.sc-bar-links a:hover {
    color: #d15d13;
}

.sc-bar-links a:hover::after,
.sc-bar-links a.active::after,
.sc-bar-links a[aria-current="page"]::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.sc-bar-links a.active,
.sc-bar-links a[aria-current="page"] {
    color: #bf4310;
    font-weight: 600;
}

.sc-bar-links a.active::after,
.sc-bar-links a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    background: #bf4310;
    border-radius: 2px;
}

/* 5 ─ DROPDOWN */
.sc-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sc-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.90);
    color: #0f2f22;
    font-weight: 600;
    transition: transform .25s ease, background .25s ease, color .25s ease;
    box-shadow: 0 16px 34px rgba(15, 12, 10, 0.12);
}

.sc-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
}

.sc-dropdown-icon {
    font-size: 0.95rem;
    color: #0e2a22;
}

.sc-chevron {
    font-size: 0.95rem;
    color: #bf4310;
    transition: transform .25s ease, color .25s ease;
}

.sc-dropdown:hover .sc-chevron,
.sc-dropdown:focus-within .sc-chevron {
    transform: rotate(-180deg);
    color: #e76a18;
}

.sc-dropdown-menu,
.nav .sc-dropdown-menu,
.sc-bar .sc-dropdown-menu {
    position: absolute !important;
    top: calc(100% + 14px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    min-width: 280px !important;
    width: max-content !important;
    max-width: 320px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-radius: 28px !important;
    box-shadow: 0 28px 60px rgba(15, 12, 10, 0.16) !important;
    padding: 10px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease !important;
    z-index: 99999 !important;
    overflow: hidden !important;
}

.sc-dropdown:hover .sc-dropdown-menu,
.sc-dropdown:focus-within .sc-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

.sc-dropdown-menu a.sc-dropdown-item,
.nav-links .sc-dropdown-menu a,
.sc-bar-links .sc-dropdown-menu a,
a.sc-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: #222222 !important;
    text-decoration: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: background .2s ease, color .2s ease !important;
    text-align: left !important;
}

.sc-dropdown-item-icon {
    font-size: 0.85rem;
    color: #0e2a22;
    min-width: 18px;
}

.sc-dropdown-menu a.sc-dropdown-item:hover,
.nav-links .sc-dropdown-menu a:hover,
.sc-bar-links .sc-dropdown-menu a:hover,
a.sc-dropdown-item:hover {
    background-color: rgba(231, 106, 24, 0.10) !important;
    color: #bf4310 !important;
}

/* 6 ─ CTA  (burnt-orange pill, right end) */
.sc-bar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px 0 0;
    /* right gap from pill edge */
    align-self: center;
    flex-shrink: 0;
}

.sc-btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    background: #c4511a;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em;
    box-shadow: 0 4px 18px rgba(196, 81, 26, 0.45);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.sc-btn-shop:hover {
    background: #a3400f;
    box-shadow: 0 8px 30px rgba(196, 81, 26, 0.55);
    transform: translateY(-2px);
    color: #fff !important;
}

/* ---- rich footer ---- */
.site-footer {
    position: relative;
    background: #f5efe3;
    overflow: hidden;
}

.cta-banner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto clamp(40px, 5vw, 62px);
    border-radius: 28px;
    overflow: hidden;
    padding: clamp(42px, 5vw, 66px) clamp(36px, 5vw, 62px);
    min-height: clamp(260px, 26vw, 340px);
    display: flex;
    align-items: center;
    box-shadow: 0 34px 78px -36px rgba(46, 34, 22, .45);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url("/img/embedded/926134c5deb4.webp");
    background-size: cover;
    background-position: center right;
}

.cta-inner {
    max-width: 560px;
}

.cta-banner h2 {
    font-size: clamp(34px, 4.4vw, 58px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.04;
    letter-spacing: -.025em;
    margin: 0;
}

.cta-banner h2 em {
    font-style: italic;
    color: var(--amber-deep);
}

.cta-uline {
    display: block;
    width: min(300px, 62%);
    height: 13px;
    margin: 2px 0 0;
    color: var(--amber-deep);
}

.cta-banner p {
    color: var(--ink-soft);
    margin: 16px 0 26px;
    font-size: 16px;
    line-height: 1.55;
    max-width: 38ch;
}

.btn-olive {
    background: #5f7140;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 14px 32px -12px rgba(70, 86, 45, .75);
    transition: all .3s ease;
}

.btn-olive:hover {
    background: #6a7d49;
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -14px rgba(70, 86, 45, .8);
    color: #fff;
}

.footer-main {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 50px 30px clamp(120px, 15vw, 205px);
}

.footer-scene {
    position: relative;
    background-image: url("/img/embedded/f420e3d4de33.webp");
    background-size: 100% auto;
    background-position: center bottom;
    background-position-y: 85%;
    background-repeat: no-repeat;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
    gap: clamp(26px, 2.5vw, 40px);
}

.f-brand .f-brandrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.f-brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--amber);
    display: grid;
    place-items: center;
}

.f-brand .brand-mark i {
    color: #fff;
    font-size: 18px;
}

.f-brand .bt b {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    display: block;
    line-height: 1;
}

.f-brand .bt span {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Logo in footer */
.f-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.f-logo {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .06));
}

.f-tagline {
    color: var(--ink-soft);
    font-size: 14.5px;
    max-width: 33ch;
    line-height: 1.6;
    margin: 0;
}

.f-col h4 {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
}

.f-col h4::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.f-col a {
    display: block;
    color: var(--ink-soft);
    font-size: 14.5px;
    padding: 7px 0;
    text-decoration: none;
    transition: color .25s, transform .25s;
}

.f-col a:hover {
    color: var(--amber-deep);
    transform: translateX(5px);
}

.f-news .news-head {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.f-news .news-ic {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(95, 113, 64, .16);
    display: grid;
    place-items: center;
    color: #5f7140;
    flex-shrink: 0;
}

.f-news .news-head p {
    font-family: var(--display);
    font-size: 17px;
    color: var(--ink);
    line-height: 1.3;
    margin: 0;
}

.news-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 6px 6px 6px 18px;
    max-width: 330px;
}

.news-input input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-family: var(--sans);
    font-size: 14.5px;
    color: var(--ink);
}

.news-input input::placeholder {
    color: var(--muted-2);
}

.news-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #5f7140;
    border: none;
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .3s, background .3s;
}

.news-send:hover {
    background: #6a7d49;
    transform: scale(1.07);
}

.f-social {
    display: flex;
    gap: 11px;
    margin-top: 18px;
}

.f-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    background: #fff;
    text-decoration: none;
    transition: transform .3s, color .3s, border-color .3s;
}

.f-social a:hover {
    transform: translateY(-3px);
    color: var(--amber-deep);
    border-color: var(--amber);
}

.f-social a i {
    font-size: 17px;
}

.footer-bar {
    position: relative;
    z-index: 2;
    background: #e7ece0;
}

.footer-bar .shell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 3vw, 46px);
    flex-wrap: wrap;
    padding: 16px 30px;
    font-size: 13.5px;
    color: var(--muted);
}

.footer-bar .leaf-sep {
    color: var(--honey);
    opacity: .55;
    font-size: 12px;
}

/* ---- responsive ---- */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {

    /* Pill shrinks; hide nav links + shop button; show burger */
    .sc-bar .sc-bar-links,
    .sc-bar .nav-links {
        display: none !important;
    }

    .sc-bar .burger {
        display: flex !important;
    }

    .sc-bar-cta .sc-btn-shop {
        display: none !important;
    }

    /* Keep pill tight and centered */
    .sc-bar {
        width: max-content;
        top: 10px;
    }

    /* grids */
    .sc-grid.cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

    .f-brand,
    .f-news {
        grid-column: 1 / -1;
    }

    .f-news .news-input {
        max-width: 420px;
    }

    .lhero-art {
        display: none !important;
    }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
    body {
        padding-top: 0px;
    }

    /* Floating pill — tighter on mobile */
    .sc-bar {
        top: 10px !important;
        width: calc(100% - 24px) !important;
        border-radius: 100px !important;
    }

    /* Inner row: logo capsule left, burger right */
    .sc-bar-in {
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 0 !important;
        padding: 4px !important;
        width: 100% !important;
        margin-inline: unset !important;
        min-height: 54px !important;
    }

    /* Hide nav and shop */
    .sc-bar .sc-bar-links,
    .sc-bar .nav-links {
        display: none !important;
    }

    .sc-bar .sc-bar-cta .sc-btn-shop {
        display: none !important;
    }

    .sc-bar .burger {
        display: flex !important;
    }

    /* Compact green logo capsule */
    .sc-brand {
        padding: 0 16px !important;
        margin: 0 !important;
        align-self: stretch !important;
    }

    .sc-logo {
        height: 30px !important;
        width: auto !important;
    }

    /* grids */
    .sc-grid.cols-2,
    .sc-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .footer-bar .shell {
        gap: 10px;
        font-size: 12.5px;
    }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
    .sc-logo {
        height: 26px !important;
    }

    .sc-brand {
        padding: 0 12px !important;
    }

    .sc-bar {
        width: calc(100% - 16px) !important;
        top: 8px !important;
    }

    .sc-bar-in {
        min-height: 50px !important;
        padding: 3px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .cta-banner {
        border-radius: 16px !important;
    }
}

/* ==========================================================================
   MOBILE MENU DRAWER & HEADER OPEN STATE
   ========================================================================== */

body.menu-open {
    overflow: hidden !important;
}

/* Seamless dark header when mobile menu is open */
.sc-bar.menu-open,
.nav.menu-open,
body.menu-open .sc-bar,
body.menu-open .nav {
    background: rgba(26, 18, 11, 0.98) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    z-index: 1001 !important;
}

/* Full-screen dark mobile menu overlay */
.mobile-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 1000 !important;
    background: rgba(26, 18, 11, 0.98) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 85px 24px 40px !important;
    gap: 4px !important;
    transform: translateY(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
    overflow-y: auto !important;
}

.mobile-menu.open,
body.menu-open .mobile-menu {
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Mobile menu links styling */
.mobile-menu a {
    font-family: var(--display), Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: var(--cream, #fbf6ee) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.2s ease !important;
}

.mobile-menu a:hover {
    color: var(--amber-2, #f4933a) !important;
}

/* Sub-links inside mobile menu (LOB items) */
.mobile-menu a[style*="padding-left"] {
    font-family: var(--sans), sans-serif !important;
    font-size: 14px !important;
    color: rgba(251, 246, 238, 0.75) !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    border-bottom: none !important;
}

/* CTA button inside mobile menu */
.mobile-menu .btn,
.mobile-menu a.btn {
    margin-top: 20px !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 15px !important;
    border-bottom: none !important;
}

/* Burger button styling — white lines against the dark blurred header */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.10);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 1002;
    backdrop-filter: blur(4px);
}

.burger span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* Burger transform to X when menu is open */
.burger.open span:nth-child(1),
body.menu-open .burger span:nth-child(1),
.menu-open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #ffffff !important;
}

.burger.open span:nth-child(2),
body.menu-open .burger span:nth-child(2),
.menu-open .burger span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3),
body.menu-open .burger span:nth-child(3),
.menu-open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #ffffff !important;
}

.burger.open,
body.menu-open .burger,
.menu-open .burger {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Global Mobile Hero Overlay */
@media (max-width: 720px) {

    .hero::before,
    .lhero::before,
    .fd-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(236, 229, 216, 0.93) 30%, rgba(236, 229, 216, 0.5)) !important;
        z-index: 0;
        pointer-events: none;
    }

    .hero>.shell,
    .lhero>.shell,
    .fd-hero>.shell,
    .hero-grid,
    .lhero-grid,
    .lhero-inner,
    .fd-hero-inner {
        position: relative;
        z-index: 1;
    }
}

/* Global Mobile Background Overlays */
@media (max-width: 720px) {
    .formats-section::before,
    .details-art-bg::before,
    .footer-scene::before,
    .special-section-bg::before,
    .prep-sec::before,
    .lhero-photo::before,
    .section-menu::before,
    .clean-photo::before,
    .b2b-enquiry::before,
    .feature-story::before,
    .trial-photo::before,
    .stats-photo::before,
    .section-enquiry::before,
    .hero-photo::before,
    .where-it-goes::before,
    .section-why-us::before,
    .lhero-bg::before,
    .pricing-section::before,
    .bf-photo::before,
    .section-who-we-serve::before,
    .lhero::before,
    .story-photo::before,
    .wsec::before,
    .cta-card::before,
    .enquiry::before,
    .prebio-photo::before,
    .why-photo::before,
    .why-source::before,
    .sig-bg::before,
}

/* Global Mobile Background Overlays */
@media (max-width: 720px) {

    .formats-section::before,
    .details-art-bg::before,
    .footer-scene::before,
    .special-section-bg::before,
    .prep-sec::before,
    .lhero-photo::before,
    .section-menu::before,
    .clean-photo::before,
    .b2b-enquiry::before,
    .feature-story::before,
    .trial-photo::before,
    .stats-photo::before,
    .section-enquiry::before,
    .hero-photo::before,
    .where-it-goes::before,
    .section-why-us::before,
    .lhero-bg::before,
    .pricing-section::before,
    .bf-photo::before,
    .section-who-we-serve::before,
    .lhero::before,
    .story-photo::before,
    .wsec::before,
    .cta-card::before,
    .enquiry::before,
    .prebio-photo::before,
    .why-photo::before,
    .why-source::before,
    .sig-bg::before,
    .lob-photo::before,
    .wenq-bg::before,
    .freeze-why::before,
    .range-photo::before,
    .contact-photo::before,
    .fd-hero::before,
    .opp-section::before,
    .lob-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(236, 229, 216, 0.93) 30%, rgba(236, 229, 216, 0.5)) !important;
        z-index: 0;
        pointer-events: none;
    }

    .formats-section>*,
    .details-art-bg>*,
    .footer-scene>*,
    .special-section-bg>*,
    .prep-sec>*,
    .lhero-photo>*,
    .section-menu>*,
    .clean-photo>*,
    .b2b-enquiry>*,
    .feature-story>*,
    .trial-photo>*,
    .stats-photo>*,
    .section-enquiry>*,
    .hero-photo>*,
    .where-it-goes>*,
    .section-why-us>*,
    .lhero-bg>*,
    .pricing-section>*,
    .bf-photo>*,
    .section-who-we-serve>*,
    .lhero>*,
    .story-photo>*,
    .wsec>*,
    .cta-card>*,
    .enquiry>*,
    .prebio-photo>*,
    .why-photo>*,
    .why-source>*,
    .sig-bg>*,
    .lob-photo>*,
    .wenq-bg>*,
    .freeze-why>*,
    .range-photo>*,
    .contact-photo>*,
    .fd-hero>*,
    .opp-section>*,
    .lob-section>* {
        position: relative;
        z-index: 1;
    }
}