/* styles.css — Shared stylesheet for amandacryer.com */
/* Extracted from inline <style> blocks. Pages still keep page-specific CSS inline. */

/* RESET */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit;transition:color .2s ease}
button{font-family:inherit;cursor:pointer;border:0;background:none}
ul{list-style:none}

/* GLOBAL FONT — Open Sans everywhere (light 300 base). Overrides legacy inline
   font-family declarations (futura-pt / proxima-nova / Jost / Cormorant) sitewide. */
*{font-family:'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif !important}
body{font-weight:300;line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
strong,b{font-weight:700}

/* DESIGN TOKENS — Brand Identity v2 (warm / organic / timeless)
   See /dossier/03-brand-identity.md for the source of truth.
   The legacy --navy / --gold / --cream / --ink names are KEPT so existing components
   still resolve, but they now point at the warm palette. New modules can use either
   the legacy names or the more descriptive --b-* names — they alias the same colors. */
:root{
  /* === Brand identity v2 — semantic names === */
  --b-ivory:#F1EDE6;          /* primary background */
  --b-mist:#EBE3DB;           /* alt background, quiet bands */
  --b-sandstone:#D1C7BD;      /* card surfaces */
  --b-linen:#D1C7BD;          /* subtle dividers */
  --b-tan:#CBAD8D;            /* mid-tone borders */
  --b-camel:#CBAD8D;          /* warm accent */
  --b-camel-light:#D1C7BD;    /* lighter accent (formerly --gold-light) */
  --b-walnut:#3A2D28;         /* secondary text on light, dark accents */
  --b-espresso:#3A2D28;       /* primary text on light (NEVER use #000) */

  /* === Legacy aliases — point at v2 colors so old components rebrand === */
  --navy:#3A2D28;             /* was #3A2D28 — now Dark Espresso (deep anchor) */
  --navy-mid:#3A2D28;         /* was #3A2D28 — now Walnut */
  --navy-2:#3A2D28;           /* was #3A2D28 — now Walnut */
  --navy-light:#A48374;       /* was #3A2D28 — now mid-walnut */
  --gold:#CBAD8D;             /* was #CBAD8D — now Golden Camel */
  --gold-light:#D1C7BD;       /* was #CBAD8D — now lighter Camel */
  --gold-deep:#3A2D28;        /* was #A48374 — now Walnut */
  --gold-text:#3A2D28;        /* was #A48374 — now Walnut */
  --cream:#F1EDE6;            /* was #F1EDE6 — now Ivory */
  --cream-2:#EBE3DB;          /* was #EBE3DB — now Ethereal Mist */
  --white:#FFFFFF;
  --ink:#3A2D28;              /* was #3A2D28 — now Dark Espresso */
  --ink-soft:#3A2D28;         /* was #4a4a4a — now Walnut */

  --radius:10px;--radius-sm:6px;--radius-lg:24px;
  --shadow:0 1px 2px rgba(58,45,40,.06);
  --shadow-sm:0 2px 8px rgba(58,45,40,.08);
  --shadow-md:0 8px 24px rgba(58,45,40,.12);
  --shadow-lg:0 30px 80px -28px rgba(58,45,40,.35);
  --ease:cubic-bezier(.2,.8,.2,1);--dur:.45s;

  /* === Brand fonts — Google Fonts only (Adobe Typekit removed 2026-05) ===
     Loaded via <link> in each page <head>: Jost (display), DM Sans (body),
     Cormorant Garamond / EB Garamond (soul). The legacy 'futura-pt' /
     'proxima-nova' names are kept at the front of the stacks only as a
     courtesy for anyone who has those installed locally; with no @font-face
     they resolve straight to the Google fonts below. */
  --b-display: 'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --b-body:    'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --b-soul:    'Open Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
}

/* Brand identity v2 utility classes */
.b-quote-graphic{background:var(--b-ivory);color:var(--b-espresso);font-family:var(--b-display)}
.b-soul{font-family:var(--b-soul);color:var(--b-espresso);font-style:italic;line-height:1.45}
.b-name-delicate{font-family:var(--b-soul);font-weight:500;letter-spacing:.02em;font-style:normal}

/* AWARDS TICKER — clickable items. Pinned at top of every page (positioning
   declared in each page's inline CSS as position:fixed). */
a.ak-ticker-item{text-decoration:none;cursor:pointer;transition:background .18s ease}
a.ak-ticker-item:hover,a.ak-ticker-item:focus-visible{background:rgba(203,173,141,.18);outline:none}
a.ak-ticker-item:focus-visible{box-shadow:inset 0 0 0 2px var(--gold-light)}

/* Body-level type defaults — page authors can still override via .hero h1, etc.
   Keeps the new fonts visible everywhere even on pages that didn't explicitly set them. */
body{font-family:var(--b-body);color:var(--b-espresso)}
h1,h2,h3,h4,h5,h6{font-family:var(--b-display)}
em,blockquote,.hero-tagline,.qc-hero-text{font-family:var(--b-soul)}

/* SKIP LINK */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--gold);color:var(--navy);padding:.7rem 1.2rem;font-family:Jost,sans-serif;font-weight:800;border-radius:0 0 8px 0;z-index:9999;font-size:.85rem}
.skip-link:focus{left:0}
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* FOCUS */
:focus-visible{outline:3px solid var(--navy);outline-offset:2px;border-radius:4px}

