@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  --forest: #2E2A22;
  --forest-light: #4A4438;
  --gold: #B87F2A;
  --gold-light: #E3B266;
  --sage: #5C7857;
  --paper: #FFFFFF;
  --paper-dark: #F1E8D6;
  --ink: #2E2A22;
  --ink-soft: #6B6354;
  --ink-faint: #9C9483;
  --line: #E2D9C4;
  --white: #FFFFFF;
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --max: 1120px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}

/* ---------- Grain texture ---------- */
.texture{ position:relative; }
.texture::after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  opacity:.5; mix-blend-mode:overlay;
  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.35'/%3E%3C/svg%3E");
}

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform:none; }

/* ---------- Certification highlight strip (home) ---------- */
.cert-highlight{ background: var(--paper-dark); padding:26px 0; }
.cert-highlight-track{ display:flex; flex-wrap:nowrap; justify-content:center; gap:8px; }
.cert-badge{
  display:flex; align-items:center; gap:7px; padding:10px 14px; border:1px solid var(--line);
  background: var(--white); border-radius:2px; transition: background .2s ease, border-color .2s ease;
  white-space:nowrap; flex-shrink:0;
}
.cert-badge:hover{ border-color: var(--gold); }
.cert-badge .ring{
  width:20px; height:20px; border-radius:50%; border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cert-badge .ring svg{ width:9px; height:9px; }
.cert-badge span{ font-family: var(--font-mono); font-size:10px; letter-spacing:.04em; text-transform:uppercase; color: var(--forest); white-space:nowrap; }
@media (max-width:1000px){
  .cert-highlight{ overflow-x:auto; }
  .cert-highlight-track{ justify-content:flex-start; padding:0 24px; width:max-content; margin:0 auto; }
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{ max-width: var(--max); margin:0 auto; padding:0 32px; }

h1,h2,h3{ font-family: var(--font-display); font-weight:500; line-height:1.1; color: var(--forest); }
h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight:600; }
h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3{ font-size: 1.25rem; }
.eyebrow{
  font-family: var(--font-mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold); display:flex; align-items:center; gap:10px; margin-bottom:14px;
}
.eyebrow::before{ content:""; width:22px; height:1px; background:var(--gold); display:inline-block; }
.lede{ color: var(--ink-soft); font-size:1.08rem; max-width:640px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px; font-family: var(--font-body); font-weight:600;
  font-size:14px; letter-spacing:.02em; padding:13px 26px; border-radius:2px; border:1px solid transparent;
  cursor:pointer; transition: all .15s ease;
}
.btn-primary{ background: var(--gold); color: var(--white); }
.btn-primary:hover{ background: var(--forest); }
.btn-ghost{ border-color: var(--forest); color: var(--forest); }
.btn-ghost:hover{ background: var(--forest); color: var(--paper); }
.btn-on-dark{ border-color: var(--ink-faint); color: var(--forest); }
.btn-on-dark:hover{ background: var(--forest); color: var(--white); }

/* ---------- Nav ---------- */
.site-nav{
  position: sticky; top:0; z-index:50; background: var(--paper);
  border-bottom:1px solid var(--line);
}
.site-nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:82px; }
.logo{ font-family: var(--font-display); font-weight:600; font-size:20px; color: var(--forest); letter-spacing:.01em; display:inline-flex; align-items:center; gap:10px; }
.logo-icon-img{ height:58px; width:auto; display:block; }
.logo span{ color: var(--gold); }
.footer-logo-link{ display:inline-block; margin-bottom:18px; }
.logo-combined-img{ height:70px; width:auto; display:block; }
.nav-links{ display:flex; gap:36px; font-size:14px; font-weight:500; }
.nav-links a{ color: var(--ink-soft); position:relative; padding-bottom:4px; }
.nav-links a:hover, .nav-links a.active{ color: var(--forest); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--gold);
}
.nav-cta{ display:flex; align-items:center; gap:24px; }
.menu-toggle{ display:none; background:none; border:none; font-size:24px; cursor:pointer; color:var(--forest); }

