:root {
  --bone: #f2ede4;
  --bone-2: #e8e1d3;
  --bone-3: #d9d1c0;
  --slate: #1f2b34;
  --slate-2: #2c3a45;
  --slate-3: #172129;
  --ink: #121a20;
  --clay: #cd5a36;
  --clay-2: #e07247;
  --steel: #6b7a87;
  --line: rgba(18, 26, 32, 0.16);
  --line-2: rgba(18, 26, 32, 0.08);
  --line-light: rgba(242, 237, 228, 0.18);
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --head: "Anton", "Archivo", Impact, sans-serif;
  --wide: "Archivo", "Inter", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --gutter: 44px;
  --shell: 1340px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  color-scheme: light;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.dot-clay { color: var(--clay); }

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--slate);
  color: var(--bone);
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip:focus { top: 12px; }

/* ─── Utility bar ─── */
.util {
  background: var(--slate-3);
  color: var(--bone);
  border-bottom: 1px solid rgba(242, 237, 228, 0.12);
}

.util-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  min-height: 38px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  gap: 32px;
}

.util-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(242, 237, 228, 0.7);
}

.util-cell .tick {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--clay);
  flex-shrink: 0;
}

.util-cell a { color: var(--bone); transition: color 0.2s ease; }
.util-cell a:hover { color: var(--clay-2); }

.util-right { margin-left: auto; color: var(--bone); }

/* ─── Header ─── */
.head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 237, 228, 0.94);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.head-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--slate);
}

.brand-sq {
  color: var(--clay);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--head);
  font-size: 26px;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: var(--slate);
  text-transform: uppercase;
}

.brand-text em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 5px;
}

.head-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.head-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.head-nav > ul > li { position: relative; }

.head-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-family: var(--wide);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--slate);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.head-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.head-nav > ul > li:hover > a::after,
.head-nav > ul > li > a:focus-visible::after { transform: scaleX(1); }

.head-nav > ul > li:hover > a { color: var(--clay); }

.sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--slate);
  color: var(--bone);
  padding: 10px;
  display: grid;
  gap: 2px;
  box-shadow: 0 30px 60px -30px rgba(18, 26, 32, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 5;
}

.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-size: 14px;
  color: rgba(242, 237, 228, 0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.sub a .mono { color: var(--clay); font-size: 10px; }

.sub a:hover {
  background: rgba(205, 90, 54, 0.14);
  color: var(--bone);
}

.head-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.head-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  margin-left: auto;
}

.head-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .head-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .head-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .head-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--wide);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  border-radius: 0;
}

.btn:active { transform: translateY(1px); }

.btn-clay {
  background: var(--clay);
  color: var(--bone);
  border-color: var(--clay);
}

.btn-clay:hover {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--bone);
}

.btn-outline {
  border-color: var(--slate);
  color: var(--slate);
  background: transparent;
}

.btn-outline:hover {
  background: var(--slate);
  color: var(--bone);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--slate);
  background: transparent;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.btn-l { padding: 18px 28px; font-size: 14px; }
.btn-s { padding: 11px 16px; font-size: 12px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--bone);
  padding: 80px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.bp-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-2) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 80%);
}

.hero-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 640px; }

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border: 1.5px solid var(--clay);
  color: var(--clay);
  margin-bottom: 34px;
  transform: rotate(-1.5deg);
}

.stamp-mark {
  width: 10px;
  height: 10px;
  background: var(--clay);
}

.stamp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stamp-text strong {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.stamp-text em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-h1 {
  font-family: var(--head);
  font-size: clamp(52px, 7.2vw, 108px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  font-weight: 400;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.h1-l1, .h1-l2, .h1-l3 { display: block; }

.h1-l2 { color: var(--clay); }

.hero-lede {
  font-size: 17px;
  color: var(--ink);
  max-width: 52ch;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--line);
  padding-top: 20px;
}

.hero-ticks li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
  padding-left: 16px;
}

.hero-ticks li:first-child { padding-left: 0; }
.hero-ticks li:last-child { border-right: none; }

.hero-ticks .mono {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--slate);
  font-weight: 600;
  text-transform: none;
}

