/* GRÜNRAUM — Garten- & Landschaftsbau · Demo · gestaltet von loew.me */

/* ---------- Tokens ---------- */
:root {
  --forest: #1f3d2b;
  --olive: #4a7c48;
  --olive-deep: #3a6238;
  --sand: #e7e0d2;
  --sand-soft: #efeade;
  --base: #f7f5ee;
  --ink: #22271f;
  --ink-soft: #55604f;
  --terracotta: #c1714b;
  --white: #ffffff;

  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 34px;
  --radius-xl: 52px;

  --shadow-s: 0 6px 20px rgba(31, 61, 43, .08);
  --shadow-m: 0 18px 44px rgba(31, 61, 43, .14);
  --shadow-l: 0 30px 70px rgba(31, 61, 43, .20);

  --maxw: 1200px;
  --gap: clamp(1.2rem, 4vw, 3rem);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-fast: .2s ease;
  --t-med: .45s cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--base);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .3vw, 1.12rem);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 1.6rem + 4vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); color: var(--ink); line-height: 1.55; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--olive);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; border-radius: 2px;
  background: var(--terracotta);
}
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p { margin-top: 1rem; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }
.btn--primary { background: var(--forest); color: var(--base); box-shadow: var(--shadow-s); }
.btn--primary:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn--ghost { background: transparent; color: var(--forest); box-shadow: inset 0 0 0 1.6px rgba(31,61,43,.28); }
.btn--ghost:hover { background: var(--white); transform: translateY(-2px); box-shadow: inset 0 0 0 1.6px var(--olive), var(--shadow-s); }
.btn--light { background: var(--base); color: var(--forest); }
.btn--light:hover { background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn .arw { transition: transform var(--t-fast); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
  padding-block: 1.1rem;
}
.site-header.solid {
  background: rgba(247, 245, 238, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(31,61,43,.08), var(--shadow-s);
  padding-block: .7rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--forest); }
.brand .leaf {
  width: 30px; height: 30px; border-radius: 60% 20% 60% 20%/60% 20% 60% 20%;
  background: linear-gradient(140deg, var(--olive), var(--forest));
  flex: none; box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}
.brand b { font-weight: 600; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: .4rem; }
.nav-links a {
  position: relative; padding: .5rem .85rem; border-radius: 999px;
  font-weight: 500; color: var(--ink-soft); font-size: .98rem;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--forest); background: rgba(74,124,72,.10); }
.nav-links a.active { color: var(--forest); background: rgba(74,124,72,.14); }
.nav-cta { margin-left: .4rem; }
.nav-links a.btn:hover { background: var(--olive-deep); color: var(--base); }

/* Hamburger */
.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  align-items: center; justify-content: center; background: rgba(74,124,72,.10);
}
.burger span { display: block; width: 20px; height: 2px; background: var(--forest); border-radius: 2px; position: relative; transition: transform var(--t-fast), opacity var(--t-fast); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform var(--t-fast); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2rem, 4vw, 3rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero-copy { max-width: 34rem; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-l); aspect-ratio: 4 / 5;
  background: var(--sand);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(247,245,238,.92); backdrop-filter: blur(8px);
  padding: .8rem 1.1rem; border-radius: var(--radius-m); box-shadow: var(--shadow-m);
  display: flex; align-items: center; gap: .7rem;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px rgba(74,124,72,.2); }
.hero-badge strong { color: var(--forest); font-weight: 600; }
.hero-badge span { display: block; font-size: .82rem; color: var(--ink-soft); }

/* Floating blobs */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5;
  background: radial-gradient(circle at 35% 35%, rgba(74,124,72,.5), rgba(31,61,43,.15));
  animation: float 14s ease-in-out infinite;
}
.blob.b1 { width: 260px; height: 260px; top: -60px; right: -40px; }
.blob.b2 { width: 180px; height: 180px; bottom: 8%; left: -60px; animation-delay: -5s; background: radial-gradient(circle at 40% 40%, rgba(193,113,75,.35), rgba(193,113,75,.05)); }
.blob.b3 { width: 130px; height: 130px; top: 40%; right: 8%; animation-delay: -9s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(14px, -22px) scale(1.06); }
  66% { transform: translate(-12px, 12px) scale(.96); }
}