/* ---------- Hero (home) ---------- */
.hero{
  position:relative; min-height:640px; display:flex; align-items:flex-end;
  background: var(--paper-dark) url('../images/hero-beige.jpg') center/cover no-repeat;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(241,232,214,.1) 0%, rgba(241,232,214,.94) 88%);
}
.hero-inner{ position:relative; z-index:2; padding:90px 0 96px; color: var(--forest); }
.hero .eyebrow-badge{
  display:inline-flex; align-items:center; gap:10px; font-family: var(--font-mono); font-size:15px;
  font-weight:500; letter-spacing:.1em; text-transform:uppercase; color: var(--gold);
  border:1px solid var(--gold-light); background: rgba(255,255,255,.75);
  padding:9px 18px; border-radius:2px; margin-bottom:20px;
}
.hero h1{ color: var(--forest); max-width:860px; font-size: clamp(2.8rem, 6.2vw, 4.6rem); }
.hero-sub{ color: var(--ink-soft); font-size:1.2rem; max-width:580px; margin:22px 0 36px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
.stamp{
  position:absolute; top:240px; right:40px; z-index:2; width:150px; height:150px;
  display:flex; align-items:center; justify-content:center; text-align:center; color: var(--forest);
}
.stamp-ring{
  position:absolute; inset:0; border-radius:50%;
  border:1.5px dashed var(--gold);
  animation: spin-stamp 22s linear infinite;
}
.stamp-ring::before{
  content:""; position:absolute; top:-4px; left:50%; width:8px; height:8px; margin-left:-4px;
  border-radius:50%; background: var(--gold);
}
.stamp-ring-outer{
  position:absolute; inset:-16px; border-radius:50%; border:1px solid rgba(46,42,34,.2);
}
.stamp-inner{ position:relative; z-index:2; font-family: var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; line-height:1.5; }
.stamp-inner strong{ display:block; font-size:16px; letter-spacing:.02em; margin-bottom:2px; color: var(--gold); }
@keyframes spin-stamp{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

/* ---------- Sections ---------- */
.section{ padding:96px 0; border-bottom:1px solid var(--line); }
.section:last-of-type{ border-bottom:none; }
.section-dark{ background: var(--paper-dark); color: var(--forest); border-bottom:none; }
.section-dark h2{ color: var(--forest); }
.section-dark .eyebrow{ color: var(--gold); }
.section-dark .eyebrow::before{ background: var(--gold); }
.section-alt{ background: var(--paper-dark); }
.section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:40px; margin-bottom:52px; flex-wrap:wrap; }

/* ---------- Grids ---------- */
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background: var(--line); border:1px solid var(--line); }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }

/* ---------- Pillar cards ---------- */
.pillar{ background: var(--paper); padding:40px 28px; transition: background .2s ease; position:relative; text-align:center; }
.pillar:hover{ background: var(--white); }
.pillar:hover::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--gold); }
.pillar-num{ font-family: var(--font-mono); font-size:12px; color: var(--gold); margin-bottom:14px; }
.pillar h3{ margin-bottom:10px; }
.pillar p{ color: var(--ink-soft); font-size:14px; }
.icon{ width:64px; height:64px; margin-bottom:20px; }

/* ---------- Checkpoint animation (Global reach) ---------- */
.checkpoint-rail{ position:relative; height:2px; background:var(--line); margin:0 2% 0; }
.checkpoint-rail-fill{ position:absolute; top:0; left:0; height:100%; width:0%; background:var(--gold); }
.checkpoint-rail-fill.animate{ animation: railFill 6.7s ease 1s forwards; }
@keyframes railFill{ to{ width:100%; } }

.checkpoint-ship{
  position:absolute; top:50%; left:0; width:60px; height:auto;
  transform:translate(-30px,-50%); opacity:0;
}
.checkpoint-ship.animate{ animation: shipMove 7.6s ease 1s forwards; }
@keyframes shipMove{
  0%{ left:0%; opacity:0; }
  3%{ opacity:1; }
  97%{ opacity:1; }
  100%{ left:100%; opacity:1; }
}

