/* =====================================================================
   Retaj International Group — LIGHT stylesheet
   Palette inspired by Crown Workspace: bright white base, near-black text,
   gold (#FFD00D) as the primary accent, red (#CB0100) used sparingly.
   Type: Fraunces (display serif) + Manrope (body grotesque)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --bg:         #ffffff;
    --bg-2:       #f5f4ee;      /* warm off-white for alternating sections */
    --surface:    #ffffff;      /* card background */
    --surface-2:  #faf9f3;
    --ink:        #1b1b18;      /* near-black text */
    --ink-dim:    #5c5c55;      /* muted body text */
    --ink-faint:  #8c8c84;      /* faint / captions */
    --gold:       #ffd00d;      /* Crown solid gold — fills & highlights */
    --gold-deep:  #9a7400;      /* accessible gold for accent text on white */
    --gold-soft:  #fff6cf;      /* light gold tint background */
    --red:        #cb0100;      /* Crown red — sparing secondary accent */
    --line:       rgba(20, 18, 5, 0.12);
    --line-soft:  rgba(20, 18, 5, 0.06);
    --shadow:     0 14px 34px -16px rgba(30, 26, 5, 0.20);
    --shadow-sm:  0 6px 18px -10px rgba(30, 26, 5, 0.16);

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --radius:    16px;
    --radius-sm: 10px;
    --maxw:      1180px;
    --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 92px;
}

body {
    background-color: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Soft atmospheric tints on the white base */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(55% 45% at 88% 6%,  rgba(255, 208, 13, 0.10), transparent 60%),
        radial-gradient(50% 40% at 3% 30%,  rgba(255, 208, 13, 0.06), transparent 55%);
    pointer-events: none;
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.30;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.narrow { max-width: 760px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--gold);
    display: inline-block;
}

.section-head { max-width: 660px; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.flush { margin-bottom: 0; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }

.section-head h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 1rem 0 1rem;
    font-optical-sizing: auto;
}
.section-head p {
    color: var(--ink-dim);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    max-width: 60ch;
}
.section-head.center p { margin-inline: auto; }

section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
                background 0.25s var(--ease), border-color 0.25s var(--ease);
    will-change: transform;
}
.btn-primary {
    background: var(--gold);
    color: #1b1b18;
    box-shadow: 0 8px 22px -8px rgba(255, 208, 13, 0.7);
}
.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffdb3d;
    box-shadow: 0 14px 30px -8px rgba(255, 208, 13, 0.85);
}
.btn-ghost {
    background: #ffffff;
    border-color: var(--line);
    color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-soft); transform: translateY(-2px); }
.btn-full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }

/* =====================================================================
   Header  (solid white bar — clean and legible over the hero video)
   ===================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--line);
    box-shadow: 0 6px 24px -16px rgba(30, 26, 5, 0.4);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    color: var(--ink);
}
.logo .mark { color: var(--gold-deep); }
.logo .sub {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-dim);
    transition: color 0.2s var(--ease);
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    margin: 0 auto;
    background: var(--ink);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   Hero  (video imagery moment — light text over a soft scrim)
   ===================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(8.5rem, 16vw, 11rem);
    padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
/* Dark fallback so white hero text stays readable even if the video is
   missing or hidden (e.g. reduced-motion users see the poster/fallback). */