.hero-ticks em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero-visual {
  position: relative;
  padding-bottom: 30px;
}

.hero-figure {
  position: relative;
  overflow: hidden;
  background: var(--bone-2);
  border: 1.5px solid var(--slate);
  box-shadow: 12px 12px 0 0 var(--clay);
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.hero-figure figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--slate);
  color: var(--bone);
  border-top: 1.5px solid var(--slate);
}

.hero-figure figcaption .mono {
  color: var(--clay-2);
  font-size: 10.5px;
}

.hero-figure figcaption span:last-child {
  font-family: var(--wide);
  font-size: 13px;
  font-weight: 500;
}

.hero-callout {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 12px auto;
  gap: 8px;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  pointer-events: none;
}

.hero-callout-a {
  top: 14%;
  left: -18px;
  grid-template-columns: 12px auto;
}

.hero-callout-b {
  bottom: 22%;
  right: -20px;
  grid-template-columns: auto 12px;
  direction: rtl;
}

.hero-callout-b .callout-line { direction: ltr; }
.hero-callout-b .callout-text { direction: ltr; text-align: right; }

.callout-dot {
  width: 12px;
  height: 12px;
  background: var(--clay);
  border-radius: 50%;
  grid-row: 1 / 3;
  position: relative;
}

.hero-callout-b .callout-dot { grid-column: 2; grid-row: 1 / 3; }

.callout-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--clay);
  border-radius: 50%;
}

.callout-line {
  width: 60px;
  height: 1.5px;
  background: var(--slate);
  grid-column: 1 / -1;
  margin-top: 5px;
}

.hero-callout-a .callout-line { margin-left: 12px; }
.hero-callout-b .callout-line { margin-right: 12px; margin-left: auto; }

.callout-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bone);
  padding: 6px 10px;
  border: 1.5px solid var(--slate);
  grid-column: 1 / -1;
  max-width: fit-content;
  margin-top: 4px;
}

.hero-callout-b .callout-text {
  margin-left: auto;
  align-items: flex-end;
}

.callout-text strong {
  font-family: var(--wide);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--slate);
}

.callout-text em {
  font-style: normal;
  font-size: 9px;
  color: var(--steel);
}

.hero-badge {
  position: absolute;
  bottom: -6px;
  left: 32px;
  background: var(--slate);
  color: var(--bone);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 4;
  box-shadow: 6px 6px 0 0 var(--clay);
}

.hb-num {
  font-family: var(--head);
  font-size: 48px;
  line-height: 1;
  color: var(--bone);
}

.hb-cap {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.7);
  line-height: 1.4;
}

.siding-band {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  border-top: 1.5px solid var(--slate);
  border-bottom: 1.5px solid var(--slate);
  background: var(--slate);
}

.siding-band span {
  display: block;
  height: 6px;
  background: var(--bone);
  margin-bottom: 3px;
}

.siding-band span:nth-child(even) { width: 32%; }
.siding-band span:nth-child(odd) { width: 78%; background: var(--bone-3); }
.siding-band span:last-child { margin-bottom: 0; }

.hero-marquee {
  background: var(--slate);
  color: var(--bone);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1.5px solid var(--slate);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
  font-family: var(--head);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-left: 30px;
}

.marquee-track i {
  font-style: normal;
  color: var(--clay);
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Creds ─── */
.creds {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.creds-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cred {
  padding: 40px 26px 44px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line);
  position: relative;
}

.cred:first-child { padding-left: 0; }
.cred:last-child { border-right: none; padding-right: 0; }

.cred::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--slate) 0,
    var(--slate) 1px,
    transparent 1px,
    transparent 12px
  );
  opacity: 0.35;
}

.cred:first-child::before { left: 0; }
.cred:last-child::before { right: 0; }