.checkpoint-steps{ display:flex; justify-content:space-between; margin-top:-15px; }
.checkpoint-step{
  width:19%; text-align:center; opacity:0; transform:translateY(14px) scale(.94);
}
.checkpoint-step.animate{ animation: stepIn 2.1s cubic-bezier(.2,.8,.3,1.3) forwards; }
.checkpoint-step:nth-child(1).animate{ animation-delay:.55s; }
.checkpoint-step:nth-child(2).animate{ animation-delay:1.6s; }
.checkpoint-step:nth-child(3).animate{ animation-delay:2.6s; }
.checkpoint-step:nth-child(4).animate{ animation-delay:3.65s; }
.checkpoint-step:nth-child(5).animate{ animation-delay:4.65s; }
@keyframes stepIn{ to{ opacity:1; transform:translateY(0) scale(1); } }

.checkpoint-num{
  width:30px; height:30px; border-radius:50%; background:var(--paper); border:2px solid var(--line);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
  font-family: var(--font-mono); font-size:12px; color:var(--ink-faint);
}
.checkpoint-num.animate{ animation: numPop 1.9s ease forwards; }
.checkpoint-step:nth-child(1) .checkpoint-num.animate{ animation-delay:2.1s; }
.checkpoint-step:nth-child(2) .checkpoint-num.animate{ animation-delay:3.1s; }
.checkpoint-step:nth-child(3) .checkpoint-num.animate{ animation-delay:4.05s; }
.checkpoint-step:nth-child(4) .checkpoint-num.animate{ animation-delay:5.15s; }
.checkpoint-step:nth-child(5) .checkpoint-num.animate{ animation-delay:6.15s; }
@keyframes numPop{
  0%{ border-color:var(--line); background:var(--paper); color:var(--ink-faint); transform:scale(1); }
  45%{ border-color:var(--gold); background:var(--gold); color:var(--white); transform:scale(1.22); }
  100%{ border-color:var(--gold); background:var(--gold); color:var(--white); transform:scale(1); }
}

.checkpoint-step h3{ font-family: var(--font-display); font-weight:600; font-size:16px; color:var(--forest); margin-bottom:6px; position:relative; display:inline-block; }
.checkpoint-step h3::after{
  content:""; position:absolute; left:50%; bottom:-4px; width:0; height:1.5px; background:var(--gold-light);
  transform:translateX(-50%);
}
.checkpoint-step:nth-child(1).animate h3::after{ animation: underline 1s ease 2.8s forwards; }
.checkpoint-step:nth-child(2).animate h3::after{ animation: underline 1s ease 3.9s forwards; }
.checkpoint-step:nth-child(3).animate h3::after{ animation: underline 1s ease 4.9s forwards; }
.checkpoint-step:nth-child(4).animate h3::after{ animation: underline 1s ease 5.9s forwards; }
.checkpoint-step:nth-child(5).animate h3::after{ animation: underline 1s ease 6.9s forwards; }
@keyframes underline{ to{ width:28px; } }

.checkpoint-step p{ color:var(--ink-soft); font-size:12.5px; line-height:1.55; margin-top:10px; }

/* ---------- Product cards ---------- */
.product-card{ background: var(--white); border:1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(46,42,34,.12); }
.product-card .thumb{ height:240px; position:relative; overflow:hidden; }
.product-card .body{ padding:26px 24px; }
.product-card .tag{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); margin-bottom:8px; }
.product-card h3{ margin-bottom:10px; }
.product-card p{ color: var(--ink-soft); font-size:14px; margin-bottom:16px; }
.product-card .more{ font-size:13px; font-weight:600; color: var(--forest); display:inline-flex; align-items:center; gap:6px; }

