/* ── Variables ─────────────────────────────────────────── */
:root {
  /* Palette: Warm (default) */
  --bg:           oklch(0.965 0.008 80);
  --bg-deep:      oklch(0.93  0.012 78);
  --bg-dark:      oklch(0.18  0.008 60);
  --ink:          oklch(0.16  0.005 60);
  --ink-soft:     oklch(0.40  0.008 60);
  --ink-mute:     oklch(0.60  0.006 60);
  --ink-inv:      oklch(0.96  0.005 80);
  --ink-inv-soft: oklch(0.72  0.008 80);
  --rule:         oklch(0.85  0.010 70);
  --rule-dark:    oklch(0.30  0.010 60);
  --accent:       oklch(0.55  0.135 38);  /* rust */

  /* Type */
  --display: "Bricolage Grotesque", "Söhne", "Inter Tight", system-ui, sans-serif;
  --body:    "Instrument Sans", "Söhne", system-ui, -apple-system, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Density: Standard (default) */
  --pad-x:       clamp(20px, 5vw, 80px);
  --pad-section: clamp(80px, 12vw, 160px);
  --hero-h:      92vh;
}

/* ── Palette variants ──────────────────────────────────── */
html[data-palette="cool"] {
  --bg:        oklch(0.965 0.005 240);
  --bg-deep:   oklch(0.93  0.010 240);
  --bg-dark:   oklch(0.17  0.020 240);
  --ink:       oklch(0.15  0.012 250);
  --ink-soft:  oklch(0.40  0.012 250);
  --ink-mute:  oklch(0.60  0.010 250);
  --rule:      oklch(0.85  0.010 240);
  --accent:    oklch(0.55  0.165 255);  /* cobalt */
}
html[data-palette="forest"] {
  --bg:        oklch(0.97  0.006 100);
  --bg-deep:   oklch(0.93  0.010 110);
  --bg-dark:   oklch(0.20  0.018 145);
  --ink:       oklch(0.16  0.010 130);
  --ink-soft:  oklch(0.40  0.010 130);
  --ink-mute:  oklch(0.60  0.008 130);
  --rule:      oklch(0.84  0.012 110);
  --accent:    oklch(0.45  0.115 150);  /* deep forest */
}

/* ── Density variants ──────────────────────────────────── */
html[data-density="cozy"] {
  --pad-section: clamp(56px, 8vw,  96px);
  --hero-h:      78vh;
}
html[data-density="generous"] {
  --pad-section: clamp(112px, 16vw, 224px);
  --hero-h:      100vh;
}

/* ── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern";
  scroll-behavior: smooth;
}
body { min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Utilities ─────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  padding: 28px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: var(--ink-inv);
  transition: background 240ms ease, backdrop-filter 240ms ease, padding 240ms ease;
}
.nav.is-sticky {
  position: fixed;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__brand {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav__brand .mk {
  display: inline-block;
  width: 22px; height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.nav__brand .mk::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.nav__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.nav__links a:hover { color: var(--ink-inv); }
.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 999px;
  transition: background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: var(--hero-h);
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  color: var(--ink-inv);
}

/* Hero image layer */
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image #hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .2;
}
.hero__image.has-image #hero-img  { display: block; }
.hero__image.has-image .hero__placeholder { display: none; }

/* Hero placeholder (empty state) */
.hero__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: oklch(0.70 0.010 60);
  background: oklch(0.22 0.012 60);
  user-select: none;
  transition: background 160ms ease;
}
.hero__placeholder:hover { background: oklch(0.26 0.012 60); }
.hero__placeholder svg { opacity: 0.55; }
.hero__placeholder-cap {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero__placeholder-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.hero__placeholder-sub u {
  text-underline-offset: 2px;
  text-decoration-color: rgba(255,255,255,0.3);
}
.hero__placeholder:hover .hero__placeholder-sub u {
  color: rgba(255,255,255,0.65);
  text-decoration-color: currentColor;
}

/* Hero drag-over state */
.hero__image.drag-over .hero__placeholder {
  background: oklch(0.30 0.012 60);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Hero image controls (shown on hover when image present) */
.hero__img-ctl {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
  white-space: nowrap;
}
.hero__image.has-image:hover .hero__img-ctl { opacity: 1; pointer-events: auto; }
.hero__img-ctl button {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font: 11px/1 var(--mono), system-ui, sans-serif;
  backdrop-filter: blur(6px);
}
.hero__img-ctl button:hover { background: rgba(0,0,0,0.85); }

/* Dark gradient scrim */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0) 30%,
                    rgba(10,10,12,0) 50%, rgba(10,10,12,0.75) 100%),
    linear-gradient(90deg,  rgba(10,10,12,0.35) 0%, rgba(10,10,12,0) 60%);
  pointer-events: none;
}