/* AWARDS TICKER */
.ak-ticker{position:fixed;top:0;left:0;right:0;height:36px;z-index:200;background:linear-gradient(90deg,#241813 0%,#3A2D28 25%,#3A2D28 75%,#241813 100%);border-bottom:2px solid rgba(203,173,141,.3);overflow:hidden;display:flex;align-items:center;font-family:'futura-pt','Futura PT',Jost,sans-serif}
.ak-ticker-label{flex-shrink:0;background:#CBAD8D;color:#3A2D28;font-size:.6rem;font-weight:800;text-transform:uppercase;letter-spacing:.18em;padding:0 .85rem;height:100%;display:flex;align-items:center;gap:.4rem}
.ak-ticker-viewport{position:relative;flex:1;overflow:hidden;height:100%;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%);mask-image:linear-gradient(90deg,transparent 0,#000 3%,#000 97%,transparent 100%)}
.ak-ticker-track{display:flex;gap:0;animation:ak-ticker-scroll 180s linear infinite;width:max-content;height:100%;align-items:center;padding-left:1rem}
.ak-ticker-track.paused,.ak-ticker-track:hover{animation-play-state:paused}
@keyframes ak-ticker-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.ak-ticker-item{display:inline-flex;align-items:center;gap:.55rem;padding:0 1.4rem;color:var(--cream);font-size:.74rem;font-weight:500;white-space:nowrap;border-right:1px solid rgba(203,173,141,.18);height:100%}
.ak-ticker-trophy{font-size:.95rem;line-height:1}
.ak-ticker-film{color:var(--gold);font-weight:800;letter-spacing:.05em;text-transform:uppercase;font-size:.66rem}
.ak-ticker-award{color:var(--cream);font-weight:600}
.ak-ticker-fest{color:rgba(241,237,230,.85);font-weight:400;font-size:.7rem}
.ak-ticker-year{color:var(--navy);font-weight:800;background:var(--gold-light);padding:.16rem .5rem;border-radius:3px;font-size:.6rem;letter-spacing:.04em}
body{padding-top:36px}
@media(max-width:600px){.ak-ticker{height:32px}body{padding-top:32px}.ak-ticker-label{font-size:.55rem;padding:0 .55rem;letter-spacing:.12em}.ak-ticker-item{padding:0 .9rem;font-size:.68rem;gap:.4rem}.ak-ticker-track{animation-duration:150s}}

/* BACK-TO-TOP BUTTON (injected by scripts.js on every page) */
.back-to-top{position:fixed;bottom:1.25rem;right:1.25rem;width:46px;height:46px;border-radius:50%;background:var(--gold);color:var(--navy);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(58,45,40,.35);border:0;cursor:pointer;opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .25s var(--ease),transform .25s var(--ease),visibility .25s,background .2s;z-index:150}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--gold-light);transform:translateY(-2px)}
.back-to-top svg{width:22px;height:22px;stroke:currentColor;stroke-width:2.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
@media print{.back-to-top{display:none!important}}
@media(prefers-reduced-motion:reduce){.back-to-top{transition:opacity .2s}}
/* Keep clear of the cookie banner while it's visible (bottom-right on desktop) */
@media(max-width:600px){.back-to-top{bottom:1rem;right:1rem;width:44px;height:44px}}

/* BUTTONS */
.btn-primary{display:inline-flex;align-items:center;gap:.5rem;background:var(--gold);color:var(--navy);font-family:'Jost',sans-serif;font-weight:700;font-size:.92rem;padding:.9rem 2rem;border-radius:var(--radius-sm);letter-spacing:.04em;min-height:44px;transition:background .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease)}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px -6px rgba(203,173,141,.4)}
.btn-secondary{display:inline-flex;align-items:center;gap:.5rem;background:transparent;color:var(--cream);font-family:'Jost',sans-serif;font-weight:500;font-size:.88rem;padding:.88rem 1.8rem;border-radius:var(--radius-sm);border:1.5px solid rgba(241,237,230,.3);letter-spacing:.04em;min-height:44px;transition:border-color .25s var(--ease),color .25s var(--ease),transform .25s var(--ease),box-shadow .25s var(--ease)}
.btn-secondary:hover{border-color:var(--gold);color:var(--gold-light);transform:translateY(-2px);box-shadow:0 6px 20px -6px rgba(203,173,141,.2)}
@media(max-width:600px){.btn-primary,.btn-secondary{font-size:.8rem;padding:.75rem 1.5rem;min-height:44px}}

/* EYEBROW & CONTAINER */
.eyebrow{display:block;font-family:'Jost',sans-serif;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:var(--gold-text);margin-bottom:.9rem}
.container{max-width:1200px;margin:0 auto;padding:0 1.5rem}
@media(max-width:800px){.container{padding:0 1.25rem}}
@media(max-width:600px){.container{padding:0 1rem}.eyebrow{font-size:.6rem;letter-spacing:.15em;margin-bottom:.7rem}}

/* FOOTER */
footer{background:var(--navy);border-top:1px solid rgba(203,173,141,.1);padding:3rem 0 2rem}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 1.5rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;justify-content:space-between;align-items:flex-start}
.footer-brand span{font-family:'Jost',sans-serif;font-weight:800;font-size:1.1rem;color:var(--cream)}
.footer-brand p{font-size:.78rem;color:rgba(241,237,230,.6);margin-top:.3rem;max-width:240px;line-height:1.5}
.footer-links{display:flex;flex-wrap:wrap;gap:.5rem 1.5rem}
.footer-links a{font-family:'Jost',sans-serif;font-size:.78rem;color:rgba(241,237,230,.85);text-transform:uppercase;letter-spacing:.08em;transition:color .2s;display:inline-flex;align-items:center;min-height:44px;padding:.5rem 0}
.footer-links a:hover{color:var(--gold-light)}
.footer-bottom{max-width:1200px;margin:.75rem auto 0;padding:.75rem 1.5rem 0;border-top:1px solid rgba(241,237,230,.06);font-size:.72rem;color:rgba(241,237,230,.5);font-family:'DM Sans',sans-serif;display:flex;flex-wrap:wrap;gap:.5rem;justify-content:space-between}
.footer-social a:hover{color:var(--gold-light)!important}
@media(max-width:900px){.footer-inner{gap:1.5rem;grid-template-columns:1fr 1fr}}
@media(max-width:600px){footer{padding:2rem 0 1.5rem}.footer-inner{grid-template-columns:1fr;gap:1.5rem}.footer-brand span{font-size:.95rem}.footer-links{flex-direction:column;gap:.3rem 0}.footer-links a{font-size:.7rem}.footer-bottom{flex-direction:column;gap:.3rem;font-size:.65rem}}

