
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
}

/* ---- Design tokens ---- */
:root{
  --green-950:#0f2620;
  --green-900:#1a3b2f;   /* Primary */
  --green-800:#234f3f;
  --green-700:#2e6650;
  --yellow-500:#f1c40f;  /* Secondary */
  --yellow-600:#ffcc00;
  --white:#ffffff;
  --off-white:#f8f9fa;
  --ink:#152119;
  --ink-soft:#4a564f;
  --line:#e4e9e5;

  --font-display:'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:'Inter', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:6px;
  --radius-md:14px;
  --radius-lg:26px;
  --shadow-soft:0 10px 30px -12px rgba(15,38,32,.25);
  --shadow-strong:0 20px 45px -10px rgba(15,38,32,.35);
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  font-weight:400;
  line-height:1.65;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-display);
  color:var(--green-900);
  font-weight:700;
  letter-spacing:.2px;
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
.section{ padding:5.5rem 0; }
.section-sm{ padding:3.25rem 0; }
@media (max-width:767.98px){
  .section{ padding:3.5rem 0; }
}

.bg-offwhite{ background:var(--off-white); }
.bg-green{ background:var(--green-900); color:var(--white); }
.bg-green .h2, .bg-green h2, .bg-green h3{ color:var(--white); }
.text-yellow{ color:var(--yellow-500) !important; }
.text-green{ color:var(--green-900) !important; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-family:var(--font-body);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--green-700);
  margin-bottom:.85rem;
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background:var(--yellow-500);
  display:inline-block;
}
.bg-green .eyebrow{ color:var(--yellow-500); }

.section-title{ font-size:clamp(1.7rem,3.6vw,2.6rem); margin-bottom:1rem; }
.section-lead{ color:var(--ink-soft); max-width:640px; }
.bg-green .section-lead{ color:rgba(255,255,255,.82); }

/* ---- Buttons ---- */
.btn{
  border-radius:999px;
  font-weight:600;
  padding:.75rem 1.6rem;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  letter-spacing:.2px;
}
.btn:focus-visible{ outline:3px solid var(--yellow-500); outline-offset:2px; }

.btn-brand{
  background:var(--yellow-500);
  color:var(--green-950);
  border:2px solid var(--yellow-500);
}
.btn-brand:hover{ background:var(--yellow-600); color:var(--green-950); transform:translateY(-3px); box-shadow:var(--shadow-strong); }

.btn-outline-brand{
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,.65);
}
.btn-outline-brand:hover{ background:rgba(255,255,255,.12); color:var(--white); transform:translateY(-3px); border-color:var(--white); }

.btn-green{
  background:var(--green-900);
  color:var(--white);
  border:2px solid var(--green-900);
}
.btn-green:hover{ background:var(--green-800); color:var(--white); transform:translateY(-3px); box-shadow:var(--shadow-soft); }

.btn-ghost-green{
  background:transparent;
  color:var(--green-900);
  border:2px solid var(--green-900);
}
.btn-ghost-green:hover{ background:var(--green-900); color:var(--white); transform:translateY(-3px); }

/* ==========================================================================
   PRE-LOADER
   ========================================================================== */
