/* ==========================================================================
   HUB GAS PREMIER SRL — brand stylesheet
   Structural DNA: Chapter Gates — each section shifts ground tone as the
   reader descends through the company's regulatory dossier.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,62..125,400;0,62..125,500;0,62..125,600;0,62..125,700;0,62..125,800;0,62..125,900;1,62..125,600&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --bg: #0A0E13;
  --bg-services: #12161B;
  --bg-vision: #0B1220;
  --bg-why: #14181D;
  --bg-sustain: #0B1512;
  --bg-partners: #0E131A;
  --panel: #10161D;
  --paper: #F5F1E8;
  --paper-ink: #14120D;
  --paper-muted: #6b6255;

  --ink: #F7F5F0;
  --ink-dim: #C7CCD1;
  --muted: #8A939C;
  --line: rgba(255,255,255,0.09);
  --line-strong: rgba(255,255,255,0.16);

  --accent: #F2A34D;
  --accent-dim: #B97C36;
  --sustain-accent: #6FBE96;

  --font-display: 'Archivo', 'IBM Plex Sans', -apple-system, sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.77, 0, 0.175, 1);

  --edge: clamp(1.5rem, 5vw, 6rem);
  --measure: 62ch;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; }

::selection{ background: var(--accent); color: #17110A; }

::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--bg); }
::-webkit-scrollbar-thumb{ background: #262d34; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover{ background: var(--accent-dim); }

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

p{ margin: 0 0 1.25em; max-width: var(--measure); }
p:last-child{ margin-bottom: 0; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}

.container{
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ---------------------------------- Nav ---------------------------------- */

.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--edge);
  border-bottom: 1px solid transparent;
  background: rgba(10,14,19,0);
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.site-nav.is-scrolled{
  background: rgba(10,14,19,0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px) saturate(120%);
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  white-space: nowrap;
}
.brand img{ width: 22px; height: 22px; }
.brand b{ font-weight: 500; }
.brand span{ color: var(--muted); font-weight: 400; }

.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 1.6rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.nav-links a .idx{ color: var(--accent-dim); margin-right: 0.35em; }
.nav-links a:hover, .nav-links a.active{ color: var(--ink); border-bottom-color: var(--accent); }
.nav-links a.active .idx{ color: var(--accent); }

.nav-status{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.pip{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sustain-accent);
  box-shadow: 0 0 0 3px rgba(111,190,150,0.15);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ box-shadow: 0 0 0 3px rgba(111,190,150,0.15); }
  50%{ box-shadow: 0 0 0 6px rgba(111,190,150,0.05); }
}

.nav-toggle{
  display: none;
  background: none; border: none; color: var(--ink);
  width: 32px; height: 32px; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-toggle span{ display: block; width: 100%; height: 1px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

/* ------------------------------- Hero ------------------------------- */

.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-photo{
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-pipeline.jpg");
  background-size: cover;
  background-position: center 35%;
  filter: saturate(0.85) contrast(1.05);
}
.hero-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,14,19,0.96) 32%, rgba(10,14,19,0.72) 55%, rgba(10,14,19,0.4) 100%),
    linear-gradient(0deg, rgba(10,14,19,1) 0%, rgba(10,14,19,0.55) 30%, rgba(10,14,19,0.55) 78%, rgba(10,14,19,0.96) 100%);
}