/* ---------- Stats / counters ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem, 1.8rem + 3vw, 4rem); font-weight: 500; color: var(--forest); line-height: 1; }
.stat .num .suffix { color: var(--terracotta); }
.stat .label { margin-top: .6rem; color: var(--ink-soft); font-weight: 500; }
.stats-band { background: var(--sand-soft); border-radius: var(--radius-l); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: clamp(1.2rem, 3vw, 1.8rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius-l); padding: 2rem;
  box-shadow: var(--shadow-s); transition: transform var(--t-med), box-shadow var(--t-med);
  border: 1px solid rgba(31,61,43,.05);
  display: flex; flex-direction: column; gap: .8rem;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-m); }
.card .ico {
  width: 54px; height: 54px; border-radius: 40% 60% 55% 45%/55% 45% 55% 45%;
  display: grid; place-items: center; background: rgba(74,124,72,.12); color: var(--olive-deep);
  margin-bottom: .3rem; transition: transform var(--t-med), border-radius var(--t-med), background var(--t-fast);
}
.card:hover .ico { transform: rotate(-6deg) scale(1.05); border-radius: 55% 45% 40% 60%/45% 55% 45% 55%; background: rgba(74,124,72,.2); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { color: var(--forest); }
.card p { font-size: .98rem; }
.card .more { margin-top: auto; padding-top: .6rem; font-weight: 600; color: var(--olive-deep); display: inline-flex; align-items: center; gap: .4rem; }
.card .more .arw { transition: transform var(--t-fast); }
.card:hover .more .arw { transform: translateX(4px); }

/* ---------- Philosophy split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 5/4; position: relative; background: var(--sand); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: 1.1rem; }
.split-copy p + p { margin-top: 1rem; }
.check-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.check-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(74,124,72,.15); color: var(--olive-deep); display: grid; place-items: center; margin-top: .1rem; }
.check-list .tick svg { width: 14px; height: 14px; }

/* ---------- Parallax band ---------- */
.parallax {
  position: relative; min-height: clamp(320px, 45vw, 520px);
  border-radius: var(--radius-l); overflow: hidden; display: grid; place-items: center;
  box-shadow: var(--shadow-m);
}
.parallax .px-img { position: absolute; inset: -12% 0; width: 100%; height: 124%; }
.parallax .px-img img { width: 100%; height: 100%; object-fit: cover; }
.parallax::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,61,43,.35), rgba(31,61,43,.68)); }
.parallax .px-content { position: relative; z-index: 2; text-align: center; color: var(--base); max-width: 40rem; padding: 2rem; }
.parallax .px-content h2 { color: var(--base); }
.parallax .px-content p { color: rgba(247,245,238,.9); margin-top: 1rem; }
.parallax .px-content .btn { margin-top: 1.6rem; }