#preloader{
  position:fixed; inset:0; z-index:2000;
  background:var(--green-900);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  gap:1.1rem;
  transition:opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.crest-spinner{
  width:76px; height:76px;
  border-radius:50%;
  border:4px solid rgba(241,196,15,.25);
  border-top-color:var(--yellow-500);
  animation:spin 1s linear infinite;
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.crest-spinner span{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--yellow-500);
  font-size:1.05rem;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.preloader-text{
  color:rgba(255,255,255,.75);
  font-size:.8rem;
  letter-spacing:3px;
  text-transform:uppercase;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1200;
  background:rgba(26,59,47,.96);
  backdrop-filter:blur(6px);
  padding:.55rem 0;
  transition:padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled{ padding:.25rem 0; box-shadow:0 8px 24px rgba(0,0,0,.18); }

.brand{
  display:flex; align-items:center; gap:.65rem;
  font-family:var(--font-display);
  color:var(--white) !important;
}
.brand-logo{
  width:46px; height:46px;
  border-radius:50%;
  background:var(--yellow-500);
  color:var(--green-950);
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  font-size:1.05rem;
  overflow:hidden;
  flex-shrink:0;
}
.brand-logo img{ width:100%; height:100%; object-fit:cover; }
.brand-text{ line-height:1.15; }
.brand-text .name{ font-weight:700; font-size:1.02rem; display:block; }
.brand-text .tagline{ font-family:var(--font-body); font-size:.62rem; letter-spacing:1.6px; text-transform:uppercase; color:var(--yellow-500); }

.nav-desktop{ display:none; }
@media (min-width:992px){
  .nav-desktop{ display:flex; align-items:center; gap:1.9rem; }
  .nav-desktop a{
    color:var(--white);
    font-weight:600;
    font-size:.93rem;
    position:relative;
    padding:.3rem 0;
  }
  .nav-desktop a::after{
    content:"";
    position:absolute; left:0; bottom:-2px;
    width:0; height:2px;
    background:var(--yellow-500);
    transition:width .3s var(--ease);
  }
  .nav-desktop a:hover::after, .nav-desktop a.active::after{ width:100%; }
  .nav-desktop a.active{ color:var(--yellow-500); }
}

.header-actions{ display:flex; align-items:center; gap:.6rem; }

.lang-switch{
  display:flex; align-items:center; gap:.35rem;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.35);
  color:var(--white);
  border-radius:999px;
  padding:.4rem .9rem;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.5px;
  cursor:pointer;
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.lang-switch:hover{ background:var(--yellow-500); color:var(--green-950); transform:translateY(-2px); }
.lang-switch i{ font-size:.85rem; }

.nav-toggle{
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  gap:5px;
  width:42px; height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.4);
  background:transparent;
  cursor:pointer;
}
.nav-toggle span{
  width:20px; height:2px; background:var(--white); border-radius:2px;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
@media (min-width:992px){ .nav-toggle{ display:none; } }

/* ---- Mobile off-canvas: waterfall from left ---- */
.mobile-panel{
  position:fixed; top:0; left:0; bottom:0;
  width:min(78vw,320px);
  background:var(--green-900);
  z-index:1300;
  transform:translateX(-105%);
  transition:transform .45s var(--ease);
  padding:6.5rem 1.75rem 2rem;
  box-shadow:20px 0 50px rgba(0,0,0,.3);
}
.mobile-panel.is-open{ transform:translateX(0); }
.mobile-panel a{
  display:block;
  color:var(--white);
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:700;
  padding:.65rem 0;
  border-bottom:1px solid rgba(255,255,255,.1);
  opacity:0;
  transform:translateX(-24px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
/* waterfall cascade: each link's transition is delayed a bit more than the last */
.mobile-panel.is-open a{ opacity:1; transform:translateX(0); }
.mobile-panel.is-open a:nth-child(1){ transition-delay:.08s; }
.mobile-panel.is-open a:nth-child(2){ transition-delay:.15s; }
.mobile-panel.is-open a:nth-child(3){ transition-delay:.22s; }
.mobile-panel.is-open a:nth-child(4){ transition-delay:.29s; }
.mobile-panel.is-open a:nth-child(5){ transition-delay:.36s; }
.mobile-panel.is-open a:nth-child(6){ transition-delay:.43s; }
.mobile-panel .mobile-meta{
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.15);
  opacity:0; transform:translateX(-24px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
.mobile-panel.is-open .mobile-meta{ opacity:1; transform:translateX(0); transition-delay:.5s; }
.mobile-panel .mobile-meta a{ border:none; font-family:var(--font-body); font-size:.95rem; padding:.4rem 0; color:rgba(255,255,255,.8); }

.nav-backdrop{
  position:fixed; inset:0; background:rgba(15,38,32,.55);
  z-index:1250; opacity:0; visibility:hidden;
  transition:opacity .4s var(--ease), visibility .4s var(--ease);
}
.nav-backdrop.is-open{ opacity:1; visibility:visible; }

@media (min-width:992px){
  .mobile-panel, .nav-backdrop{ display:none !important; }
}

/* ==========================================================================
   HERO — 3 swapping backgrounds + typing effect
   ========================================================================== */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  color:var(--white);
  overflow:hidden;
}
.hero-bg-layer{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  animation:heroFade 18s infinite;
  will-change:opacity;
}
.hero-bg-layer.l1{ animation-delay:0s; }
.hero-bg-layer.l2{ animation-delay:6s; }
.hero-bg-layer.l3{ animation-delay:12s; }
@keyframes heroFade{
  0%{ opacity:0; }
  5%{ opacity:1; }
  33%{ opacity:1; }
  38%{ opacity:0; }
  100%{ opacity:0; }
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,38,32,.78) 0%, rgba(15,38,32,.62) 45%, rgba(15,38,32,.92) 100%);
  z-index:1;
}
.hero-content{ position:relative; z-index:2; padding-top:5rem; }
.hero-badge{
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(241,196,15,.15);
  border:1px solid rgba(241,196,15,.55);
  color:var(--yellow-500);
  padding:.45rem 1rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:1.4rem;
}
.hero-title{
  font-size:clamp(2.1rem,5.4vw,3.7rem);
  line-height:1.12;
  margin-bottom:1rem;
  color: bisque;
}
.hero-typed-cursor{
  display:inline-block;
  width:3px;
  background:var(--yellow-500);
  margin-left:4px;
  animation:blink 1s step-start infinite;
}
@keyframes blink{ 50%{ opacity:0; } }
.hero-motto{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.15rem;
  color:rgba(255,255,255,.9);
  border-left:3px solid var(--yellow-500);
  padding-left:1rem;
  margin-bottom:2rem;
  max-width:560px;
}
.hero-scroll{
  position:absolute; bottom:1.75rem; left:50%; transform:translateX(-50%);
  z-index:2; color:rgba(255,255,255,.75); font-size:1.4rem;
  animation:bounce 2.2s infinite;
}
@keyframes bounce{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,8px);} }