.hero-lines{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero-lines path{
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  animation: flow 34s linear infinite;
}
.hero-lines path:nth-child(2){ animation-duration: 44s; animation-direction: reverse; }
.hero-lines path:nth-child(3){ animation-duration: 52s; }
@keyframes flow{ to{ stroke-dashoffset: -1000; } }

.hero-glow{
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(242,163,77,0.14), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 2;
  padding: 140px var(--edge) 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow{ margin-bottom: 1.6rem; }

.hero h1{
  font-size: clamp(2.9rem, 8vw, 7.2rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.9rem;
}
.hero h1 em{ font-style: normal; color: var(--accent); font-weight: 800; }

.hero-sub{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 46ch;
  line-height: 1.75;
  font-weight: 300;
}

.hero-meta{
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}
.hero-meta div{ display: flex; flex-direction: column; gap: 0.35rem; }
.hero-meta .lbl{ font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hero-meta .val{ font-family: var(--font-mono); font-size: 0.92rem; color: var(--ink); }

.scroll-cue{
  position: absolute;
  bottom: 2.5rem; left: var(--edge);
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.scroll-cue .bar{ width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue{ 0%,100%{ transform: scaleY(1); opacity: 0.5; } 50%{ transform: scaleY(0.5); opacity: 1; } }

/* ------------------------------- Chapters ------------------------------- */

.chapter{
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--line);
}
.chapter--services{ background: var(--bg-services); }
.chapter--vision{ background: var(--bg-vision); }
.chapter--why{ background: var(--bg-why); }
.chapter--sustain{ background: var(--bg-sustain); }
.chapter--partners{ background: var(--bg-partners); }
.chapter--contact{ background: var(--bg); }
.chapter--support{ background: var(--bg-services); }

.chapter-head{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem 2.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.chapter-head .num{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-dim);
  letter-spacing: 0.05em;
}
.chapter-head h2{
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.chapter--sustain .chapter-head .num{ color: var(--sustain-accent); }

.chapter-rule{
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-top: 0.4rem;
}

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ------------------------------ Photo breaks ------------------------------ */

.break-img{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.break-img::before{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,14,19,0.98) 0%, rgba(10,14,19,0.35) 45%, rgba(10,14,19,0.55) 100%);
}
.break-img.tint-sustain::before{
  background:
    linear-gradient(0deg, rgba(11,21,18,0.98) 0%, rgba(11,21,18,0.3) 45%, rgba(11,21,18,0.6) 100%),
    linear-gradient(100deg, rgba(11,21,18,0.5), transparent 60%);
}
.break-img__quote{
  position: relative;
  z-index: 1;
  padding: 0 var(--edge) clamp(2.5rem, 6vw, 4.5rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.break-img__quote q{
  display: block;
  quotes: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 4.4vw, 3.4rem);
  color: var(--ink);
  max-width: 20ch;
  line-height: 1.08;
}
.break-img__quote cite{
  display: block;
  font-style: normal;
  margin-top: 1.1rem;
}

/* --------------------------------- About --------------------------------- */

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-copy p{ font-size: 1.05rem; color: var(--ink-dim); }
.about-copy p:first-of-type{ font-size: 1.2rem; color: var(--ink); font-weight: 300; }

.ledger{
  border: 1px solid var(--line-strong);
  background: var(--panel);
}
.ledger-title{
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.ledger-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
}
.ledger-row:last-child{ border-bottom: none; }
.ledger-row .k{ font-size: 0.76rem; color: var(--muted); letter-spacing: 0.03em; }
.ledger-row .v{ font-size: 0.92rem; color: var(--ink); text-align: right; }
.ledger-row .v.pending{ color: var(--accent); }
.ledger-row .v.pending::after{ content: " ·  IN PROGRESS"; color: var(--accent-dim); font-size: 0.68rem; letter-spacing: 0.06em; }

/* -------------------------------- Services -------------------------------- */

.service-rows{ border-top: 1px solid var(--line); }
.service-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem 2.5rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
}
.service-row .n{ font-family: var(--font-mono); font-size: 0.85rem; color: var(--accent-dim); padding-top: 0.2rem; }
.service-row p{ font-size: 1.08rem; color: var(--ink-dim); max-width: 68ch; margin: 0; }

/* -------------------------------- Vision -------------------------------- */

.manuscript{
  max-width: 74ch;
}
.manuscript p{
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--ink-dim);
}
.manuscript p:first-of-type::first-letter{
  font-family: var(--font-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.8;
  padding: 0.02em 0.1em 0 0;
  color: var(--accent);
  font-weight: 800;
}
.manuscript .divider{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.6rem 0;
  color: var(--accent-dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.manuscript .divider::after{ content: ""; flex: 1; height: 1px; background: var(--line-strong); }

/* --------------------------------- Why us --------------------------------- */

.why-layout{
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.why-side{ position: sticky; top: 100px; align-self: start; }
.why-side p{ color: var(--muted); font-size: 0.95rem; }
.why-copy p{ font-size: 1.05rem; color: var(--ink-dim); }
.why-copy p + p{ margin-top: 1.5em; }

/* ------------------------------ Sustainability ------------------------------ */

.sustain-banner{
  position: relative;
  height: 42vh;
  min-height: 280px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  background-image: url("/images/sustainability-valley.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
}
.sustain-banner::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,21,18,0.55) 0%, var(--bg-sustain) 100%);
}

.chapter--sustain h2, .chapter--sustain .eyebrow{ color: var(--sustain-accent); }
.chapter--sustain .eyebrow{ color: var(--sustain-accent); }
.sustain-copy{ max-width: 78ch; }
.sustain-copy p{ font-size: 1.06rem; color: var(--ink-dim); }

.sustain-marks{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}
.sustain-marks span{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sustain-accent);
  border: 1px solid rgba(111,190,150,0.35);
  padding: 0.55rem 0.9rem;
  border-radius: 100px;
}

/* -------------------------------- Partners -------------------------------- */

.partners-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.partners-copy p{ font-size: 1.05rem; color: var(--ink-dim); }

.network{ width: 100%; height: auto; }
.network circle.node{ fill: var(--panel); stroke: var(--line-strong); stroke-width: 1; }
.network circle.node.core{ fill: var(--accent); fill-opacity: 0.15; stroke: var(--accent); }
.network line{ stroke: var(--line-strong); stroke-width: 1; }
.network text{ font-family: var(--font-mono); font-size: 9px; fill: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

/* -------------------------------- Contact -------------------------------- */

.contact-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-copy p{ font-size: 1.08rem; color: var(--ink-dim); }

.contact-card{
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 2px;
}
.contact-card .eyebrow{ color: var(--accent-dim); margin-bottom: 1.5rem; }
.contact-line{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(20,18,13,0.14);
}
.contact-line:last-of-type{ border-bottom: none; }
.contact-line .k{ font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-muted); }
.contact-line .v{ font-family: var(--font-mono); font-size: 0.98rem; text-align: right; }
.contact-line a{ text-decoration: none; color: var(--paper-ink); border-bottom: 1px solid rgba(20,18,13,0.3); }
.contact-line a:hover{ border-color: var(--accent-dim); color: var(--accent-dim); }

.map-frame{
  margin-top: 1.75rem;
  border: 1px solid rgba(20,18,13,0.14);
  height: 220px;
  overflow: hidden;
}
.map-frame iframe{ width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }

/* -------------------------------- Support -------------------------------- */

.support-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.support-copy p{ font-size: 1.05rem; color: var(--ink-dim); }

.hours-block{
  border: 1px solid var(--line-strong);
  background: var(--panel);
  padding: 2rem;
}
.hours-block .ledger-title{ padding: 0 0 1rem; border: none; }
.hours-row{ display: flex; justify-content: space-between; padding: 0.85rem 0; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 0.85rem; }
.hours-row .k{ color: var(--muted); }
.hours-row .v{ color: var(--ink); }

/* --------------------------------- Footer --------------------------------- */

footer{
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 4rem 0 2.5rem;
}
.footer-top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand{ max-width: 32ch; }
.footer-brand .brand{ margin-bottom: 1rem; }
.footer-brand p{ font-size: 0.9rem; color: var(--muted); }

.footer-cols{ display: flex; gap: clamp(2.5rem, 6vw, 5rem); }
.footer-col h4{
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 400;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a{ text-decoration: none; font-size: 0.88rem; color: var(--ink-dim); transition: color 0.2s; }
.footer-col a:hover{ color: var(--accent); }

.footer-bottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.back-to-top{
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(16,22,29,0.9);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.3s;
  z-index: 50;
}
.back-to-top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover{ border-color: var(--accent); color: var(--accent); }

/* --------------------------------- Mobile nav --------------------------------- */

.mobile-panel{
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 55;
  background: rgba(10,14,19,0.98);
  backdrop-filter: blur(10px);
  padding: 2rem var(--edge);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  display: none;
}
.mobile-panel.is-open{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-panel ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-panel a{
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.mobile-panel .idx{ color: var(--accent-dim); margin-right: 0.6em; }

/* --------------------------------- Responsive --------------------------------- */

@media (max-width: 980px){
  .nav-links, .nav-status{ display: none; }
  .nav-toggle{ display: flex; }
  .mobile-panel{ display: block; }

  .about-grid, .why-layout, .partners-layout, .contact-layout, .support-layout{
    grid-template-columns: 1fr;
  }
  .why-side{ position: static; }
  .service-row{ grid-template-columns: 40px 1fr; }
  .footer-top{ flex-direction: column; }
  .footer-cols{ gap: 2.5rem 3rem; flex-wrap: wrap; }
}

@media (max-width: 560px){
  .hero-meta{ flex-direction: column; gap: 1.25rem; }
  .contact-line, .ledger-row{ flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .contact-line .v, .ledger-row .v{ text-align: left; }
}