/* ---------- Carousel (product image galleries) ---------- */
.carousel{ position:relative; width:100%; height:100%; overflow:hidden; background: var(--paper-dark); }
.thumb-lg{ height:340px; border:1px solid var(--line); position:relative; overflow:hidden; }
.carousel-track{ display:flex; width:100%; height:100%; transition: transform .5s ease; }
.carousel-slide{ flex:0 0 100%; height:100%; background-size:cover; background-position:center; }
.carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%); width:30px; height:30px; border-radius:50%;
  background: rgba(245,242,233,.92); border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:3; transition: background .2s ease; padding:0;
}
.carousel-arrow:hover{ background: var(--white); }
.carousel-arrow svg{ width:14px; height:14px; }
.carousel-arrow.prev{ left:10px; }
.carousel-arrow.next{ right:10px; }
.carousel-dots{ position:absolute; bottom:12px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:3; }
.carousel-dot{ width:6px; height:6px; border-radius:50%; background: rgba(245,242,233,.55); cursor:pointer; border:none; padding:0; transition: background .2s ease; }
.carousel-dot.active{ background: var(--gold-light); width:16px; border-radius:3px; }
.carousel-count{
  position:absolute; top:10px; right:10px; z-index:3; font-family: var(--font-mono); font-size:10px;
  color: var(--paper); background: rgba(46,42,34,.65); padding:3px 8px; border-radius:2px; letter-spacing:.04em;
}

/* ---------- Certification strip ---------- */
.cert-strip{ display:flex; gap:14px; flex-wrap:wrap; }
.cert-chip{
  border:1px solid var(--line); padding:14px 20px; font-family: var(--font-mono); font-size:12px;
  letter-spacing:.04em; color: var(--ink-soft); background: var(--white); display:flex; align-items:center; gap:10px;
}
.cert-chip .dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); }

/* ---------- Route divider ---------- */
.route{
  display:flex; align-items:center; gap:10px; color: var(--ink-faint); font-family: var(--font-mono);
  font-size:11px; letter-spacing:.08em; text-transform:uppercase; margin: 56px 0;
}
.route::before, .route::after{ content:""; flex:1; height:0; border-top:1px dashed var(--line); }

/* ---------- CTA band ---------- */
.cta-band{ text-align:center; padding:88px 0; }
.cta-band h2{ margin-bottom:24px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--paper-dark); color: var(--ink-soft); padding:64px 0 28px; border-top:1px solid var(--line); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:48px; }
.site-footer p{ font-size:14px; line-height:1.7; }
.footer-col h4{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); margin-bottom:18px; }
.footer-col a, .footer-col li{ font-size:14px; margin-bottom:10px; color: var(--ink-soft); }
.footer-col a:hover{ color: var(--forest); }
.footer-bottom{ border-top:1px solid var(--line); padding-top:24px; font-size:12px; display:flex; justify-content:space-between; color: var(--ink-faint); flex-wrap:wrap; gap:10px; }

/* ---------- Page header (inner pages) ---------- */
.page-header{ padding:72px 0 56px; background: var(--paper-dark); border-bottom:1px solid var(--line); position:relative; overflow:hidden; }
.page-header .wrap{ position:relative; z-index:2; }
.section.texture, .section-dark.texture{ position:relative; overflow:hidden; }
.section.texture .wrap, .section-dark.texture .wrap{ position:relative; z-index:2; }
.page-header .eyebrow{ margin-bottom:18px; }
.page-header .lede{ margin-top:16px; }