.cred-id {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--clay);
  margin-bottom: 20px;
}

.cred-num {
  font-family: var(--head);
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  color: var(--slate);
  font-weight: 400;
}

.cred-label {
  font-size: 13.5px;
  color: var(--steel);
  margin-top: 8px;
  line-height: 1.45;
}

/* ─── Section head ─── */
.sec-head {
  max-width: var(--shell);
  margin: 0 auto 60px;
  padding: 0 var(--gutter);
  display: grid;
  gap: 18px;
}

.sec-head--split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.sec-tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--clay);
  margin-bottom: 4px;
}

.sec-tag--light { color: var(--clay-2); }

.sec-h {
  font-family: var(--head);
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.005em;
  font-weight: 400;
  color: var(--slate);
  text-transform: uppercase;
}

.sec-h--light { color: var(--bone); }

.sec-sub {
  font-size: 16.5px;
  color: var(--ink);
  max-width: 62ch;
  line-height: 1.65;
  margin-top: 8px;
}

.sec-sub--light { color: rgba(242, 237, 228, 0.78); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wide);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 12px 0;
  border-bottom: 2px solid var(--slate);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.25s ease;
  white-space: nowrap;
}

.link-arrow::after {
  content: "→";
  font-family: var(--mono);
  transition: transform 0.25s ease;
}

.link-arrow:hover {
  color: var(--clay);
  border-color: var(--clay);
  gap: 18px;
}

.link-arrow:hover::after { transform: translateX(3px); }

/* ─── Services ─── */
.services {
  padding: 110px 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.svc-grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid var(--slate);
  border-left: 1.5px solid var(--slate);
}

.svc-card {
  position: relative;
  padding: 32px 30px 30px;
  border-right: 1.5px solid var(--slate);
  border-bottom: 1.5px solid var(--slate);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s ease;
}

.svc-card:hover { background: var(--bone-2); }

.svc-swatch {
  display: block;
  height: 90px;
  background: var(--swatch, #ccc);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 26, 32, 0.14);
}

.svc-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.06) 0,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px,
    transparent 8px
  );
}

.svc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.svc-head .mono { font-size: 11px; color: var(--clay); }

.svc-num {
  font-family: var(--head);
  font-size: 42px;
  line-height: 1;
  color: var(--slate);
  opacity: 0.12;
  letter-spacing: 0;
}

.svc-name {
  font-family: var(--wide);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--slate);
  text-transform: uppercase;
}

.svc-desc {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}

.svc-spec {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px 12px;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.svc-spec dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--steel);
}

.svc-spec dd {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* ─── Process ─── */
.process {
  padding: 110px 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.track {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.track::before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(var(--gutter) + 30px);
  right: calc(var(--gutter) + 30px);
  height: 2px;
  background: var(--slate);
}

.track::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(var(--gutter) + 30px);
  right: calc(var(--gutter) + 30px);
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--slate) 0,
    var(--slate) 1.5px,
    transparent 1.5px,
    transparent 24px
  );
  opacity: 0.55;
}

.track-item {
  padding-right: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.track-item:last-child { padding-right: 0; }

.track-node {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 60px;
}

.tn-num {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--clay);
  font-weight: 700;
  background: var(--bone);
  padding: 6px 10px;
  border: 1.5px solid var(--clay);
  line-height: 1;
}

.tn-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bone);
  border: 3px solid var(--slate);
  box-shadow: 0 0 0 4px var(--bone);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.track-name {
  font-family: var(--wide);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 10px;
}

.track-desc {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
}

/* ─── Projects ─── */
.projects {
  padding: 110px 0;
  background: var(--bone-2);
  border-bottom: 1px solid var(--line);
}

.proj-grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.proj-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.proj-card--wide {
  grid-column: span 2;
}

.proj-card figure {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--slate);
  background: var(--bone-3);
}

.proj-card--wide figure { aspect-ratio: 21 / 9; }
.proj-card:not(.proj-card--wide) figure { aspect-ratio: 4 / 3; }

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.proj-card:hover img { transform: scale(1.03); }

