/* ============================================================
   PILLAR AUTOMATION — style.css
   Marble & onyx. Serif display, mono micro-labels, hairlines.
   ============================================================ */

:root {
  --ink: #0B0C0F;          /* onyx background */
  --ink-2: #101216;
  --ivory: #F2EFE8;        /* marble background */
  --ivory-2: #EAE6DC;
  --paper: #F7F5F0;
  --text-dark: #16181D;
  --text-light: #E9E5DB;
  --muted-dark: #5E6066;   /* muted on light bg */
  --muted-light: #979CA6;  /* muted on dark bg */
  --bronze: #B08D57;
  --bronze-2: #C6A56E;
  --line-dark: rgba(233,229,219,.14);   /* hairline on dark */
  --line-light: rgba(22,24,29,.14);     /* hairline on light */
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  background: var(--ink);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--bronze); color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 860px; }

/* ---------- type ---------- */

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.9rem, 6.4vw, 5.6rem); line-height: 1.01; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.08; margin-bottom: 20px; }
h1 em, h2 em, .tagline em { font-style: italic; color: var(--bronze-2); }
.light-section h1 em, .light-section h2 em { color: var(--bronze); }

.lead {
  font-size: 18.5px;
  max-width: 620px;
  color: var(--muted-dark);
  margin-bottom: 8px;
}
.dark-section .lead { color: var(--muted-light); }

.section-label {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--muted-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}
.section-label span { color: var(--bronze); }
.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-light);
}
.dark-section .section-label { color: var(--muted-light); }
.dark-section .section-label::after { background: var(--line-dark); }
.section-label.centered { justify-content: center; }
.section-label.centered::after { display: none; }
.centered-text { text-align: center; }

/* ---------- sections ---------- */

section { padding: 110px 0; }
.dark-section { background: var(--ink); color: var(--text-light); }
.light-section { background: var(--ivory); color: var(--text-dark); }
.light-section.alt-bg { background: var(--paper); border-top: 1px solid var(--line-light); }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-amber { background: var(--bronze); color: #fff; }
.btn-amber:hover { background: var(--bronze-2); color: #0B0C0F; }

.btn-ghost { border-color: var(--line-dark); color: var(--text-light); background: transparent; }
.btn-ghost:hover { border-color: var(--text-light); }

.btn-dark, .btn-navy { background: var(--ink); color: var(--text-light); }
.btn-dark:hover, .btn-navy:hover { background: #23252c; }

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

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.nav.scrolled {
  background: rgba(11,12,15,.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-light);
}
.logo-mark { color: var(--bronze-2); flex: none; }
.logo-word {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.01em;
}
.logo-thin { color: var(--muted-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-light);
  transition: color .2s ease;
}
.nav-links a:not(.btn):hover { color: var(--text-light); }
.nav-cta .btn { padding: 11px 22px; font-size: 12.5px; }

.nav-toggle { display: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 40px;
  flex: 1;
  padding-top: 130px;
  padding-bottom: 60px;
}

.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.tick { width: 22px; height: 1px; background: var(--bronze); display: inline-block; }

.hero-copy h1 { margin-bottom: 28px; max-width: 13ch; }

.hero-lead {
  font-size: 19px;
  color: var(--muted-light);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }

.hero-note {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  opacity: .75;
}

/* hero column figure */

.hero-column {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: col-float 14s ease-in-out infinite;
}
#column-svg { width: 100%; max-height: 78vh; stroke-linecap: round; }

@keyframes col-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

#column-svg .draw {
  stroke: rgba(238,234,226,.55);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s cubic-bezier(.5,0,.2,1);
}
#column-svg .flute { stroke: rgba(238,234,226,.28); }
#column-svg .ground { stroke: rgba(238,234,226,.18); }

.hero.in #column-svg .d1 { transition-delay: .2s; stroke-dashoffset: 0; }
.hero.in #column-svg .d2 { transition-delay: .5s; stroke-dashoffset: 0; }
.hero.in #column-svg .d3 { transition-delay: .85s; stroke-dashoffset: 0; }
.hero.in #column-svg .d4 { transition-delay: 1.15s; stroke-dashoffset: 0; }
.hero.in #column-svg .d5 { transition-delay: 1.4s; stroke-dashoffset: 0; }

.col-fill { opacity: 0; transition: opacity 2s ease 1.2s; }
.hero.in .col-fill { opacity: 1; }

.anno { opacity: 0; transform: translateY(6px); transition: opacity .9s ease, transform .9s ease; }
.hero.in .a1 { opacity: 1; transform: none; transition-delay: 1.7s; }
.hero.in .a2 { opacity: 1; transform: none; transition-delay: 1.95s; }
.hero.in .a3 { opacity: 1; transform: none; transition-delay: 2.2s; }

.anno-dot { fill: var(--bronze-2); }
.anno-line { stroke: rgba(238,234,226,.3); stroke-width: 1; fill: none; }
.anno text {
  font-family: var(--mono);
  font-size: 22px;
  letter-spacing: 0.1em;
  fill: rgba(238,234,226,.72);
}

/* hero status bar */

.hero-status {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line-dark);
}
.hero-status-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted-light);
}
.hero-status-inner p { display: flex; align-items: center; gap: 10px; }