/* Hero content grid */
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: 120px var(--pad-x) 56px;
  max-width: 1440px;
  margin: 0 auto;
}
.hero__eyebrow { align-self: end; color: rgba(255,255,255,0.75); }
.hero__eyebrow .dot { background: var(--accent); box-shadow: 0 0 0 4px rgba(255,255,255,0.10); }
.hero__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 28px 0 0;
  max-width: 14ch;
  color: white;
  font-feature-settings: "ss01";
}
.hero__headline em {
  font-style: italic;
  font-family: "Instrument Sans", serif;
  font-weight: 400;
  color: var(--accent);
}
.hero__sub-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__sub {
  font-family: var(--body);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin: 0;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero__meta strong {
  display: block;
  color: white;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--body);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 32px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── About ─────────────────────────────────────────────── */
.about { padding: var(--pad-section) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__head {
  position: sticky;
  top: 40px;
  display: grid;
  gap: 20px;
}
.about__num {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.about__label {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
}
.about__body { display: grid; gap: 28px; }
.about__lede {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  max-width: 28ch;
}
.about__lede em {
  font-style: italic;
  color: var(--accent);
  font-family: "Instrument Sans", serif;
}
.about__p {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* Stats strip */
.stats {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat__num {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat__num sup {
  font-size: 0.4em;
  color: var(--accent);
  vertical-align: super;
  margin-left: 4px;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 12px;
}

/* ── Services ──────────────────────────────────────────── */
.svc {
  padding: var(--pad-section) 0;
  background: var(--bg-deep);
}
.svc__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 72px;
}
.svc__title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 16px 0 0;
  max-width: 12ch;
}
.svc__title em {
  font-style: italic;
  color: var(--accent);
  font-family: "Instrument Sans", serif;
}
.svc__meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
}
.svc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.svc__card {
  padding: clamp(28px, 3.5vw, 48px);
  background: var(--bg);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  min-height: 360px;
  transition: background 200ms ease;
}
.svc__card:hover { background: var(--bg-deep); }
.svc__no {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc__name {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
}
.svc__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}
.svc__items {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  align-self: end;
  display: grid;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.svc__items li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: baseline;
}
.svc__items li::before {
  content: "—";
  color: var(--rule);
}

/* ── Contact ───────────────────────────────────────────── */
.contact {
  background: var(--bg-dark);
  color: var(--ink-inv);
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact__eyebrow {
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.contact__eyebrow .dot { background: var(--accent); }
.contact__title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink-inv);
  margin: 0;
  max-width: 12ch;
}
.contact__title em {
  font-style: italic;
  color: var(--accent);
  font-family: "Instrument Sans", serif;
}
.contact__sub {
  margin-top: 32px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
}
.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  padding: 18px 28px;
  background: var(--accent);
  color: white;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease;
}
.contact__cta:hover { transform: translateY(-2px); }
.contact__cta::after {
  content: "→";
  font-family: var(--body);
  font-size: 16px;
  letter-spacing: 0;
}
.contact__details { display: grid; gap: 36px; padding-top: 8px; }
.contact__row {
  display: grid;
  gap: 6px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact__row:last-child { border-bottom: none; padding-bottom: 0; }
.contact__key {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact__val {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink-inv);
}
.contact__val a {
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}
.contact__val a:hover { border-bottom-color: var(--accent); }
.contact__appt {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding: 48px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.10);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
footer .row {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
footer .right { text-align: right; }

/* ── Tweaks panel ──────────────────────────────────────── */
.twk-trigger {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 20, 20, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 160ms ease, transform 160ms ease;
}
.twk-trigger:hover {
  background: rgba(20,20,20,0.95);
  transform: scale(1.06);
}
.twk-trigger svg { pointer-events: none; }

.twk-panel {
  position: fixed;
  right: 16px;
  bottom: 68px;
  z-index: 9999;
  width: 280px;
  background: rgba(250,249,247,0.88);
  color: #29261b;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 0.5px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 40px rgba(0,0,0,0.18);
  font: 11.5px/1.4 ui-sans-serif, system-ui, -apple-system, sans-serif;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.92) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 200ms cubic-bezier(0.34,1.3,0.64,1), opacity 160ms ease;
}
.twk-panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.twk-panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px 10px 14px;
  cursor: move;
  user-select: none;
  border-bottom: 0.5px solid rgba(0,0,0,0.07);
}
.twk-panel-hd b { font-size: 12px; font-weight: 600; letter-spacing: 0.01em; }
.twk-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(41,38,27,0.55);
  width: 22px; height: 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.twk-close:hover { background: rgba(0,0,0,0.06); color: #29261b; }
.twk-body {
  padding: 4px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.twk-sect {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(41,38,27,0.45);
  padding: 8px 0 2px;
}
.twk-sect:first-child { padding-top: 4px; }
.twk-palette-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.twk-palette-btn {
  appearance: none;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  padding: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  font: inherit;
  transition: border-color 120ms ease;
}
.twk-palette-btn[aria-pressed="true"] {
  border: 1.5px solid #111;
}
.twk-palette-swatches {
  display: flex;
  height: 22px;
  border-radius: 3px;
  overflow: hidden;
}
.twk-palette-swatches span { flex: 1; }
.twk-palette-name {
  font-size: 11px;
  color: #555;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.twk-seg-wrap { display: flex; flex-direction: column; gap: 5px; }
.twk-seg-lbl {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(41,38,27,0.72);
}
.twk-seg {
  position: relative;
  display: flex;
  padding: 2px;
  border-radius: 8px;
  background: rgba(0,0,0,0.06);
  user-select: none;
}
.twk-seg-thumb {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 6px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  transition: left 0.15s cubic-bezier(0.3,0.7,0.4,1), width 0.15s;
  pointer-events: none;
}
.twk-seg button {
  appearance: none;
  position: relative;
  z-index: 1;
  flex: 1;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  min-height: 22px;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1.2;
  font-size: 11.5px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__sub-row { grid-template-columns: 1fr; gap: 28px; }
  .hero__content { padding-top: 96px; }
  .about__grid { grid-template-columns: 1fr; }
  .about__head { position: static; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .svc__head { grid-template-columns: 1fr; align-items: start; }
  .svc__meta { text-align: left; }
  .svc__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  footer .row { grid-template-columns: 1fr; text-align: left; gap: 8px; }
  footer .right { text-align: left; }
}