.proj-card figcaption {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--slate);
  color: var(--bone);
  padding: 8px 14px;
  font-size: 10.5px;
}

.proj-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proj-meta h3 {
  font-family: var(--wide);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--slate);
  text-transform: uppercase;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proj-tags li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--steel);
  background: var(--bone);
}

/* ─── Specs ─── */
.specs {
  padding: 110px 0;
  background: var(--slate);
  color: var(--bone);
  border-top: 1.5px solid var(--slate);
  border-bottom: 1.5px solid var(--slate);
}

.specs-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.specs-head {
  display: grid;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 780px;
}

.spec-table {
  display: grid;
  gap: 0;
  border-top: 1.5px solid rgba(242, 237, 228, 0.28);
  border-bottom: 1.5px solid rgba(242, 237, 228, 0.28);
  margin-bottom: 26px;
}

.spec-row {
  display: grid;
  grid-template-columns: 2fr 0.7fr 1.2fr 1.6fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(242, 237, 228, 0.14);
  align-items: baseline;
}

.spec-row:last-child { border-bottom: none; }

.spec-row--head {
  border-bottom: 1px solid rgba(242, 237, 228, 0.28);
  padding: 14px 0;
}

.spec-row--head > span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
}

.spec-name {
  font-family: var(--wide);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--bone);
}

.spec-row .mono {
  color: rgba(242, 237, 228, 0.85);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.spec-note {
  font-size: 13.5px;
  color: rgba(242, 237, 228, 0.6);
}

.spec-fine {
  font-size: 12.5px;
  color: rgba(242, 237, 228, 0.5);
  max-width: 68ch;
  line-height: 1.6;
}

/* ─── Testimonials ─── */
.testi {
  padding: 110px 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.testi-stage {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  min-height: 380px;
  margin-bottom: 40px;
}

.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  padding: 0 var(--gutter);
}

.testi-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  padding: 0;
}

.testi-photo {
  border: 1.5px solid var(--slate);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 10px 10px 0 0 var(--clay);
}

.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}

.testi-quote {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testi-id {
  color: var(--clay);
  font-size: 10.5px;
}

.testi-quote p {
  font-family: var(--wide);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--slate);
}

.testi-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.testi-quote footer strong {
  font-family: var(--wide);
  font-size: 18px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.testi-quote footer .mono {
  font-size: 10.5px;
}

.testi-controls {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 30px var(--gutter) 0;
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
}

.testi-nav {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--slate);
  font-family: var(--mono);
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.testi-nav:hover {
  background: var(--slate);
  color: var(--bone);
}

.testi-dots {
  display: flex;
  gap: 8px;
  margin-right: auto;
}

.testi-dot {
  width: 32px;
  height: 3px;
  background: var(--line);
  transition: background 0.25s ease, width 0.25s ease;
}

.testi-dot.is-active {
  background: var(--clay);
  width: 52px;
}

.testi-all { margin-left: 8px; }

/* ─── Areas ─── */
.areas {
  padding: 110px 0;
  background: var(--bone-2);
  border-bottom: 1px solid var(--line);
}

.areas-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.areas-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--slate);
}

.areas-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--wide);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--slate);
  text-transform: uppercase;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.areas-list li:nth-child(odd) { padding-right: 22px; }
.areas-list li:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }

.areas-list li:hover { color: var(--clay); padding-left: 32px; }
.areas-list li:nth-child(odd):hover { padding-left: 12px; }

.areas-list .mono {
  color: var(--clay);
  font-size: 10.5px;
}

/* ─── Booking ─── */
.book {
  padding: 110px 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.book-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.book-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.book-points {
  display: grid;
  gap: 14px;
  padding: 28px 0;
  margin-top: 12px;
  border-top: 1.5px solid var(--slate);
  border-bottom: 1px solid var(--line);
}

.book-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}

.book-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 3px;
  background: var(--clay);
}

