/* Precision Land Works — Direction A: Land Transformed (editorial / warm) */

:root {
  /* Palette — warm earth */
  --cream: #f6f1e7;
  --cream-alt: #ebe4d4;
  --ink: #1f1d18;
  --ink-soft: #3d3a32;
  --ink-dim: #6b6357;
  --ink-faint: #a69d8c;
  --rule: #d5cab3;
  --rule-dark: #b5a888;
  --olive: #5a6b3e;
  --olive-dark: #3d4829;
  --rust: #b85c38;
  --rust-dark: #914729;
  --earth: #8a6a4a;

  --f-display: 'Fraunces', 'Georgia', serif;
  --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-caps: 'Inter', sans-serif;

  --gutter: clamp(16px, 2vw, 28px);
  --col-max: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Top nav ─────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink);
}

.brand .mark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  font-variation-settings: 'SOFT' 100;
  color: var(--ink);
}

.brand .mark em {
  font-style: italic;
  color: var(--olive);
  font-weight: 500;
}

.brand .sub {
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--f-sans);
  font-size: 14px;
}

nav.primary a {
  color: var(--ink-soft);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

nav.primary a:hover,
nav.primary a.active {
  color: var(--ink);
  border-color: var(--rust);
}

.topbar .contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}

.topbar .contact .tel {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

/* ── Button ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  background: var(--olive);
  color: var(--cream);
  border: 1px solid var(--olive);
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
  border-radius: 2px;
}

.btn:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn.rust {
  background: var(--rust);
  border-color: var(--rust);
}

.btn.rust:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.btn::after {
  content: '→';
  font-weight: 300;
}

.btn.small {
  padding: 10px 16px;
  font-size: 12px;
}

/* ── Hero ─────────────────────────────── */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
  margin-bottom: 0;
}

.hero .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,29,24,0.25) 0%, rgba(31,29,24,0) 35%, rgba(31,29,24,0.75) 100%);
  z-index: 1;
}

.hero .content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 64px;
}

.hero .content .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: end;
}

.hero .eyebrow {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1 / -1;
}

.hero .eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--rust);
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  grid-column: 1 / -1;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #e8d6b8;
}

.hero .sub {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(246, 241, 231, 0.88);
  max-width: 52ch;
  grid-column: 1 / span 1;
}

.hero .cta-row {
  grid-column: 2 / span 1;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-self: end;
  flex-wrap: wrap;
}

.hero .btn.ghost {
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.55);
}

.hero .btn.ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ── Intro band ─────────────────────────── */
.intro {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--rule);
}

.intro .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro .eyebrow {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.intro .eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--olive);
}

.intro h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.intro h2 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 400;
}

.intro .body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.intro .body p:last-child { margin-bottom: 0; }

/* ── Section helpers ─────────────────────── */
.section {
  padding: 72px 0;
}

.section.bg-alt {
  background: var(--cream-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section .shead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: 48px;
}

.section .shead .eyebrow {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section .shead .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--olive);
}

.section .shead h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.section .shead h2 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 400;
}

.section .shead .rhs p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 52ch;
}

/* ── Service categories ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -20px rgba(31, 29, 24, 0.35);
}

.service-card .illus {
  aspect-ratio: 16 / 10;
  background: var(--cream-alt);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.service-card .illus svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card .body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card .cat {
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card h3 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 400;
}

.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.service-card li {
  font-size: 13px;
  color: var(--ink-dim);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px dotted var(--rule);
}

.service-card li:last-child { border-bottom: 0; }

.service-card li::before {
  content: '▸';
  position: absolute;
  left: 2px;
  top: 5px;
  color: var(--rust);
  font-size: 10px;
}

.service-card .card-cta {
  margin-top: auto;
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  display: inline-block;
}

.service-card .card-cta::after { content: ' →'; }

/* ── Before / After transformation ─────── */
.transform-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-bottom: 36px;
}

.story-card {
  background: var(--cream);
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  overflow: hidden;
}

.story-card .frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.story-card .frame .panel {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.story-card .frame .panel:first-child {
  background: #c2b59a;
  border-right: 1px solid var(--rule-dark);
}

.story-card .frame .panel:last-child {
  background: #dbd0b4;
}

.story-card .frame .panel .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--f-caps);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(31, 29, 24, 0.66);
  padding: 4px 8px;
  z-index: 2;
}