.hero-media {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
    background: linear-gradient(135deg, #16140d 0%, #221f15 100%);
}
.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(16,14,8,0.46) 0%, rgba(16,14,8,0.74) 100%),
        radial-gradient(70% 60% at 80% 18%, rgba(255,208,13,0.20), transparent 60%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.6rem;
}
.badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 208, 13, 0.28);
}
.hero h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.4rem);
    font-weight: 500;
    margin-bottom: 1.4rem;
    color: #ffffff;
}
.hero h1 em {
    font-style: italic;
    background: linear-gradient(120deg, #ffe066 10%, #ffd00d 75%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold); /* fallback */
}
.hero p.lead {
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    color: rgba(255, 255, 255, 0.86);
    max-width: 52ch;
    margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* credential strip */
.cred-strip {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    padding-top: 1.75rem;
}
.cred-strip .num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}
.cred-strip .lbl {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0.35rem;
}

/* hero glass cards (light-translucent over the video) */
.hero-visual { position: relative; min-height: 320px; }
.glass {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}
.eco-card { padding: 1.9rem; }
.eco-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; font-weight: 600; color: #ffffff; }
.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.metric:last-child { border-bottom: none; }
.metric .k { color: rgba(255, 255, 255, 0.74); }
.metric .v { font-weight: 600; color: #ffffff; }
.metric .v.hl { color: var(--gold); }
.float-card {
    position: absolute;
    bottom: -28px; left: -22px;
    max-width: 215px;
    padding: 1.35rem 1.5rem;
}
.float-card .big {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}
.float-card .cap { font-size: 0.78rem; color: rgba(255, 255, 255, 0.82); margin-top: 0.4rem; }

/* =====================================================================
   Purpose / About — feature cards
   ===================================================================== */
.purpose { background: linear-gradient(180deg, #ffffff, var(--bg-2)); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.85rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: rgba(255, 208, 13, 0.55); box-shadow: var(--shadow); }
.feature .ic {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--gold-soft);
    border: 1px solid rgba(255, 208, 13, 0.4);
    margin-bottom: 1.25rem;
    color: var(--gold-deep);
}
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature p { color: var(--ink-dim); font-size: 0.96rem; }

/* =====================================================================
   Verticals
   ===================================================================== */
.vert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}
.vert {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vert::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.vert:hover { transform: translateY(-5px); border-color: rgba(255, 208, 13, 0.5); box-shadow: var(--shadow); }
.vert:hover::before { transform: scaleX(1); }
.vert.featured { grid-column: span 2; background: linear-gradient(145deg, var(--gold-soft), #ffffff); }
.vert .tag {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold-deep);
}
.vert h3 { font-size: 1.45rem; font-weight: 600; margin: 0.6rem 0 0.7rem; }
.vert p { color: var(--ink-dim); font-size: 0.96rem; margin-bottom: 1.1rem; }
.vert .firms {
    list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.vert .firms li {
    font-size: 0.78rem;
    color: var(--ink-dim);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface-2);
}

/* =====================================================================
   Sustainability
   ===================================================================== */
.sustain { background: linear-gradient(180deg, var(--bg-2), #ffffff); }
.sustain-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.proof {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.9rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.proof:last-child { margin-bottom: 0; }
.proof .label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-deep);
}
.proof h3 { font-size: 1.35rem; font-weight: 600; margin: 0.5rem 0 0.7rem; }
.proof p { color: var(--ink-dim); font-size: 0.95rem; }
.proof .stat-row { display: flex; gap: 2rem; margin-top: 1.25rem; flex-wrap: wrap; }
.proof .stat-row .n {
    font-family: var(--font-display);
    font-size: 1.9rem; color: var(--gold-deep); line-height: 1;
}
.proof .stat-row .t { font-size: 0.8rem; color: var(--ink-faint); margin-top: 0.3rem; }
.sustain-note {
    font-size: 0.85rem; color: var(--ink-faint);
    border-left: 2px solid var(--gold); padding-left: 1rem; margin-top: 1.5rem;
}

/* =====================================================================
   Leadership
   ===================================================================== */
.leader-card {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    background: linear-gradient(145deg, #ffffff, var(--surface-2));
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(2rem, 4vw, 3.25rem);
    box-shadow: var(--shadow);
}
.monogram {
    aspect-ratio: 1;
    border-radius: 20px;
    display: grid; place-items: center;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,208,13,0.35), transparent 55%),
        linear-gradient(160deg, var(--gold-soft), #ffffff);
    border: 1px solid rgba(255, 208, 13, 0.4);
    position: relative;
    overflow: hidden;
}
.monogram span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--gold-deep);
    letter-spacing: -0.03em;
}
.monogram::after {
    content: "";
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255,208,13,0.08) 0 2px, transparent 2px 14px);
}
.leader-info .role {
    font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--gold-deep);
}
.leader-info h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0.4rem 0 0.5rem; }
.leader-info > p { color: var(--ink-dim); margin-bottom: 1.5rem; max-width: 56ch; }
.leader-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.leader-points li { position: relative; padding-left: 1.6rem; font-size: 0.92rem; color: var(--ink-dim); }
.leader-points li strong { color: var(--ink); display: block; font-weight: 600; margin-bottom: 0.15rem; }
.leader-points li::before {
    content: "→"; position: absolute; left: 0; top: 0; color: var(--gold-deep); font-weight: 700;
}