.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7BAE7F;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(123,174,127,.5); }
  50%      { opacity: .55; box-shadow: 0 0 0 5px rgba(123,174,127,0); }
}

/* ---------- stats ---------- */

.stats { border-top: 1px solid var(--line-dark); padding: 96px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat { padding: 10px 36px 10px 0; }
.stat + .stat { border-left: 1px solid var(--line-dark); padding-left: 36px; }

.stat b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 5.5vw, 5rem);
  line-height: 1;
  margin-bottom: 14px;
  color: var(--text-light);
}
.stat b em { font-style: normal; }
.stat-approx { color: var(--muted-light); font-size: .6em; vertical-align: .18em; }
.stat span { font-size: 16px; color: var(--muted-light); display: block; max-width: 30ch; }

.tagline {
  margin-top: 64px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.3;
  color: var(--text-light);
  max-width: 26em;
}

/* ---------- services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  margin-top: 56px;
}
.svc {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 34px 30px 38px;
  background: transparent;
  transition: background .3s ease;
}
.svc:hover { background: rgba(255,255,255,.55); }

.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 46px;
}
.svc-num {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--bronze);
}
.svc-top svg {
  width: 22px; height: 22px;
  stroke: var(--text-dark);
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .8;
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
}
.svc p { font-size: 16px; color: var(--muted-dark); }

/* ---------- why band ---------- */

.band-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.42;
  color: var(--text-light);
  margin: 34px 0 18px;
  max-width: 24em;
}
.attrib {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .2em;
  color: var(--bronze-2);
  margin-bottom: 26px;
}

.checks { list-style: none; border-top: 1px solid var(--line-dark); margin-top: 8px; }
.checks li {
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 16.5px;
  color: var(--muted-light);
  position: relative;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 27px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--bronze-2);
  border-bottom: 1.5px solid var(--bronze-2);
  transform: rotate(-45deg);
}

/* ---------- how / steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  margin-top: 56px;
}
.step {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 34px 30px 40px;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .2em;
  color: var(--bronze);
  margin-bottom: 42px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  margin-bottom: 12px;
}
.step p { font-size: 16px; color: var(--muted-dark); margin-bottom: 26px; }
.price {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--text-dark);
  border-top: 1px solid var(--line-light);
  padding-top: 16px;
}

.founding {
  margin-top: 72px;
  border: 1px solid rgba(176,141,87,.45);
  background: linear-gradient(120deg, rgba(176,141,87,.10), rgba(176,141,87,.04));
  border-radius: 4px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.founding-tag {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .22em;
  color: var(--bronze);
  margin-bottom: 14px;
}
.founding h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 10px;
}
.founding p { font-size: 16.5px; color: var(--muted-dark); max-width: 56ch; }
.founding .btn { flex: none; }

/* ---------- booking ---------- */

.center h2, .center .lead { text-align: center; }
.center .lead { margin: 0 auto 8px; }
.center a { color: var(--bronze); }

.embed-wrap {
  margin-top: 48px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(22,24,29,.25);
}
.embed-wrap iframe { width: 100%; height: 680px; border: 0; display: block; }
.embed-fallback {
  padding: 14px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .06em;
  border-top: 1px solid var(--line-light);
}
.embed-fallback a { color: var(--bronze); }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  margin-top: 48px;
}

form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

form label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--muted-light);
  margin: 26px 0 6px;
}
.req { color: var(--bronze-2); }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 17px;
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color .25s ease;
}
select { appearance: none; -webkit-appearance: none; cursor: pointer; }
select option { background: var(--ink-2); color: var(--text-light); }
textarea { min-height: 110px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--bronze-2);
}
::placeholder { color: rgba(151,156,166,.55); }