/* ==========================================================================
   MARQUEE — excellence ticker
   ========================================================================== */
.marquee-band{
  background:var(--green-950);
  overflow:hidden;
  padding:.9rem 0;
  border-top:1px solid rgba(241,196,15,.25);
  border-bottom:1px solid rgba(241,196,15,.25);
}
.marquee-track{
  display:flex;
  width:max-content;
  gap:2.5rem;
  animation:marquee 28s linear infinite;
}
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee-item{
  display:flex; align-items:center; gap:.6rem;
  color:var(--white);
  font-weight:700;
  font-size:.92rem;
  white-space:nowrap;
}
.marquee-item i{ color:var(--yellow-500); }
.marquee-item .score{ color:var(--yellow-500); }

/* ==========================================================================
   CARDS
   ========================================================================== */
.card-asset{
  border:none;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  height:100%;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card-asset:hover{ transform:translateY(-8px); box-shadow:var(--shadow-strong); }

.atout-item{
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.1rem 0;
  border-bottom:1px dashed var(--line);
}
.atout-item .icon{
  flex-shrink:0;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--green-900);
  color:var(--yellow-500);
  display:flex; align-items:center; justify-content:center;
}

.section-card{
  border-radius:var(--radius-lg);
  padding:2.4rem;
  height:100%;
  background:var(--off-white);
  border:1px solid var(--line);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.section-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.section-card.is-dark{ background:var(--green-900); color:var(--white); }
.section-card.is-dark h3,.section-card.is-dark h4{ color:var(--white); }
.section-card .badge-pill{
  background:var(--yellow-500); color:var(--green-950);
  font-weight:700; border-radius:999px; padding:.35rem .8rem; font-size:.72rem;
  text-transform:uppercase; letter-spacing:1px;
}

/* ---- Placeholder media frames (for logo/images/videos to be swapped) ---- */
.media-slot{
  position:relative;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column;
  gap:.5rem;
  background:repeating-linear-gradient(135deg, #eef2ef, #eef2ef 10px, #e6ece8 10px, #e6ece8 20px);
  border:2px dashed #b9c9c0;
  border-radius:var(--radius-md);
  color:var(--green-700);
  text-align:center;
  font-size:.82rem;
  padding:1rem;
  overflow:hidden;
}
.media-slot i{ font-size:1.6rem; color:var(--green-700); }
.media-slot small{ color:var(--ink-soft); }
.media-slot.ratio-16x9{ aspect-ratio:16/9; }
.media-slot.ratio-4x3{ aspect-ratio:4/3; }
.media-slot.ratio-1x1{ aspect-ratio:1/1; }
.media-slot.ratio-3x4{ aspect-ratio:3/4; }

/* ==========================================================================
   AUTO-SWAP MEDIA FRAME
   Drop a file at the path shown in the placeholder and refresh the page —
   no code edits needed. The <img>/<video> sits on top of the dashed
   placeholder; if the file is missing/broken it is hidden via onerror,
   revealing the placeholder underneath. If the file loads, it simply
   covers the placeholder.
   ========================================================================== */
.media-frame{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius-md);
  background:var(--off-white);
}
.media-frame.ratio-16x9{ aspect-ratio:16/9; }
.media-frame.ratio-4x3{ aspect-ratio:4/3; }
.media-frame.ratio-1x1{ aspect-ratio:1/1; }
.media-frame.ratio-3x4{ aspect-ratio:3/4; }
.media-frame > .media-slot{
  position:absolute; inset:0;
  border-radius:0;
  aspect-ratio:auto;
  z-index:1;
}
.media-frame > img,
.media-frame > video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  z-index:2;
  background:transparent;
}
/* full-bleed variant used for page-header backdrops (no visible placeholder chrome) */
.media-frame.frame-cover > .media-slot{
  border:none; border-radius:0;
  background:transparent;
}