.book-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.book-c {
  border: 1.5px solid var(--slate);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.book-c:hover {
  background: var(--slate);
  color: var(--bone);
}

.book-c:hover .mono { color: rgba(242, 237, 228, 0.6); }

.book-c--plain { grid-column: 1 / -1; cursor: default; }
.book-c--plain:hover { background: transparent; color: var(--ink); }
.book-c--plain:hover .mono { color: var(--steel); }

.book-c .mono { font-size: 10px; }

.book-c strong {
  font-family: var(--wide);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.book-panel {
  background: var(--bone-2);
  border: 1.5px solid var(--slate);
  padding: 42px 40px 38px;
  position: relative;
  box-shadow: 12px 12px 0 0 var(--clay);
}

.book-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1.5px solid var(--slate);
}

.book-form-head .mono { color: var(--clay); }

.book-stamp {
  color: var(--clay);
  transform: rotate(-8deg);
  flex-shrink: 0;
}

.wo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.wo-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: color 0.2s ease;
}

.wo-step i {
  display: block;
  height: 3px;
  background: var(--line);
  transition: background 0.25s ease;
}

.wo-step span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  transition: color 0.2s ease;
}

.wo-step.is-active i { background: var(--clay); }
.wo-step.is-active span { color: var(--clay); font-weight: 600; }

.wo-panel { display: none; }
.wo-panel.is-active { display: block; animation: woIn 0.35s ease both; }

@keyframes woIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wo-q {
  font-family: var(--wide);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.wo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.wo-chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border: 1.5px solid var(--line);
  background: var(--bone);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  color: var(--slate);
}

.wo-chip input { position: absolute; opacity: 0; pointer-events: none; }

.wo-chip:hover { border-color: var(--slate); }

.wo-chip:has(input:checked) {
  background: var(--slate);
  color: var(--bone);
  border-color: var(--slate);
}

.wo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.wo-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.wo-field .mono { font-size: 10px; }

.wo-field input,
.wo-field select,
.wo-field textarea {
  width: 100%;
  background: var(--bone);
  border: 1.5px solid var(--line);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--slate);
  font-family: var(--sans);
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.wo-field input::placeholder,
.wo-field textarea::placeholder {
  color: rgba(107, 122, 135, 0.55);
}

.wo-field input:focus,
.wo-field select:focus,
.wo-field textarea:focus {
  outline: none;
  border-color: var(--clay);
}

.wo-field textarea { resize: vertical; min-height: 70px; }

.wo-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.wo-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink);
  margin: 16px 0 20px;
  line-height: 1.55;
}

.wo-consent input {
  margin-top: 3px;
  accent-color: var(--clay);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.wo-consent a { color: var(--clay); text-decoration: underline; }

.wo-err {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1.5px solid var(--slate);
}

.wo-nav > span:empty { display: none; }

/* ─── FAQ ─── */
.faq {
  padding: 110px 0;
  background: var(--bone-2);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: var(--shell);
  margin: 0 auto 36px;
  padding: 0 var(--gutter);
  border-top: 1.5px solid var(--slate);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: center;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-id { color: var(--clay); font-size: 11px; }

.faq-q {
  font-family: var(--wide);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--slate);
  transition: color 0.2s ease;
}

.faq-list summary:hover .faq-q { color: var(--clay); }

.faq-mark {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--clay);
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-list details[open] .faq-mark { transform: rotate(45deg); }

.faq-list p {
  padding: 18px 0 0 116px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.65;
  max-width: 78ch;
}

.faq-more {
  display: flex;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: fit-content;
}

/* ─── Footer ─── */
.foot {
  background: var(--slate);
  color: var(--bone);
  padding: 90px 0 0;
  border-top: 1.5px solid var(--clay);
}

.foot-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-light);
}

.foot-brand .brand { color: var(--bone); }
.foot-brand .brand-text strong { color: var(--bone); }
.foot-brand .brand-text em { color: rgba(242, 237, 228, 0.55); }