.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 28px 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-light);
}
.consent input { width: 15px; height: 15px; margin-top: 3px; accent-color: var(--bronze); flex: none; }
.consent a { color: var(--bronze-2); }
.consent-label { display: inline !important; margin: 0 !important; font-size: 13px !important; letter-spacing: 0 !important; color: var(--text-light) !important; font-family: var(--sans) !important; font-weight: 600 !important; }

.form-status { margin-top: 18px; font-size: 15px; min-height: 20px; }
.form-status.ok { color: #7BAE7F; }
.form-status.err { color: #D08770; }
.form-status a { color: var(--bronze-2); }

.info-card { border-left: 1px solid var(--line-dark); padding-left: 44px; }
.info-card h3 {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--bronze-2);
  margin-bottom: 12px;
}
.info-card p { font-size: 16px; color: var(--muted-light); margin-bottom: 18px; }
.info-card p strong { color: var(--text-light); }
.info-mail a {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: border-color .25s ease;
}
.info-mail a:hover { border-color: var(--bronze-2); }

.wontdo { margin-top: 34px; border-top: 1px solid var(--line-dark); padding-top: 26px; }
.wontdo ul { list-style: none; }
.wontdo li {
  font-size: 15px;
  color: var(--muted-light);
  padding: 8px 0 8px 22px;
  position: relative;
}
.wontdo li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--bronze-2);
  font-family: var(--mono);
}

/* ---------- team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  margin-top: 56px;
}
.team-card {
  display: flex;
  gap: 26px;
  padding: 38px 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.avatar {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card h3 { font-family: var(--serif); font-weight: 400; font-size: 24px; }
.role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--bronze);
  margin: 6px 0 12px;
}
.team-card p:not(.role) { font-size: 16px; color: var(--muted-dark); }

/* ---------- faq ---------- */

.faq { margin-top: 48px; border-top: 1px solid var(--line-light); }
.faq details { border-bottom: 1px solid var(--line-light); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: 24px;
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--bronze); }

.faq-x { position: relative; width: 14px; height: 14px; flex: none; }
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  background: var(--muted-dark);
  transition: transform .3s ease;
}
.faq-x::before { inset: 6px 0; }
.faq-x::after { inset: 0 6px; }
.faq details[open] .faq-x::after { transform: rotate(90deg) scaleY(0); }

.faq details p {
  padding: 0 4px 28px;
  font-size: 16.5px;
  color: var(--muted-dark);
  max-width: 62ch;
}

/* ---------- footer ---------- */

footer {
  position: relative;
  background: var(--ink);
  color: var(--muted-light);
  padding: 90px 0 40px;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.foot-grid p { font-size: 15.5px; max-width: 40ch; margin-top: 16px; }
footer h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--text-light);
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  color: var(--muted-light);
  text-decoration: none;
  font-size: 15.5px;
  transition: color .2s ease;
}
footer ul a:hover { color: var(--text-light); }

.foot-legal {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
}
.foot-legal p {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  line-height: 1.8;
  opacity: .7;
  margin-bottom: 8px;
}

.foot-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.23em;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(120px, 24vw, 340px);
  line-height: 1;
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233,229,219,.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ---------- legal pages ---------- */

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 150px 28px 90px;
  background: transparent;
}
body.legal { background: var(--ivory); }
body.legal .nav { background: rgba(11,12,15,.92); border-bottom: 1px solid var(--line-dark); }
.legal-page h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 10px; }
.legal-page .updated {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 24px;
  margin: 44px 0 12px;
}
.legal-page p, .legal-page li { font-size: 16.5px; color: #3A3C42; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--bronze); }
body.legal footer { padding: 40px 0; }

/* ---------- reveal ---------- */

.fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
.fade.vis { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-column { display: none; }
  .hero { min-height: 92vh; }
  .band-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .info-card { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); padding-top: 40px; }
  .svc-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .founding { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; padding-top: 30px; margin-top: 30px; }
  .svc-grid, .steps-grid, .team-grid { grid-template-columns: 1fr; }
  form .row { grid-template-columns: 1fr; gap: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-status-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .embed-wrap iframe { height: 560px; }

  /* mobile nav */
  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11,12,15,.97);
    border-bottom: 1px solid var(--line-dark);
    padding: 10px 28px 26px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: 16px 0; font-size: 13px; }
  .nav-cta { margin-top: 14px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    align-items: center;
  }
  .nav-toggle span {
    width: 20px; height: 1.5px;
    background: var(--text-light);
    transition: transform .3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade { opacity: 1; transform: none; transition: none; }
  .hero-column { animation: none; }
  #column-svg .draw { stroke-dashoffset: 0; transition: none; }
  .anno, .col-fill { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
  .btn, .btn:hover { transform: none; }
}