/* Gallery grid */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:1.1rem;
}
.gallery-figure{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  cursor:pointer;
}
.gallery-figure .media-slot{ border-radius:var(--radius-md); }
.gallery-figure figcaption{
  position:absolute; left:0; right:0; bottom:0;
  background:linear-gradient(0deg, rgba(15,38,32,.85), transparent);
  color:var(--white);
  padding:1.7rem .9rem .7rem;
  font-size:.82rem; font-weight:600;
  transform:translateY(6px);
  opacity:.92;
  transition:transform .3s var(--ease);
  z-index:3;
}
.gallery-figure:hover figcaption{ transform:translateY(0); }

/* Uniform / atelier swatches */
.swatch{
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.5rem .9rem;
  border-radius:999px;
  background:var(--off-white);
  border:1px solid var(--line);
  font-weight:600;
  font-size:.85rem;
}
.swatch .dot{ width:16px; height:16px; border-radius:50%; border:1px solid rgba(0,0,0,.15); }

/* ==========================================================================
   PARALLAX SECTION (testimonials / video CTA)
   ========================================================================== */
.parallax-section{
  position:relative;
  background-attachment:fixed;
  background-size:cover;
  background-position:center;
  color:var(--white);
}
.parallax-section::before{
  content:"";
  position:absolute; inset:0;
  background:rgba(15,38,32,.82);
}
.parallax-section > .container{ position:relative; z-index:1; }
@media (max-width:991.98px){
  .parallax-section{ background-attachment:scroll; } /* iOS Safari fix */
}

.quote-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius-md);
  padding:2rem;
  height:100%;
}
.quote-card i.fa-quote-left{ color:var(--yellow-500); font-size:1.4rem; margin-bottom:1rem; }

/* ==========================================================================
   TABLES (fees)
   ========================================================================== */