/* ---------- Projects gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.9rem, 2vw, 1.4rem); }
.tile {
  position: relative; border-radius: var(--radius-m); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-s); background: var(--sand);
}
.tile.wide { grid-column: span 2; aspect-ratio: 8/5; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.tile:hover img { transform: scale(1.07); }
.tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.2rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(31,61,43,.82));
  color: var(--base); transform: translateY(14px); opacity: 0;
  transition: transform var(--t-med), opacity var(--t-med);
}
.tile:hover figcaption, .tile:focus-within figcaption { transform: translateY(0); opacity: 1; }
.tile figcaption .k { font-family: var(--font-head); font-size: 1.2rem; color: var(--base); }
.tile figcaption .m { font-size: .85rem; color: rgba(247,245,238,.85); display: block; margin-top: .15rem; }
.tile .tag { position: absolute; top: .9rem; left: .9rem; background: rgba(247,245,238,.9); color: var(--forest); font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.member { text-align: center; }
.member .ph {
  aspect-ratio: 1; border-radius: var(--radius-l); overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(150deg, var(--sand), var(--sand-soft)); display: grid; place-items: center;
  box-shadow: var(--shadow-s); transition: transform var(--t-med);
}
.member:hover .ph { transform: translateY(-6px); }
.member .ph span { font-family: var(--font-head); font-size: 2.6rem; color: var(--olive); }
.member h3 { font-size: 1.2rem; }
.member .role { color: var(--terracotta); font-weight: 600; font-size: .9rem; }
.member .bio { font-size: .92rem; margin-top: .5rem; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.value { background: var(--white); border-radius: var(--radius-m); padding: 1.8rem; box-shadow: var(--shadow-s); border-top: 3px solid var(--olive); }
.value h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.value p { font-size: .95rem; }

/* ---------- Service detail rows ---------- */
.svc { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-m); background: var(--sand); position: relative; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-media .num-badge { position: absolute; top: 1rem; left: 1rem; width: 46px; height: 46px; border-radius: 50%; background: rgba(247,245,238,.92); color: var(--forest); font-family: var(--font-head); font-size: 1.3rem; display: grid; place-items: center; box-shadow: var(--shadow-s); }
.svc-copy h2 { margin-bottom: 1rem; }
.svc-copy .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.3rem; }
.svc-copy .tags span { background: rgba(74,124,72,.1); color: var(--olive-deep); font-size: .82rem; font-weight: 500; padding: .35rem .8rem; border-radius: 999px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.info-card { background: var(--white); border-radius: var(--radius-l); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-s); }
.info-list { display: grid; gap: 1.2rem; margin-top: 1.4rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ico { flex: none; width: 42px; height: 42px; border-radius: 40% 60% 55% 45%/55% 45% 55% 45%; background: rgba(74,124,72,.12); color: var(--olive-deep); display: grid; place-items: center; }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list b { color: var(--forest); display: block; }
.info-list span, .info-list a { color: var(--ink-soft); }
.info-list a:hover { color: var(--olive-deep); }

.map-ph {
  margin-top: 1.4rem; border-radius: var(--radius-m); overflow: hidden; position: relative;
  aspect-ratio: 16/9; background:
    linear-gradient(135deg, #dfe6d5, #eef0e4);
  box-shadow: inset 0 0 0 1px rgba(31,61,43,.08);
  display: grid; place-items: center;
}
.map-ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,124,72,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,72,.12) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-ph .pin { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem; color: var(--forest); font-weight: 600; }
.map-ph .pin .marker { width: 20px; height: 20px; border-radius: 50% 50% 50% 0; background: var(--terracotta); transform: rotate(-45deg); box-shadow: 0 6px 14px rgba(193,113,75,.4); }

/* Form */
.form { background: var(--white); border-radius: var(--radius-l); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-s); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-weight: 600; color: var(--forest); margin-bottom: .4rem; font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-s);
  border: 1.6px solid rgba(31,61,43,.14); background: var(--base);
  font: inherit; color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); background: var(--white);
  box-shadow: 0 0 0 4px rgba(74,124,72,.14);
}
.form .btn { width: 100%; justify-content: center; margin-top: .4rem; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.form-success { display: none; background: rgba(74,124,72,.12); color: var(--olive-deep); border-radius: var(--radius-s); padding: 1rem 1.2rem; font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .lead { margin-top: 1.1rem; max-width: 42rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--forest), var(--olive-deep)); border-radius: var(--radius-l); padding: clamp(2.5rem, 5vw, 4.5rem); text-align: center; color: var(--base); box-shadow: var(--shadow-m); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(193,113,75,.35), transparent 70%); top: -120px; right: -80px; }
.cta-band h2 { color: var(--base); position: relative; }
.cta-band p { color: rgba(247,245,238,.9); margin: 1rem auto 1.8rem; max-width: 34rem; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: rgba(247,245,238,.75); margin-top: clamp(3rem, 6vw, 6rem); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-grid .brand { color: var(--base); margin-bottom: 1rem; }
.footer-grid p { color: rgba(247,245,238,.7); font-size: .95rem; max-width: 26rem; }
.footer-col h4 { color: var(--base); font-family: var(--font-body); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.footer-col a, .footer-col li { color: rgba(247,245,238,.72); font-size: .96rem; line-height: 2.1; }
.footer-col a:hover { color: var(--base); }
.footer-bottom { border-top: 1px solid rgba(247,245,238,.14); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center; font-size: .88rem; }
.footer-bottom a { color: rgba(247,245,238,.85); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/11; order: -1; max-height: 60vh; }
  .split, .svc, .contact-grid { grid-template-columns: 1fr; }
  .svc:nth-child(even) .svc-media { order: 0; }
  .split-media, .svc-media { order: -1; }
  .grid-3, .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .values { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile.wide { grid-column: span 2; }
}
@media (max-width: 780px) {
  .burger { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .3rem;
    background: var(--base); padding: 5.5rem 1.4rem 2rem; box-shadow: var(--shadow-l);
    transform: translateX(100%); transition: transform var(--t-med); z-index: 90;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: .9rem 1rem; font-size: 1.05rem; }
  .nav-links a.btn { justify-content: center; margin-top: .6rem; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(31,61,43,.4); opacity: 0; visibility: hidden; transition: opacity var(--t-med); z-index: 80; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
  .grid-3, .grid-2, .stats, .team-grid, .values, .gallery, .field-row { grid-template-columns: 1fr; }
  .tile.wide { grid-column: span 1; aspect-ratio: 4/5; }
  .stat { padding: .5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 1.6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .blob { display: none; }
}