/* =====================================================================
   dee dhees food showcase
   ===================================================================== */
.food { background: linear-gradient(180deg, #ffffff, var(--bg-2)); }
.food .eyebrow { color: var(--gold-deep); }
.food .eyebrow::before { background: var(--gold); }
.food .section-head h2 em { font-style: italic; color: var(--gold-deep); }
.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}
.food-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.food-card:hover { transform: translateY(-5px); border-color: rgba(255, 208, 13, 0.55); box-shadow: var(--shadow); }
.food-card .fic {
    font-size: 1.6rem; margin-bottom: 0.85rem;
    filter: saturate(1.05);
}
.food-card .fic.fic-lg { font-size: 3rem; margin-bottom: 0; }
.food-card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 0.5rem; }
.food-card p { color: var(--ink-dim); font-size: 0.9rem; }
.food-card.feature-jar {
    grid-column: span 3;
    display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center;
    background: linear-gradient(120deg, var(--gold-soft), #ffffff);
    border-color: rgba(255, 208, 13, 0.4);
}
.food-card.feature-jar .specs { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.85rem; }
.food-card.feature-jar .specs li {
    font-size: 0.74rem; color: var(--gold-deep);
    padding: 0.28rem 0.7rem; border: 1px solid rgba(255, 208, 13, 0.5);
    border-radius: 999px;
}
.food-locations {
    margin-top: 1.5rem; font-size: 0.88rem; color: var(--ink-dim);
    text-align: center;
}
.food-locations strong { color: var(--gold-deep); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: start;
}
.office {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.office h4 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
.office p { color: var(--ink-dim); font-size: 0.95rem; }

.form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.6rem, 3vw, 2.5rem);
    box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-dim); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fffdf5;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7400' stroke-width='1.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem;
}
.field .err { display: none; color: var(--red); font-size: 0.8rem; margin-top: 0.4rem; }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.field.invalid .err { display: block; }
/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: 0.92rem; color: #1a7f37; font-weight: 600; display: none; }
.form-status.show { display: block; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 0;
    background: var(--bg-2);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--ink-faint);
    font-size: 0.86rem;
}
.footer-inner .footer-logo { font-family: var(--font-display); color: var(--ink); font-size: 1rem; }
.footer-inner .footer-logo span { color: var(--gold-deep); }
.footer-inner .tag { color: var(--gold-deep); }

/* =====================================================================
   Scroll reveal (progressive enhancement)
   ===================================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: 0.08s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.16s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.24s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.32s; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; margin-top: 1rem; }
    .sustain-grid, .contact-grid, .leader-card { grid-template-columns: 1fr; }
    .feature-grid, .food-grid { grid-template-columns: repeat(2, 1fr); }
    .vert.featured { grid-column: span 1; }
    .food-card.feature-jar { grid-column: span 2; grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 76px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px -18px rgba(30, 26, 5, 0.4);
        padding: 0.5rem 1.25rem 1.25rem;
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
        max-height: calc(100vh - 76px);
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-links li { width: 100%; }
    .nav-links a:not(.btn) {
        display: block; padding: 0.95rem 0.25rem;
        border-bottom: 1px solid var(--line-soft); font-size: 1rem;
    }
    .nav-links a:not(.btn)::after { display: none; }
    .nav-links .btn { width: 100%; margin-top: 0.85rem; }

    .cred-strip { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
    .hero-actions .btn { flex: 1 1 auto; }
    .leader-points { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    section { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .feature-grid, .food-grid, .vert-grid { grid-template-columns: 1fr; }
    .food-card.feature-jar { grid-column: span 1; }
    .float-card { left: 0; bottom: -20px; }
    .proof .stat-row { gap: 1.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
    .hero-video { display: none; } /* dark fallback + poster keep text readable */
}