.table-fees{
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.table-fees thead th{
  background:var(--green-900);
  color:var(--white);
  font-family:var(--font-body);
  font-weight:700;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.6px;
  border:none;
  vertical-align:middle;
}
.table-fees tbody tr:nth-child(even){ background:var(--off-white); }
.table-fees td, .table-fees th{ padding:.85rem 1rem; vertical-align:middle; }
.table-fees tfoot td{ font-weight:700; background:#fff7d9; }

/* ==========================================================================
   ACCORDION overrides
   ========================================================================== */
.accordion-item{ border:1px solid var(--line); border-radius:var(--radius-md) !important; overflow:hidden; margin-bottom:.9rem; }
.accordion-button{ font-family:var(--font-display); font-weight:700; color:var(--green-900); }
.accordion-button:not(.collapsed){ background:var(--green-900); color:var(--white); }
.accordion-button:not(.collapsed)::after{ filter:invert(1); }
.accordion-button:focus{ box-shadow:0 0 0 3px rgba(241,196,15,.5); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-tile{
  display:flex; align-items:flex-start; gap:1.1rem;
  padding:1.6rem;
  border-radius:var(--radius-md);
  background:var(--off-white);
  border:1px solid var(--line);
  height:100%;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-tile:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.contact-tile .icon{
  width:52px; height:52px; flex-shrink:0;
  border-radius:50%;
  background:var(--green-900); color:var(--yellow-500);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
}
.social-orb{
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--green-900); color:var(--white);
  font-size:1.25rem;
  transition:transform .3s var(--ease), background .3s var(--ease);
}
.social-orb:hover{ background:var(--yellow-500); color:var(--green-950); transform:translateY(-4px) rotate(-6deg); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--green-950); color:rgba(255,255,255,.85); padding:4rem 0 0; }
.site-footer h5{ color:var(--white); font-size:1.05rem; }
.site-footer a{ color:rgba(255,255,255,.72); transition:color .25s var(--ease); }
.site-footer a:hover{ color:var(--yellow-500); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:2.5rem;
  padding:1.4rem 0;
  font-size:.85rem;
  display:flex; flex-wrap:wrap; gap:.6rem 1rem;
  align-items:center; justify-content:space-between;
}
.credit-badge{
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  padding:.4rem .9rem;
  border-radius:999px;
  font-size:.8rem;
}
.credit-badge:hover{ border-color:var(--yellow-500); }
.credit-badge i{ color:#25D366; }

/* Back to top */
.back-to-top{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:900;
  width:46px; height:46px; border-radius:50%;
  background:var(--yellow-500); color:var(--green-950);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-soft);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .3s var(--ease);
  border:none;
}
.back-to-top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--green-900); color:var(--white); }

/* Floating WhatsApp button */
.float-whatsapp{
  position:fixed; left:1.4rem; bottom:1.4rem; z-index:900;
  width:54px; height:54px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  box-shadow:var(--shadow-strong);
  transition:transform .3s var(--ease);
}
.float-whatsapp:hover{ transform:scale(1.08); color:#fff; }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-header{
  position:relative;
  padding:9.5rem 0 4rem;
  background:var(--green-900);
  color:var(--white);
  overflow:hidden;
}
.page-header .media-slot{ position:absolute; inset:0; opacity:.28; border:none; border-radius:0; }
.page-header::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,38,32,.55), rgba(15,38,32,.95));
}
.page-header .container{ position:relative; z-index:1; }
.breadcrumb-custom{ font-size:.85rem; color:rgba(255,255,255,.7); }
.breadcrumb-custom a:hover{ color:var(--yellow-500); }

/* ==========================================================================
   404
   ========================================================================== */
.error-page{ min-height:100vh; display:flex; align-items:center; background:var(--off-white); }
.error-code{ font-family:var(--font-display); font-size:clamp(5rem,18vw,10rem); color:var(--green-900); line-height:1; }

/* ==========================================================================
   MISC
   ========================================================================== */
.divider-yellow{ width:70px; height:4px; background:var(--yellow-500); border-radius:2px; margin:0 0 1.4rem; }
.stat-num{ font-family:var(--font-display); font-weight:700; color:var(--green-900); font-size:2.4rem; }
.bg-green .stat-num{ color:var(--yellow-500); }
::selection{ background:var(--yellow-500); color:var(--green-950); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible{ outline:3px solid var(--yellow-500); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
