/* ---------- Brand tokens ---------- */
:root {
  --paper: #F4F1EA;
  --paper-2: #EBE6DA;
  --paper-3: #DFD9C8;
  --ink: #0E0E12;
  --ink-2: #1B1B22;
  --ink-3: #2C2C36;
  --muted: #6B6B72;
  --line: #1B1B22;

  --teal: #1F8F8A;
  --teal-deep: #146460;
  --teal-haze: #C6E1DE;
  --purple: #3B2F5C;
  --moss: #5A6B3A;
  --yolk: #F2C84B;

  --maxw: 1440px;
  --gutter: clamp(24px, 4vw, 80px);

  --font-display: "Special Gothic Expanded One", "Arial Black", sans-serif;
  --font-body: "Sofia Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.45;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0; line-height: 0.92; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink);
}
.label-num {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}
.body-lg { font-size: 20px; line-height: 1.5; }
.body-sm { font-size: 15px; line-height: 1.5; color: var(--ink-2); }

/* ---------- Murmuration dot pattern (radial gradient stipple) ---------- */
.stipple {
  background-image: radial-gradient(circle at 1px 1px, var(--ink) 0.7px, transparent 1.2px);
  background-size: 14px 14px;
}
.stipple-fade-bottom {
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
          mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.stipple-fade-top {
  -webkit-mask-image: linear-gradient(to top, black, transparent 90%);
          mask-image: linear-gradient(to top, black, transparent 90%);
}

/* topographic fine-line wave overlay using SVG bg */
.topo {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'><g fill='none' stroke='%231B1B22' stroke-opacity='0.08' stroke-width='0.6'><path d='M0,120 Q150,60 300,120 T600,120'/><path d='M0,180 Q150,120 300,180 T600,180'/><path d='M0,240 Q150,180 300,240 T600,240'/><path d='M0,300 Q150,240 300,300 T600,300'/><path d='M0,360 Q150,300 300,360 T600,360'/><path d='M0,420 Q150,360 300,420 T600,420'/><path d='M0,480 Q150,420 300,480 T600,480'/></g></svg>");
  background-size: 600px 600px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  color: #fff;
  mix-blend-mode: normal;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-light {
  background: rgba(244, 241, 234, 0.94);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 15px;
}
.nav .brand .bird {
  width: 28px; height: 28px;
  background-image: url("assets/favicon.jpg");
  background-size: 130%; background-position: 50% 40%;
  border-radius: 0;
}
.nav .links {
  display: flex; gap: 28px; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav .links a { position: relative; padding: 6px 0; }
.nav .links a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
}
.nav .cta {
  border: 1px solid currentColor;
  padding: 9px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: inherit;
  transition: background 0.2s, color 0.2s;
}
.nav .cta:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

@media (max-width: 720px) {
  .nav .links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
  background: #0a0a0d;
  color: #fff;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
}

/* Soft top/bottom scrim so the meta + tagline + nav read cleanly,
   but leave the middle (where the wordmark sits) alone */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 22%),
    linear-gradient(0deg,   rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 28%);
}

/* Wordmark stage — sits between the framing trees */
.hero-wordmark-stage {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 12vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-align: center;
  /* push slightly up so it sits over sky+horizon rather than centered */
  transform: translateY(-4%);
}
.hero-wordmark .word { display: block; }
.hero-wordmark .word-starling {
  color: #F4F1EA;
  text-shadow:
    0 1px 0 rgba(0,0,0,0.18),
    0 4px 24px rgba(0,0,0,0.35);
}
.hero-wordmark .word-tree {
  color: #ffffff;
  -webkit-text-stroke: 2px #ffffff;
  /* slight ocean-tint fill via blend on the underlying water */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.2),
    0 6px 28px rgba(0,0,0,0.45);
  margin-top: -0.04em;
  letter-spacing: 0.03em;
}
/* The TREE word sits over water — give it a teal wash via mask-image trick:
   render the word twice, the second tinted teal with a horizontal gradient
   mask so it reads cream up top blending to teal at the bottom.
   We do this via a pseudo-element. */
.hero-wordmark .word-tree {
  position: relative;
  isolation: isolate;
}
.hero-wordmark .word-tree::after {
  content: attr(data-word);
  position: absolute; inset: 0;
  color: var(--teal-haze);
  -webkit-text-stroke: 2px var(--teal-haze);
  /* mask out the top — only the bottom half of the letters get the teal */
  -webkit-mask-image: linear-gradient(180deg, transparent 35%, black 75%);
          mask-image: linear-gradient(180deg, transparent 35%, black 75%);
  text-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

/* Foreground slot reserved for future climber PNG. Bottom-anchored,
   safe-area aware so it doesn't collide with the wordmark. */
.hero-foreground {
  position: absolute; inset: auto 0 0 0; z-index: 4;
  height: 78%;
  pointer-events: none;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-foreground img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.hero .scrim-edge {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; pointer-events: none;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--paper));
}

.hero .frame {
  position: absolute; inset: 0; z-index: 6;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 110px var(--gutter) 80px;
  pointer-events: none;
}
.hero .frame > * { pointer-events: auto; }
.hero .top-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  color: rgba(255,255,255,0.92);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero .top-meta .crosshair {
  display: flex; align-items: center; gap: 8px;
}
.hero .top-meta .crosshair::before {
  content: ""; width: 10px; height: 10px;
  border: 1px solid currentColor; border-radius: 50%;
}
.hero .bottom-block {
  grid-row: 3;
  display: flex; justify-content: flex-end;
}
.hero .tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.55);
  padding-left: 18px;
  max-width: 280px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero .tagline em {
  display: block; font-style: normal;
  font-weight: 400; font-size: 12px; opacity: 0.85;
  margin-top: 6px; letter-spacing: 0.32em;
}
.hero .scroll-hint {
  position: absolute; left: var(--gutter); bottom: 28px; z-index: 7;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero .scroll-hint::after {
  content: ""; width: 24px; height: 1px; background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { width: 60px; } }

.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;
}