.story-card .frame svg {
  width: 100%;
  height: 100%;
  display: block;
}

.story-card .caption {
  padding: 20px 22px 22px;
}

.story-card .caption h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.story-card .caption p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ── Gallery plates ─────────────────────── */
.plate {
  position: relative;
  border: 1px solid var(--rule-dark);
  background: var(--cream-alt);
  overflow: hidden;
  border-radius: 2px;
}

.plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plate .label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(31,29,24,0.66);
  padding: 6px 10px;
  z-index: 2;
}

.plate .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  color: var(--cream);
  font-size: 13px;
  background: linear-gradient(0deg, rgba(31,29,24,0.82), rgba(31,29,24,0));
}

.plate-wide {
  aspect-ratio: 16 / 7;
  min-height: 260px;
}

/* ── Owners / partnership ──────────────── */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.partners .photo {
  aspect-ratio: 5 / 4;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule-dark);
}

.partners .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners .text h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 20px;
}

.partners .text h3 em {
  font-style: italic;
  color: var(--olive);
}

.partners .text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.partners .names {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}

.partners .names .name {
  font-family: var(--f-caps);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.partners .names .name em {
  font-style: normal;
  display: block;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  font-size: 10px;
  margin-bottom: 4px;
}

/* ── Quote CTA band ─────────────────────── */
.quote-band {
  background: var(--olive-dark);
  color: var(--cream);
  padding: 80px 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(184, 92, 56, 0.18), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 214, 184, 0.08), transparent 50%);
}

.quote-band .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.quote-band h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 18px;
}

.quote-band h2 em {
  font-style: italic;
  color: #e8d6b8;
}

.quote-band p {
  font-size: 16px;
  color: rgba(246, 241, 231, 0.88);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 22px;
}

.quote-band .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.quote-band .btn {
  background: var(--rust);
  border-color: var(--rust);
}

.quote-band .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--ink);
}

.quote-band .btn.ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 231, 0.55);
}

.quote-band .btn.ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.quote-band .phone-card {
  background: rgba(246, 241, 231, 0.08);
  border: 1px solid rgba(246, 241, 231, 0.25);
  border-radius: 2px;
  padding: 28px;
}

.quote-band .phone-card .eyebrow {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.65);
  margin-bottom: 10px;
}

.quote-band .phone-card .num {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 12px;
  display: block;
}

.quote-band .phone-card .hours {
  font-size: 13px;
  color: rgba(246, 241, 231, 0.7);
}

/* ── Quote form ─────────────────────────── */
.quote-form-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.quote-form-block .intro h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
}

.quote-form-block .intro h2 em {
  font-style: italic;
  color: var(--olive);
}

.quote-form-block .intro p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.quote-form-block .intro .also {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}

.quote-form-block .intro .also .k {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 6px;
}

.quote-form-block .intro .also a {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
}

form.qform {
  background: var(--cream);
  border: 1px solid var(--rule-dark);
  padding: clamp(20px, 3vw, 32px);
  border-radius: 2px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

form.qform .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

form.qform .field.full { grid-column: 1 / -1; }

form.qform label {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

form.qform input,
form.qform select,
form.qform textarea {
  font: inherit;
  background: var(--cream-alt);
  border: 1px solid var(--rule-dark);
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 2px;
  min-width: 0;
}

form.qform textarea {
  min-height: 110px;
  resize: vertical;
}

form.qform input:focus,
form.qform select:focus,
form.qform textarea:focus {
  outline: 0;
  border-color: var(--olive);
  background: var(--cream);
}

form.qform .submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  flex-wrap: wrap;
}

form.qform .fine {
  font-family: var(--f-caps);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}

/* ── Inner page hero ─────────────────────── */
.page-hero {
  padding: 84px 0 48px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
}

.page-hero .eyebrow {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero .eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--rust);
}

.page-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 22ch;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--olive);
  font-weight: 300;
}

.page-hero p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