/* ---------- Spec table ---------- */
.spec-table{ width:100%; border-collapse:collapse; font-size:14px; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table tr:last-child{ border-bottom:none; }
.spec-table td{ padding:13px 0; vertical-align:top; }
.spec-table td:first-child{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.05em; color: var(--ink-faint); width:38%; }
.spec-table td:last-child{ color: var(--ink); font-weight:500; }

/* ---------- Compliance columns ---------- */
.compliance-col{ background: var(--white); border:1px solid var(--line); padding:36px 32px; }
.compliance-col h3{ margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.compliance-col ul li{ display:flex; gap:12px; padding:10px 0; border-top:1px solid var(--line); font-size:14px; color: var(--ink-soft); }
.compliance-col ul li:first-child{ border-top:none; }
.compliance-col ul li::before{ content:"—"; color: var(--gold); flex-shrink:0; }

/* ---------- Standards cards (highlighted) ---------- */
.standard-card{ background: var(--white); border:1px solid var(--line); overflow:hidden; }
.standard-head{ background: var(--paper-dark); padding:28px 32px; display:flex; align-items:center; gap:16px; border-bottom:1px solid var(--line); }
.standard-icon{
  width:46px; height:46px; border-radius:50%; background: rgba(184,127,42,.12); border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.standard-icon svg{ width:22px; height:22px; }
.standard-head h3{ color: var(--forest); margin:0; }
.standard-list{ padding:6px 32px 26px; }
.standard-list li{ display:flex; align-items:flex-start; gap:12px; padding:15px 0; border-top:1px solid var(--line); font-size:14.5px; color: var(--ink); font-weight:500; }
.standard-list li:first-child{ border-top:none; }
.standard-list li svg{ flex-shrink:0; margin-top:2px; width:17px; height:17px; }

/* ---------- Compliance stamp cards ---------- */
.stamp-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.stamp-card{
  background: var(--white); border:1px solid var(--line); padding:32px 26px; position:relative;
  transition: border-color .2s ease, transform .2s ease;
}
.stamp-card:hover{ border-color: var(--gold); transform: translateY(-4px); }
.stamp-card .stamp-seal{
  width:56px; height:56px; border-radius:50%; border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; position:relative;
}
.stamp-card .stamp-seal::before{
  content:""; position:absolute; inset:-6px; border-radius:50%; border:1px dashed var(--gold-light);
}
.stamp-card .stamp-seal svg{ width:24px; height:24px; }
.stamp-card h4{ font-family: var(--font-display); font-size:17px; color: var(--forest); margin-bottom:8px; font-weight:500; }
.stamp-card p{ font-size:13.5px; color: var(--ink-soft); line-height:1.65; }
.stamp-card .stamp-status{
  display:inline-flex; align-items:center; gap:6px; font-family: var(--font-mono); font-size:10px;
  letter-spacing:.06em; text-transform:uppercase; color: var(--gold); margin-top:14px;
}

/* ---------- Process steps ---------- */
.process{ counter-reset: step; }
.process-step{ display:flex; gap:28px; padding:32px 0; border-top:1px solid var(--line); }
.process-step:first-child{ border-top:none; }
.step-num{
  font-family: var(--font-display); font-size:32px; color: var(--gold); flex-shrink:0; width:64px;
}
.step-body h3{ margin-bottom:8px; }
.step-body p{ color: var(--ink-soft); font-size:14px; max-width:520px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:56px; align-items:start; }
.form-card{ background: var(--white); border:1px solid var(--line); padding:40px; }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:12px; font-family: var(--font-mono); text-transform:uppercase; letter-spacing:.05em; color: var(--ink-faint); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; border:1px solid var(--line); background: var(--paper); padding:12px 14px; font-family: var(--font-body);
  font-size:14px; color: var(--ink); border-radius:2px;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color: var(--forest); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-note{ font-size:12px; color: var(--ink-faint); margin-top:14px; }
.info-card{ border:1px solid var(--line); background: var(--white); padding:32px; margin-bottom:20px; }
.info-card h4{ font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: var(--gold); margin-bottom:10px; }
.info-card p{ font-size:15px; color: var(--ink); }
.map-embed{ border:1px solid var(--line); overflow:hidden; height:220px; }
.map-embed iframe{ width:100%; height:100%; border:0; filter: grayscale(30%); }
.form-success{ display:none; background: var(--paper-dark); color: var(--forest); padding:32px; text-align:center; border:1px solid var(--line); }
.form-success.show{ display:block; }
.form-success h3{ color: var(--forest); margin-bottom:8px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; gap:32px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .nav-links{ display:none; }
  .menu-toggle{ display:block; }
  .field-row{ grid-template-columns:1fr; }
  .stamp{ display:none; }
  .stamp-grid{ grid-template-columns:1fr; }
}

@media (max-width: 560px){
  .site-nav .wrap{ padding:0 16px; height:68px; }
  .logo{ font-size:14px; gap:6px; }
  .logo-icon-img{ height:38px; }
  .nav-cta{ gap:10px; }
  .nav-cta .btn-primary{ padding:9px 14px; font-size:11px; }
  .menu-toggle{ font-size:20px; }

  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .logo-combined-img{ height:78px; }
}