/* SCROLL REVEAL */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.stagger>*{opacity:0;transform:translateY(16px)}
.stagger.is-visible>*{opacity:1;transform:translateY(0);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.stagger.is-visible>:nth-child(2){transition-delay:.07s}.stagger.is-visible>:nth-child(3){transition-delay:.14s}.stagger.is-visible>:nth-child(4){transition-delay:.21s}.stagger.is-visible>:nth-child(5){transition-delay:.28s}.stagger.is-visible>:nth-child(6){transition-delay:.35s}.stagger.is-visible>:nth-child(n+7){transition-delay:.4s}
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}

/* LIGHTBOX */
.acl-zoomable{cursor:zoom-in}.acl-zoomable:focus-visible{outline:3px solid var(--navy);outline-offset:2px;border-radius:4px}
dialog.acl-lightbox{padding:0;border:0;background:transparent;max-width:96vw;max-height:96vh;width:auto;height:auto;color:#fff;overflow:visible}
dialog.acl-lightbox::backdrop{background:rgba(26,18,14,.94)}
dialog.acl-lightbox img{display:block;max-width:96vw;max-height:92vh;width:auto;height:auto;margin:0 auto;border-radius:8px;box-shadow:0 24px 80px rgba(0,0,0,.6);object-fit:contain}
.acl-close{position:fixed;top:1rem;right:1rem;width:44px;height:44px;border-radius:50%;background:rgba(0,0,0,.55);color:#fff;border:1px solid rgba(255,255,255,.3);font-size:1.4rem;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;font-family:inherit}
.acl-cap{position:fixed;bottom:1rem;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.65);color:#fff;font-family:'DM Sans',sans-serif;font-size:.78rem;padding:.4rem .85rem;border-radius:6px;max-width:90vw;text-align:center;line-height:1.4}
@media(max-width:800px){dialog.acl-lightbox img{max-width:92vw;max-height:85vh}.acl-close{width:40px;height:40px;font-size:1.2rem;top:.75rem;right:.75rem}}
@media(max-width:600px){dialog.acl-lightbox{max-width:98vw;max-height:90vh}dialog.acl-lightbox img{max-width:90vw;max-height:75vh}.acl-close{width:36px;height:36px;font-size:1rem}.acl-cap{bottom:.75rem;font-size:.7rem;padding:.3rem .6rem}}

/* REDUCED MOTION */
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

/* SKELETON LOADING STATES */
.skeleton{background:linear-gradient(90deg,rgba(203,173,141,.08) 0%,rgba(203,173,141,.15) 50%,rgba(203,173,141,.08) 100%);background-size:200% 100%;animation:skeleton-pulse 2s ease-in-out infinite}
@keyframes skeleton-pulse{0%{background-position:200% 0}100%{background-position:-200% 0}}
.skeleton-text{height:.9rem;border-radius:4px;margin-bottom:.6rem}
.skeleton-card{border-radius:12px;padding:1.5rem;background:var(--white);box-shadow:0 1px 3px rgba(0,0,0,.05)}
.skeleton-card .skeleton-text:last-child{margin-bottom:0}
.skeleton-avatar{width:48px;height:48px;border-radius:50%;display:inline-block}
@media(prefers-reduced-motion:reduce){.skeleton{animation:none;opacity:.5}}

/* PARALLAX SCROLL */
:root{--scroll-y:0px}
[data-parallax]{will-change:transform}
[data-parallax="slow"]{transform:translateY(calc(var(--scroll-y) * 0.15))}
[data-parallax="medium"]{transform:translateY(calc(var(--scroll-y) * 0.3))}
[data-parallax="fast"]{transform:translateY(calc(var(--scroll-y) * 0.5))}
@media(prefers-reduced-motion:reduce){[data-parallax]{transform:none!important}}

/* FORM VALIDATION */
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"]{border-color:#e74c3c!important;background-color:rgba(231,76,60,.05)!important}
input[aria-invalid="false"],
textarea[aria-invalid="false"],
select[aria-invalid="false"]{border-color:#5cb85c;background-color:rgba(92,184,92,.02)}
.field-error{font-size:.75rem;color:#e74c3c;margin-top:.2rem;font-family:'DM Sans',sans-serif;display:block;animation:slideDown .2s ease}
@keyframes slideDown{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}

/* COOKIE CONSENT */
/* Cookie banner — dismissible toast in bottom-right (desktop) / bottom-stretch with breathing room (mobile).
   Maximum 360px wide on desktop so it never feels like a wall over content. */
.cookie-banner{position:fixed;bottom:1rem;right:1rem;left:auto;max-width:360px;background:var(--navy);border:1px solid rgba(203,173,141,.35);border-radius:var(--radius);padding:1rem 1.1rem;z-index:100;display:flex;flex-direction:column;gap:.7rem;font-family:'proxima-nova','Proxima Nova','DM Sans',sans-serif;box-shadow:0 12px 40px rgba(0,0,0,.35);transform:translateY(120%);opacity:0;transition:transform .35s var(--ease,cubic-bezier(.2,.8,.2,1)),opacity .25s ease}
.cookie-banner.is-visible{transform:translateY(0);opacity:1}
.cookie-banner.hidden{display:none}
.cookie-banner-text{font-size:.82rem;color:rgba(241,237,230,.88);line-height:1.5;overflow-wrap:anywhere;word-break:normal;padding-right:1.6rem;position:relative}
.cookie-banner-text a{color:var(--gold-light);text-decoration:underline;transition:color .2s}
.cookie-banner-text a:hover{color:var(--gold)}
.cookie-banner-buttons{display:flex;gap:.5rem;flex-wrap:nowrap;justify-content:flex-end}
/* Close × — visually 28px circle, but the tap area extends to 44x44 via padding
   so fingers can reliably hit it on touch screens. */
.cookie-banner-close{position:absolute;top:-.6rem;right:-.6rem;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background:transparent;border:0;color:rgba(241,237,230,.7);font-size:1.2rem;line-height:1;cursor:pointer;border-radius:50%;transition:color .15s ease,background .15s ease}
.cookie-banner-close:hover,.cookie-banner-close:focus-visible{color:var(--gold-light);background:rgba(203,173,141,.15);outline:none}
.cookie-btn{font-family:'Jost',sans-serif;font-weight:700;font-size:.8rem;padding:.75rem 1.25rem;border-radius:var(--radius-sm);cursor:pointer;border:none;transition:all .2s;text-transform:uppercase;letter-spacing:.05em;min-height:44px;display:inline-flex;align-items:center;justify-content:center}
.cookie-btn-accept{background:var(--gold);color:var(--navy)}
.cookie-btn-accept:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 6px 20px -6px rgba(203,173,141,.4)}
.cookie-btn-reject{background:transparent;color:var(--cream);border:1.5px solid rgba(241,237,230,.3)}
.cookie-btn-reject:hover{border-color:var(--gold);color:var(--gold-light);transform:translateY(-2px)}
@media(max-width:600px){.cookie-banner{left:.75rem;right:.75rem;bottom:.75rem;max-width:none;padding:.9rem;gap:.6rem}.cookie-banner-text{font-size:.78rem}.cookie-btn{padding:.6rem 1rem;font-size:.78rem;min-height:44px;flex:1}}
@media print{.cookie-banner{display:none!important}}

/* PRINT */
@media print{nav,.nav,.nav-mobile,.skip-link,footer,.footer,.fund-section,.fund-btns,.contact-section,.cta-section,video,iframe,.acl-lightbox,.ak-ticker,.newsletter-band{display:none!important}body{background:#fff!important;color:#000!important;padding-top:0!important}a{color:#000!important;text-decoration:underline}a[href^="http"]:after{content:" ("attr(href)")";font-size:.75em;color:#555}img{max-width:100%!important;break-inside:avoid;page-break-inside:avoid}h1,h2,h3{break-after:avoid;page-break-after:avoid}}

/* ═══════════════════════════════════════════════════════════════════
   ROUND 8 — LIGHT THEME + NEW NAV (site-wide overrides)
   Light backgrounds, dark text (WCAG-AA). Uses !important to beat the
   per-page inline dark chrome rules. Page-body sections are inverted
   per page; this block governs body bg, nav, footer, ticker, buttons.
   ═══════════════════════════════════════════════════════════════════ */

/* Light page base */
body{background:var(--b-ivory)!important;color:var(--b-espresso)!important}

/* Kill the awards ticker site-wide (markup may remain; it's hidden) */
.ak-ticker{display:none!important}
body{padding-top:0!important}

/* ── Framed-print photo treatment (sitewide) ── */
.photo-frame{background:#fff;padding:clamp(.55rem,1.1vw,.9rem);border-radius:12px;box-shadow:0 18px 40px -16px rgba(58,45,40,.4),0 3px 10px rgba(58,45,40,.1)}
.photo-frame img{display:block;width:100%;height:auto;border-radius:6px}
.photo-frame figcaption,figure.framed figcaption{font-size:.74rem;color:rgba(58,45,40,.6);text-align:center;margin-top:.55rem;letter-spacing:.02em;line-height:1.45;font-weight:600;text-transform:uppercase}

/* ── Sticky light nav ── */
.nav{position:sticky!important;top:0!important;background:rgba(241,237,230,.9)!important;-webkit-backdrop-filter:blur(12px) saturate(1.4);backdrop-filter:blur(12px) saturate(1.4);border-bottom:1px solid rgba(58,45,40,.1)!important}
.nav-inner{max-width:1200px;margin:0 auto;padding:.7rem 1.75rem;display:flex!important;align-items:center;justify-content:space-between;gap:1rem;min-height:70px;flex-wrap:nowrap}
.nav-brand{display:flex!important;align-items:center;gap:.75rem;color:var(--b-espresso)!important;text-decoration:none}
.nav-brand:hover{color:var(--navy-light)!important}
.nav-brand>span{display:flex;flex-direction:column;line-height:1.1}
.nav-brand>span>span:first-child{color:var(--b-espresso)!important;font-size:1.15rem;font-weight:700;letter-spacing:.01em}
/* Tagline dropped from the bar for a cleaner, larger nav (still shown in the footer) */
.nav-brand-sub{display:none!important}
/* D1 — curated desktop links + Connect CTA, sized to a standard menu */
.nav-links{gap:1.05rem!important;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.nav-links a{color:var(--b-espresso)!important;font-size:.82rem!important;font-weight:500!important;letter-spacing:.01em!important;text-transform:none!important;white-space:nowrap;padding:.55rem 0;display:inline-flex;align-items:center;min-height:44px;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--navy-light)!important}
.nav-cta{background:var(--b-camel)!important;color:var(--b-espresso)!important;font-size:.82rem!important;font-weight:700!important;padding:.48rem 1.15rem!important;border-radius:var(--radius-sm)!important;min-height:0;display:inline-flex!important;align-items:center;transition:background .2s,transform .2s}
.nav-cta:hover{background:var(--b-camel-light)!important;transform:translateY(-1px)}
.nav-toggle{width:48px;height:48px;flex-direction:column;justify-content:center;align-items:center;gap:6px;background:none;border:0;cursor:pointer;padding:0}
.nav-toggle span{display:block;width:26px;height:2.5px;border-radius:2px;background:var(--b-espresso)!important}
@media(max-width:600px){.nav-inner{padding:.55rem 1rem;min-height:60px}.nav-brand>span>span:first-child{font-size:.92rem;white-space:normal!important;line-height:1.12}.nav-brand{gap:.6rem}}

/* Responsive: curated links >=860px, hamburger + overlay below */
@media(min-width:860px){.nav-links{display:flex!important}.nav-toggle{display:none!important}.nav-overlay{display:none!important}}
@media(max-width:859px){.nav-links{display:none!important}.nav-toggle{display:flex!important}}

/* M1 — full-screen mobile overlay */
.nav-overlay{position:fixed;inset:0;z-index:300;background:var(--b-ivory);display:flex;flex-direction:column;align-items:center;padding:4.5rem 1.5rem 3rem;overflow-y:auto;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .28s var(--ease),transform .28s var(--ease),visibility .28s}
.nav-overlay.open{opacity:1;visibility:visible;transform:none}
.nav-overlay-close{position:absolute;top:1rem;right:1.1rem;width:46px;height:46px;font-size:2rem;line-height:1;color:var(--b-espresso);background:none;border:0;cursor:pointer}
.nav-overlay-inner{display:flex;flex-direction:column;align-items:center;text-align:center;width:100%;max-width:440px;margin:auto 0}
.nav-overlay-inner>a{font-size:1.7rem;font-weight:700;color:var(--b-espresso);padding:.5rem 0;letter-spacing:-.01em;transition:color .2s}
.nav-overlay-inner>a:hover{color:var(--navy-light)}
.nav-overlay-label{margin:1.3rem 0 .3rem;font-family:'Open Sans',sans-serif;font-size:.64rem;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:var(--navy-light)}
.nav-overlay-more{display:flex;flex-direction:column;align-items:center;gap:.1rem}
.nav-overlay-more a{font-size:1.05rem;font-weight:600;color:var(--b-espresso);padding:.4rem 0;transition:color .2s}
.nav-overlay-more a:hover{color:var(--navy-light)}
.nav-overlay-socials{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem;margin-top:1.9rem}
.nav-overlay-socials a{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center;color:var(--b-espresso);transition:color .2s,transform .2s}
.nav-overlay-socials a:hover{color:var(--navy-light);transform:translateY(-2px)}
body.nav-open{overflow:hidden}

/* ── Light footer ── */
footer,.footer{background:var(--b-mist)!important;border-top:1px solid rgba(58,45,40,.1)!important}
.footer-brand span,.footer-brand h3{color:var(--b-espresso)!important}
.footer-brand p{color:rgba(58,45,40,.65)!important}
.footer-links a{color:rgba(58,45,40,.85)!important}
.footer-links a:hover{color:var(--navy-light)!important}
.footer-links h4{color:var(--b-espresso)!important}
.footer-social p{color:var(--b-espresso)!important}
.footer-social a{color:rgba(58,45,40,.72)!important}
.footer-social-row a{display:inline-flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;transition:transform .2s,color .2s}
.footer-social-row a:hover{transform:translateY(-2px)}
.footer-social a:hover{color:var(--navy-light)!important}
.footer-social .footer-ein{color:rgba(58,45,40,.6)!important}
.footer-bottom{color:rgba(58,45,40,.55)!important;border-top:1px solid rgba(58,45,40,.08)!important}
.footer-bottom a{color:var(--navy-light)!important}

/* ── Buttons for light bg ── */
.btn-secondary{color:var(--b-espresso)!important;border:1.5px solid rgba(58,45,40,.35)!important}
.btn-secondary:hover{color:var(--navy-light)!important;border-color:var(--navy-light)!important}
/* end ROUND 8 */