.foot-desc {
  font-size: 14px;
  color: rgba(242, 237, 228, 0.72);
  max-width: 42ch;
  margin: 20px 0 22px;
  line-height: 1.65;
}

.foot-addr {
  font-size: 14px;
  color: var(--bone);
  line-height: 1.7;
  margin-bottom: 20px;
}

.foot-contact {
  font-size: 14px;
  line-height: 1.7;
}

.foot-contact a {
  color: var(--bone);
  transition: color 0.2s ease;
}

.foot-contact a:hover { color: var(--clay-2); }

.foot-col h3 {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(242, 237, 228, 0.5);
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.foot-col .foot-sub { margin-top: 34px; }

.foot-col ul {
  display: grid;
  gap: 10px;
}

.foot-col a {
  font-size: 14px;
  color: rgba(242, 237, 228, 0.82);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.foot-col a:hover {
  color: var(--clay-2);
  padding-left: 4px;
}

.foot-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px var(--gutter);
  background: var(--slate-3);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--head);
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clay);
  flex-wrap: wrap;
  line-height: 1;
}

.foot-band span:nth-child(even) {
  color: rgba(242, 237, 228, 0.28);
  font-size: 0.5em;
}

.foot-base {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-base .mono {
  color: rgba(242, 237, 228, 0.5);
  font-size: 10px;
}

/* ─── Modal ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open { display: flex; }

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 32, 0.75);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.2s ease both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  background: var(--bone);
  border: 1.5px solid var(--slate);
  box-shadow: 14px 14px 0 0 var(--clay);
  padding: 46px 40px 38px;
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--slate);
  font-size: 20px;
  color: var(--slate);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-x:hover {
  background: var(--slate);
  color: var(--bone);
}

.modal-body h3 {
  font-family: var(--head);
  font-size: 38px;
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--slate);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.modal-body p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.65;
}

.modal-body strong { color: var(--slate); font-weight: 700; }

.modal-body a { color: var(--clay); border-bottom: 1.5px solid var(--clay); }

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ─── Cookies ─── */
.cookies {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 250;
  background: var(--slate);
  color: var(--bone);
  border: 1.5px solid var(--clay);
  box-shadow: 10px 10px 0 0 rgba(205, 90, 54, 0.35);
  animation: cookieIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cookieIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookies-in {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.cookies-in p {
  font-size: 13.5px;
  color: rgba(242, 237, 228, 0.82);
  max-width: 76ch;
  line-height: 1.6;
}

.cookies-in a {
  color: var(--clay-2);
  border-bottom: 1.5px solid var(--clay-2);
}

.cookies-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookies .btn-outline {
  border-color: rgba(242, 237, 228, 0.4);
  color: var(--bone);
}

.cookies .btn-outline:hover {
  background: var(--bone);
  color: var(--slate);
  border-color: var(--bone);
}

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── Media ─── */
@media (max-width: 1180px) {
  :root { --gutter: 28px; }

  .util-in { gap: 22px; font-size: 10px; }
  .util-cell:nth-child(3) { display: none; }

  .head-nav > ul > li > a { padding: 12px 10px; font-size: 13px; }

  .hero-in { grid-template-columns: 1fr; gap: 50px; }

  .hero-visual { max-width: 620px; }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  .track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .track::before, .track::after { display: none; }
  .track-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    height: 2px;
    background: var(--slate);
    z-index: 0;
  }
  .track-node { position: relative; z-index: 2; }
  .track-name, .track-desc { position: relative; z-index: 2; background: var(--bone); }

  .testi-slide { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .testi-photo { max-width: 400px; }

  .areas-in { grid-template-columns: 1fr; gap: 50px; }
  .areas-copy { position: static; }

  .book-in { grid-template-columns: 1fr; gap: 50px; }

  .foot-in { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .head-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 88vw;
    background: var(--bone);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    z-index: 90;
    border-left: 1.5px solid var(--slate);
  }

  body.nav-open .head-nav { transform: translateX(0); }

  .head-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .head-nav > ul > li > a {
    padding: 14px 8px;
    font-size: 20px;
    letter-spacing: 0.01em;
    border-bottom: 1px solid var(--line);
  }

  .head-nav > ul > li > a::after { display: none; }

  .sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--bone-2);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .has-sub.open .sub { max-height: 500px; padding: 8px; }

  .sub a { color: var(--slate); }

  .head-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
    gap: 10px;
  }

  .head-cta .btn { width: 100%; }

  .head-toggle {
    display: flex;
    order: 2;
  }

  .brand { order: 1; }

  .hero { padding: 60px 0 0; }
  .hero-h1 { font-size: 62px; }

  .hero-callout-a, .hero-callout-b { display: none; }

  .hero-ticks { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero-ticks li { border-right: none; padding-left: 0; }
  .hero-ticks li:nth-child(2) { padding-left: 16px; border-left: 1px solid var(--line); }
  .hero-ticks li:nth-child(4) { padding-left: 16px; border-left: 1px solid var(--line); }

  .svc-grid { grid-template-columns: 1fr; }

  .proj-grid { grid-template-columns: 1fr; }
  .proj-card--wide { grid-column: auto; }
  .proj-card--wide figure { aspect-ratio: 4 / 3; }

  .spec-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spec-row .spec-note { grid-column: 1 / -1; }
  .spec-row--head { display: none; }

  .areas-list { grid-template-columns: 1fr; }
  .areas-list li:nth-child(even) { padding-left: 0; border-left: none; }
  .areas-list li:nth-child(odd) { padding-right: 0; }

  .book-contact { grid-template-columns: 1fr; }
  .book-panel { padding: 32px 24px; box-shadow: 8px 8px 0 0 var(--clay); }

  .wo-row { grid-template-columns: 1fr; gap: 0; }

  .faq-list summary { grid-template-columns: 60px 1fr auto; gap: 16px; }
  .faq-list p { padding-left: 76px; }
}

@media (max-width: 620px) {
  .util-in { justify-content: space-between; font-size: 9.5px; }
  .util-cell:nth-child(2) { display: none; }

  .hero-h1 { font-size: 48px; }
  .hero-lede { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .hero-figure { box-shadow: 8px 8px 0 0 var(--clay); }
  .hero-badge { left: 20px; padding: 12px 16px; }
  .hb-num { font-size: 36px; }

  .creds-in { grid-template-columns: 1fr; }
  .cred { padding: 30px 0 30px; border-right: none; border-bottom: 1px solid var(--line); }
  .cred::before { left: 0; right: 0; }

  .sec-h { font-size: 42px; }

  .track { grid-template-columns: 1fr; }
  .track-item::before { display: none; }
  .track-item { padding-right: 0; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
  .track-item:last-child { border-bottom: none; padding-bottom: 0; }

  .testi-photo { max-width: 100%; box-shadow: 8px 8px 0 0 var(--clay); }
  .testi-controls { flex-wrap: wrap; gap: 16px; }
  .testi-all { margin-left: 0; width: 100%; }

  .spec-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .spec-name { font-size: 16px; }

  .book-panel { padding: 26px 20px; }

  .faq-list summary { grid-template-columns: 1fr auto; gap: 12px; }
  .faq-id { grid-column: 1 / -1; margin-bottom: 6px; }
  .faq-list p { padding-left: 0; }

  .foot-in { grid-template-columns: 1fr; gap: 40px; }
  .foot-base { flex-direction: column; align-items: flex-start; gap: 8px; }
  .foot-band { font-size: 22px; gap: 12px; }

  .cookies-in { padding: 18px 20px; flex-direction: column; align-items: stretch; }
  .cookies-actions { flex-direction: column; }
  .cookies-actions .btn { width: 100%; }

  .modal-card { padding: 34px 24px 28px; box-shadow: 8px 8px 0 0 var(--clay); }
  .modal-body h3 { font-size: 30px; }
}