/* ── Service detail blocks ─────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}

.service-detail:last-child { border-bottom: 0; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail .visual {
  aspect-ratio: 4 / 3;
  background: var(--cream-alt);
  border: 1px solid var(--rule-dark);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail .visual svg {
  width: 100%;
  height: 100%;
}

.service-detail .text .cat {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail .text .cat::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--olive);
}

.service-detail .text h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
}

.service-detail .text h2 em {
  font-style: italic;
  color: var(--olive);
}

.service-detail .text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-detail .text ul {
  list-style: none;
  margin-top: 16px;
  columns: 2;
  column-gap: 32px;
}

.service-detail .text li {
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0 8px 18px;
  position: relative;
  break-inside: avoid;
  border-bottom: 1px dotted var(--rule);
}

.service-detail .text li::before {
  content: '▸';
  position: absolute;
  left: 2px;
  top: 8px;
  color: var(--rust);
  font-size: 11px;
}

/* ── About page blocks ──────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-grid .lede {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.about-grid .lede em {
  font-style: italic;
  color: var(--olive);
}

.about-grid .body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.facts {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 24px;
}

.facts .row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule);
}

.facts .row:last-child { border-bottom: 0; }

.facts .k {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 3px;
}

.facts .v {
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--ink);
}

/* ── Gallery page ──────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-bottom: 48px;
}

.gallery-grid .plate {
  aspect-ratio: 4 / 3;
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-grid .plate svg {
  width: 100%;
  height: 100%;
}

/* ── Footer ─────────────────────────────── */
footer {
  margin-top: 0;
  background: var(--ink);
  color: rgba(246, 241, 231, 0.82);
  padding: 56px 0 32px;
  font-size: 14px;
}

footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 32px;
}

footer .brand-col .mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream);
  letter-spacing: -0.014em;
  margin-bottom: 10px;
  display: block;
}

footer .brand-col .mark em {
  font-style: italic;
  color: #9db26f;
}

footer .brand-col p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 32ch;
}

footer h5 {
  font-family: var(--f-caps);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.55);
  margin-bottom: 14px;
  font-weight: 500;
}

footer ul { list-style: none; }

footer li {
  margin-bottom: 8px;
  font-size: 13px;
}

footer a:hover { color: var(--cream); }

footer .bottom {
  border-top: 1px solid rgba(246, 241, 231, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.5);
}

footer .bottom a { color: rgba(246, 241, 231, 0.7); }

/* ── Mobile ─────────────────────────────── */
@media (max-width: 880px) {
  .topbar .row {
    gap: 14px;
    padding: 14px 0;
  }

  .brand .mark { font-size: 18px; }
  .brand .sub { font-size: 9px; }

  .nav-toggle { display: inline-block; }

  nav.primary {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 4;
    border-top: 1px solid var(--rule);
    padding-top: 10px;
    margin-top: 6px;
  }
  nav.primary.open { display: flex; }
  nav.primary a {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
  }
  nav.primary a:last-child { border-bottom: 0; }

  .topbar .contact {
    order: 3;
    flex: 1;
    justify-content: flex-end;
    gap: 10px;
  }
  .topbar .contact .tel { font-size: 13px; }

  .hero { min-height: 72vh; }
  .hero .content .wrap { grid-template-columns: 1fr; }
  .hero .cta-row { grid-column: 1; justify-content: flex-start; }

  .intro .wrap { grid-template-columns: 1fr; gap: 24px; }

  .section { padding: 56px 0; }
  .section .shead { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }

  .services-grid,
  .transform-story,
  .gallery-grid { grid-template-columns: 1fr; }

  .partners,
  .quote-band .wrap,
  .quote-form-block,
  .service-detail,
  .about-grid { grid-template-columns: 1fr; gap: 28px; }

  .service-detail.reverse { direction: ltr; }

  .service-detail .text ul { columns: 1; }

  form.qform { grid-template-columns: 1fr; }

  form.qform .submit-row {
    flex-direction: column;
    align-items: stretch;
  }
  form.qform .submit-row .btn { justify-content: center; }

  footer .cols { grid-template-columns: 1fr; gap: 24px; }

  .facts .row { grid-template-columns: 1fr; gap: 2px; }
  .facts .v { font-size: 14px; }

  .page-hero { padding: 56px 0 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 38px; }
}