.sound-toggle {
  position: absolute;
  right: var(--gutter); bottom: 28px; z-index: 5;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.sound-toggle:hover { background: var(--teal); border-color: var(--teal); }

/* ---------- Section frame ---------- */
section { position: relative; }
.section {
  padding: 120px var(--gutter);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 28px;
}
.section-head .num { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-head .lede {
  margin: 18px 0 0;
  font-size: 19px;
  color: var(--ink-2);
  max-width: 56ch;
}
@media (max-width: 720px) {
  .section { padding: 80px var(--gutter); }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.svc {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 36px 32px 40px;
  background: var(--paper);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: background 0.25s ease, color 0.25s ease;
}
.svc:hover { background: var(--ink); color: var(--paper); }
.svc:hover .svc-num { color: var(--teal-haze); }
.svc:hover .svc-arrow { color: var(--yolk); transform: translateX(6px); }
.svc-num {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 50px;
}
.svc h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.svc p { margin: 0; font-size: 15px; line-height: 1.55; flex: 1; }
.svc-arrow {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-cta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--ink);
}
.svc-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--teal); border-color: var(--teal); }
.btn.btn-teal { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn.btn-teal:hover { background: var(--ink); border-color: var(--ink); }
@media (max-width: 720px) {
  .svc-cta { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Contact + Map ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.contact-left { padding: 56px 48px; border-right: 1px solid var(--ink); }
.contact-right { background: var(--ink); color: var(--paper); position: relative; min-height: 600px; overflow: hidden; }
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--ink); padding: 40px 28px; }
  .contact-right { min-height: 480px; }
}

form.quote { display: grid; gap: 20px; margin-top: 8px; }
.form-row { display: grid; gap: 6px; }
.form-row.split { grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.form-row .req { color: var(--teal); margin-left: 4px; }
.form-row input, .form-row textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus { border-bottom-color: var(--teal); }
.form-row textarea { resize: vertical; min-height: 80px; }
.file-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px dashed var(--ink);
  color: var(--ink-2); font-size: 13px;
}
.file-row input[type=file] { display: none; }
.file-row .file-pick {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--ink); padding: 8px 14px;
  background: var(--paper);
  cursor: pointer;
}
.file-row .file-pick:hover { background: var(--ink); color: var(--paper); }
.form-submit-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.form-status { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-deep); }

.direct-contact {
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--ink);
}
.direct-contact h4 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.direct-contact .row {
  display: flex; gap: 12px; align-items: center;
  padding: 8px 0;
  font-size: 18px;
}
.direct-contact .row .ico {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal);
}

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  overflow: hidden;
}
.about-img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.about-img .tree-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
}
.about-copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 24px;
  text-transform: uppercase;
  line-height: 1;
}
.about-copy p { margin: 0 0 18px; font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--ink);
}
.about-stats .stat .num {
  font-family: var(--font-display); font-size: 44px; line-height: 1; color: var(--teal-deep);
}
.about-stats .stat .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 8px; color: var(--muted);
}
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.testi {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 36px 32px;
  background: var(--paper);
}
.testi .stars { color: var(--yolk); letter-spacing: 4px; font-size: 16px; margin-bottom: 16px; }
.testi blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.18;
  text-transform: none;
  letter-spacing: -0.01em;
}
.testi .who {
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.testi .where { font-size: 12px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 90px var(--gutter) 32px;
  position: relative;
  overflow: hidden;
}
footer.foot .stipple-bg {
  position: absolute; inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, var(--paper) 0.7px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to top, transparent, black 50%);
          mask-image: linear-gradient(to top, transparent, black 50%);
}
footer.foot .inner {
  position: relative; z-index: 2;
  display: grid; gap: 60px;
}
footer.foot .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 56px;
}
footer.foot .top h5 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin: 0 0 18px;
}
footer.foot .top a { display: block; padding: 4px 0; font-size: 15px; color: var(--paper); }
footer.foot .top a:hover { color: var(--teal-haze); }
footer.foot .wordmark-foot {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
footer.foot .wordmark-foot .tree { color: var(--teal); }
footer.foot .bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
@media (max-width: 800px) {
  footer.foot .top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Map ---------- */
.map-svg { width: 100%; height: 100%; display: block; }
.map-iframe {
  width: 100%; height: 100%; display: block;
  border: 0;
  background: #15151b;
}
.map-wrap { position: absolute; inset: 0; }
.map-overlay {
  position: absolute; left: 32px; top: 32px; right: 32px;
  z-index: 3; pointer-events: none;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,241,234,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.map-overlay .lbl-large {
  font-family: var(--font-display);
  font-size: 20px; text-transform: uppercase; color: var(--paper);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
}
.map-legend {
  position: absolute; left: 32px; bottom: 28px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,241,234,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  pointer-events: none;
}
.map-legend .sw { width: 14px; height: 14px; background: var(--teal); display: inline-block; }

/* ---------- Marquee tagline strip ---------- */
.marquee {
  background: var(--ink); color: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 60px;
  padding: 22px 0;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot {
  width: 10px; height: 10px; background: var(--teal); display: inline-block; border-radius: 50%;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Misc ---------- */
.divider-thin { height: 1px; background: var(--ink); }
.section-bg-paper-2 { background: var(--paper-2); }

/* mobile fixes */
@media (max-width: 720px) {
  .hero .bottom-block { justify-content: flex-start; }
  .hero .tagline { max-width: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
