/* Legacy Home Remodels — Architect-grade, Park City
   Charcoal + cream + gold. Wordmark only. */

:root {
  /* Palette */
  --ink: #1A1A1C;          /* charcoal text on cream */
  --ink-deep: #16140F;     /* warm near-black */
  --ink-warm: #1E1B15;     /* second dark tone, for banding */
  --cream: #F6F1E7;        /* primary light bg */
  --paper: #FBF8F2;        /* off-white */
  --taupe: #C9A24B;        /* gold accent (on dark) */
  --taupe-deep: #A8843E;   /* deep gold (decorative) */
  --gold-soft: #E4D2A1;    /* soft gold (on dark, type) */
  --gold-ink: #7C5E22;     /* gold-family, AA-legible on cream */
  --muted: #55504A;        /* muted text on light */

  /* Hairlines */
  --line: #E3DCCF;
  --line-soft: #EDE7DB;
  --line-dark: rgba(246, 241, 231, 0.12);
  --line-dark-strong: rgba(246, 241, 231, 0.24);

  /* On-dark text */
  --on-dark: #F6F1E7;
  --on-dark-muted: rgba(246, 241, 231, 0.68);
  --on-dark-soft: rgba(246, 241, 231, 0.86);

  /* Type */
  --serif: "Source Serif 4", "Source Serif Pro", "EB Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1340px;
  --gutter: 64px;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

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

::selection { background: var(--ink); color: var(--cream); }

:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

/* ---------- Type system ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.0;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section-dark .eyebrow,
.on-dark .eyebrow { color: var(--taupe); }

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }
section[id] { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
  white-space: nowrap;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-on-dark {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--cream);
}
.btn-on-dark:hover { background: transparent; color: var(--cream); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 26, 28, 0.35);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246, 241, 231, 0.4);
}
.btn-ghost-light:hover { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.btn .line { width: 20px; height: 1px; background: currentColor; transition: width 0.45s var(--ease); flex: none; }
.btn:hover .line { width: 32px; }

/* Text-link with thin underline */
.link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  position: relative;
  color: var(--ink);
}
.link::after {
  content: "";
  position: absolute;
  left: 0; right: 34px; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.45s var(--ease);
}
.link:hover::after { right: 0; }
.link .line { width: 22px; height: 1px; background: currentColor; flex: none; }

/* ---------- Wordmark ---------- */

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 9px;
  color: var(--ink);
  transition: color 0.4s var(--ease);
}
.wordmark-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.08em;
  line-height: 1;
}
.wordmark-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
}
.wordmark-light { color: var(--cream); }
.wordmark-footer .wordmark-name { font-size: 42px; letter-spacing: 0.07em; }
.wordmark-footer .wordmark-sub { font-size: 9.5px; letter-spacing: 0.3em; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: height 0.55s var(--ease), background 0.55s var(--ease), border-color 0.55s var(--ease);
}
.nav.scrolled {
  height: 60px;
  border-bottom-color: var(--line);
  background: rgba(246, 241, 231, 0.97);
}
.nav-logo-link { display: inline-flex; }
.nav-logo { height: 46px; width: auto; display: block; transition: height 0.55s var(--ease); }
.nav.scrolled .nav-logo { height: 38px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  color: var(--ink);
  margin-left: auto;
}
.nav-links a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: var(--muted);
  transition: color 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* Nav actions: tap-to-call sits beside the CTA. A referred homeowner usually
   wants to dial, not fill a form — the number was previously footer-only. */
.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-phone {
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  padding: 8px 0 7px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease);
}
.nav-phone:hover { border-bottom-color: var(--gold-ink, var(--taupe-deep)); }

/* CTA as a gold-ruled text link — no boxed button */
.nav-cta {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  padding: 8px 0 7px;
  position: relative;
  white-space: nowrap;
  margin-left: 0;
}
.nav-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--taupe-deep);
  transition: background 0.35s var(--ease);
}
.nav-cta:hover::after { background: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--ink-deep);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 62% center;
  background-image: url("assets/work/bath-hero-after-1.jpeg");
  filter: brightness(0.62) contrast(1.06) saturate(0.8);
  transform: scale(1.04);
  animation: heroDrift 22s var(--ease-out) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 11, 8, 0.92) 0%, rgba(12, 11, 8, 0.62) 42%, rgba(12, 11, 8, 0.18) 72%, rgba(12, 11, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(12, 11, 8, 0.55) 0%, rgba(12, 11, 8, 0) 30%, rgba(12, 11, 8, 0) 52%, rgba(12, 11, 8, 0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 68px;
  padding-bottom: 44px;
  margin-top: auto;
}
.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow .rule { width: 44px; height: 1px; background: var(--taupe); flex: none; }

.hero-text { max-width: 900px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 7.2vw, 116px);
  line-height: 0.93;
  letter-spacing: -0.038em;
  font-weight: 400;
  color: var(--cream);
  max-width: 13ch;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); letter-spacing: -0.03em; }
.hero-sub {
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 26px);
  font-style: italic;
  color: var(--on-dark-soft);
  line-height: 1.35;
}
.hero-body {
  margin-top: 26px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--on-dark-soft);
  max-width: 46ch;
}
.hero-ctas {
  margin-top: 38px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: baseline;
  padding: 26px 0 30px;
  border-top: 1px solid var(--line-dark-strong);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  gap: 20px;
}
.hero-meta strong { color: var(--cream); font-weight: 500; letter-spacing: 0.16em; }
.hero-meta-item { display: flex; flex-direction: column; gap: 8px; }
.hero-meta-item:nth-child(2) { text-align: center; }
.hero-meta-item:nth-child(3) { text-align: right; }

/* Orchestrated hero load */
.hero-inner > *,
.hero-meta {
  animation: heroIn 1.1s var(--ease-out) both;
}
.hero-eyebrow { animation: heroIn 1s var(--ease-out) 0.05s both; }
.hero-text    { animation: heroIn 1.1s var(--ease-out) 0.16s both; }
.hero-meta    { animation: heroIn 1.1s var(--ease-out) 0.34s both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Sections ---------- */

.section { padding: 150px 0; background: var(--cream); }
.section-paper { background: var(--paper); padding: 150px 0; }
.section-dark  { background: var(--ink-deep); color: var(--on-dark-soft); padding: 150px 0; }
.section-tight { padding: 110px 0; }

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--cream); }

/* Section header pattern */
.section-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 92px;
}
.section-head .eyebrow { margin-bottom: 26px; display: inline-block; }
.section-head h2,
.section-head h1 {
  font-size: clamp(42px, 5.8vw, 92px);
  max-width: 11ch;
  line-height: 0.94;
}
.section-head h2 em,
.section-head h1 em { font-style: italic; color: var(--gold-ink); }
.section-dark .section-head h2 em,
.section-dark .section-head h1 em { color: var(--gold-soft); }
.section-head .head-body {
  font-size: 16px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 48ch;
  padding-bottom: 8px;
}
.section-dark .section-head .head-body { color: var(--on-dark-soft); }

/* Hierarchy across sections: the gallery leads, the supporting sections step down */
#approach .section-head h2 { font-size: clamp(40px, 4.9vw, 74px); }
#scope .section-head h2 { font-size: clamp(38px, 4.2vw, 62px); max-width: 13ch; }

/* ---------- Intro band ---------- */

.intro { background: var(--cream); padding: 175px 0; position: relative; }
.intro-inner {
  display: grid;
  grid-template-columns: 0.5fr 2fr;
  gap: 80px;
  align-items: start;
}
.intro-eyebrow { position: sticky; top: 120px; }
.intro-text {
  font-family: var(--serif);
  font-size: clamp(27px, 3.4vw, 52px);
  line-height: 1.16;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.026em;
  max-width: 30ch;
  text-wrap: pretty;
}
.intro-text em { font-style: italic; color: var(--gold-ink); }
.intro-text + .intro-text { margin-top: 32px; }

.intro-signature {
  margin-top: 66px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 700px;
}
.intro-signature .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}

/* ---------- Approach ---------- */

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.approach-item {
  padding: 48px 40px 52px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.approach-item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--taupe-deep);
  transition: width 0.7s var(--ease);
}
.approach-item:hover::before { width: 100%; }
.approach-item:last-child { border-right: 0; padding-right: 0; }
.approach-item:first-child { padding-left: 0; }
.approach-item:not(:first-child) { padding-left: 40px; }
.approach-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-ink);
  margin-bottom: 46px;
  letter-spacing: 0.05em;
}
.approach-item h3 {
  font-size: clamp(22px, 2.1vw, 29px);
  margin-bottom: 20px;
  letter-spacing: -0.022em;
  line-height: 1.08;
}
.approach-item p {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 32ch;
}

/* ---------- Scope ledger ---------- */
.scope-ledger { border-top: 1px solid var(--line); }
.scope-row {
  display: grid;
  grid-template-columns: auto 1fr 1.9fr auto;
  gap: 28px 60px;
  align-items: baseline;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.5s var(--ease);
  text-decoration: none;
  color: inherit;
}
.scope-row:hover { padding-left: 10px; }
.scope-icon {
  align-self: center;
  display: inline-flex;
  color: var(--gold-ink);
  opacity: 0.85;
}
.scope-more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.scope-row:hover .scope-more { color: var(--ink); }
.scope-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.scope-row p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--muted);
}

/* ---------- Selected Work (gallery, dark) ---------- */

.work {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding: 150px 0 140px;
}
.work .section-head h2 { color: var(--cream); }
.work .section-head h2 em { color: var(--gold-soft); }
.work .section-head .head-body { color: var(--on-dark-soft); }
.work .eyebrow { color: var(--taupe); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 18px;
}
.work-tile {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
}
.work-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.95) contrast(1.05) saturate(0.86);
}
.work-tile:hover img { transform: scale(1.045); filter: brightness(1.03) contrast(1.04) saturate(0.96); }
.work-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,8,0) 55%, rgba(12,11,8,0.34) 78%, rgba(12,11,8,0.86) 100%);
  pointer-events: none;
  transition: opacity 0.6s var(--ease);
}
.work-info {
  position: absolute;
  left: 26px; right: 26px; bottom: 22px;
  z-index: 2;
  color: var(--cream);
  transition: transform 0.6s var(--ease);
}
/* Hierarchy flipped: the distinct room name leads, the repeated location recedes */
.work-info .label {
  display: block;
  font-family: var(--serif);
  font-size: clamp(19px, 1.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cream);
  text-transform: none;
  margin-bottom: 10px;
}
.work-info .caption {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
  font-style: normal;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.work-tile:hover .work-info .caption { opacity: 1; transform: translateY(0); }

/* tile sizes — asymmetric rhythm */
.w-7x5 { grid-column: span 7; grid-row: span 6; }
.w-5x5 { grid-column: span 5; grid-row: span 6; }
.w-4x4 { grid-column: span 4; grid-row: span 5; }
.w-8x4 { grid-column: span 8; grid-row: span 5; }
.w-6x4 { grid-column: span 6; grid-row: span 5; }

.work-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.work-footer .note {
  color: var(--on-dark-muted);
  font-size: 15px;
  max-width: 54ch;
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.6;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}
.about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-deep);
  position: sticky;
  top: 120px;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
  filter: saturate(0.82) brightness(0.92) contrast(1.05);
}
.about-img:hover img { transform: scale(1.035); }
.about-img-caption {
  position: absolute;
  bottom: 26px; left: 26px; right: 26px;
  z-index: 2;
  color: var(--cream);
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 241, 231, 0.32);
}
.about-img-caption span:first-child { color: var(--gold-soft); }
.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(12, 11, 8, 0.8) 100%);
  pointer-events: none;
}
.about-content h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  margin-bottom: 34px;
  max-width: 13ch;
  line-height: 0.96;
}
.about-content h2 em { font-style: italic; color: var(--gold-ink); }
.about-content .lead-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.42;
  margin-bottom: 38px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  max-width: 30ch;
}
.about-content p {
  font-size: 15.5px;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 54ch;
}
.about-content p em { color: var(--ink); font-style: italic; }

.about-credentials {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cred .label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
  margin-bottom: 14px;
}
.cred .value {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cred .value small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.5;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.review-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  background: var(--paper);
}
.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.review-meta { display: flex; flex-direction: column; gap: 3px; }
.review-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-room {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
@media (max-width: 900px){ .reviews-grid { grid-template-columns: 1fr; } }

.reviews-cta { padding: 130px 0; }
.reviews-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: 640px;
}
.reviews-cta-inner .eyebrow { color: var(--gold-soft); margin-bottom: 22px; display: inline-block; }
.reviews-cta-inner h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 22px;
}
.reviews-cta-inner h2 em { font-style: italic; color: var(--gold-soft); }
.reviews-cta-inner .head-body { color: var(--on-dark-soft); max-width: 52ch; margin: 0 auto; }
.reviews-cta-btn { font-size: 12px; padding: 20px 40px; }
@media (max-width: 720px){ .reviews-cta { padding: 90px 0; } }

/* ---------- Transformations (Before / After, dark) ---------- */

.transform {
  background: var(--ink-deep);
  color: var(--on-dark-soft);
  padding: 150px 0 140px;
}
.transform h2 { color: var(--cream); }
.transform .eyebrow { color: var(--taupe); }
.transform-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 84px;
}
.transform-head h2 {
  font-size: clamp(42px, 5.4vw, 84px);
  max-width: 11ch;
  line-height: 0.94;
}
.transform-head h2 em { font-style: italic; color: var(--gold-soft); }
.transform-head .helper {
  color: var(--on-dark-soft);
  font-size: 16px;
  line-height: 1.78;
  max-width: 48ch;
  padding-bottom: 8px;
}
.transform-head .eyebrow { display: inline-block; margin-bottom: 26px; }

.transform-row { margin-bottom: 108px; }
.transform-row:last-child { margin-bottom: 0; }

/* One object: two frames sharing a single gold seam, no gap */
.transform-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background: var(--ink);
}
.transform-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.transform-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
}
.transform-frame.before img {
  filter: saturate(0.32) brightness(0.72) contrast(1.05);
}
.transform-frame.before:hover img { filter: saturate(0.7) brightness(0.92) contrast(1.03); }
.transform-frame.after img {
  filter: saturate(0.95) brightness(0.98) contrast(1.06);
}
.transform-frame:hover img { transform: scale(1.03); }
/* gold seam */
.transform-frame.after::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--taupe);
  z-index: 4;
}
.transform-frame .frame-label {
  position: absolute;
  top: 0; left: 0;
  z-index: 3;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 13px 18px;
}
.transform-frame.before .frame-label {
  background: rgba(12, 11, 8, 0.72);
  color: rgba(246, 241, 231, 0.72);
  backdrop-filter: blur(6px);
}
.transform-frame.after .frame-label {
  background: var(--taupe);
  color: var(--ink-deep);
}
.transform-frame .frame-cap {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.transform-frame.before .frame-cap { color: rgba(246, 241, 231, 0.7); }
.transform-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,8,0.45) 0%, rgba(12,11,8,0) 26%, rgba(12,11,8,0) 55%, rgba(12,11,8,0.85) 100%);
  pointer-events: none;
  z-index: 2;
}

.transform-caption {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.transform-caption .tc-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.transform-caption .tc-meta span:first-child { color: var(--gold-soft); }
.transform-caption .desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 52ch;
  letter-spacing: -0.005em;
}

/* ---------- Partners ---------- */

.partners { background: var(--cream); padding: 140px 0; border-top: 1px solid var(--line); }
.partners-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.partners-eyebrow .eyebrow { display: block; margin-bottom: 18px; }
.partners-eyebrow .helper {
  font-size: 13px;
  font-style: italic;
  font-family: var(--serif);
  color: var(--muted);
  line-height: 1.55;
  max-width: 28ch;
}
.partners-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
  max-width: 28ch;
}
.partners-quote::before { content: "\201C"; color: var(--taupe-deep); margin-right: 4px; }
.partners-quote::after  { content: "\201D"; color: var(--taupe-deep); margin-left: 2px; }
.partners-attribution {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 520px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
.partners-attribution .who {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 17px;
  color: var(--ink);
}
.partners-placeholder {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(168, 155, 140, 0.15);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* ---------- Service area ---------- */

.area-strip {
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 60px;
  align-items: start;
  padding: 74px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-strip-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
  font-weight: 600;
}
.area-strip-list {
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1.4;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.area-strip-list .primary { color: var(--ink); font-style: italic; }
.area-strip-list .sep { color: var(--taupe-deep); margin: 0 12px; font-style: normal; }
.area-note {
  margin-top: 14px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  max-width: 24ch;
  text-wrap: balance;
}

/* ---------- Consultation CTA ---------- */

.cta {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 190px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/work/master-after-3.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  filter: grayscale(0.55) contrast(1.15) brightness(0.72);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 8% 50%, rgba(12,11,8,0.94) 0%, rgba(12,11,8,0.72) 45%, rgba(12,11,8,0.42) 100%),
    linear-gradient(180deg, rgba(12,11,8,0.5) 0%, rgba(12,11,8,0.2) 45%, rgba(12,11,8,0.7) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}
.cta-eyebrow { color: var(--taupe); display: inline-block; margin-bottom: 26px; }
.cta h2 {
  color: var(--cream);
  font-size: clamp(52px, 8vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.038em;
  max-width: 9ch;
}
.cta h2 em { font-style: italic; color: var(--gold-soft); }
.cta-body {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-bottom: 14px;
}
.cta-body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.5;
  color: var(--on-dark-soft);
  max-width: 42ch;
}
.cta-body .btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink-deep);
  color: var(--on-dark-muted);
  padding: 88px 0 34px;
  border-top: 1px solid var(--line-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--line-dark);
  align-items: end;
}
.footer .wordmark { color: var(--cream); }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 34ch;
  margin-top: 26px;
}
.footer-cta { margin-top: 28px; }
.footer-contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-services-row {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--on-dark-muted);
}
.footer-services-row a { color: var(--on-dark-muted); text-decoration: none; }
.footer-services-row a:hover { color: var(--cream); }
.footer-services-row .sep { margin: 0 8px; color: var(--line-dark); }
@media (max-width: 720px){
  .footer-services-row { display: flex; flex-direction: column; gap: 8px; }
  .footer-services-row .sep { display: none; }
}
.footer-contact-col .label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}
.footer-contact-col .value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  display: block;
  transition: color 0.3s var(--ease);
  letter-spacing: 0;
  line-height: 1.4;
}
.footer-motto {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
a.value:hover { color: var(--taupe); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.5);
}
.license-line { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--taupe); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Modal (Consultation form) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 8, 0.78);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 32px;
  animation: fadeIn 0.35s var(--ease);
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  width: 100%;
  max-width: 640px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  animation: slideUp 0.5s var(--ease-out);
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}
@keyframes slideUp { from { transform: translateY(22px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-head {
  padding: 52px 52px 30px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.modal-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.modal-head h3 { font-size: clamp(32px, 3.4vw, 46px); line-height: 1.04; letter-spacing: -0.03em; max-width: 15ch; }
.modal-head h3 em { font-style: italic; color: var(--gold-ink); }
.modal-head p { color: var(--muted); font-size: 14.5px; line-height: 1.68; margin-top: 16px; max-width: 44ch; }
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background 0.3s var(--ease);
}
.modal-close:hover { background: var(--line); }
.modal-body { padding: 32px 52px 46px; overflow-y: auto; }

.field { margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(85, 80, 74, 0.55); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 96px; line-height: 1.55; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231A1A1C' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.modal-submit { width: 100%; margin-top: 18px; justify-content: center; padding: 20px; }
.modal-fineprint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 22px;
  letter-spacing: 0.02em;
  font-style: italic;
  font-family: var(--serif);
}

.license-badge {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--gold-ink);
  display: inline-grid;
  place-items: center;
  color: var(--gold-ink);
  flex: none;
}
.license-badge svg { width: 11px; height: 11px; }

.service-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 26px;
}
.approach-item-photo h3 { margin-bottom: 12px; }

.modal-confirm { padding: 76px 52px; text-align: center; }
.modal-confirm .seal {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid var(--taupe-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--gold-ink);
}
.modal-confirm h3 { font-size: clamp(32px, 3.4vw, 42px); margin-bottom: 16px; line-height: 1.08; }
.modal-confirm h3 em { font-style: italic; color: var(--gold-ink); }
.modal-confirm p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 40ch; margin: 0 auto 34px; }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* Staggered children inside revealed grids */
.reveal.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal.stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal.stagger.in > *:nth-child(2) { transition-delay: 0.11s; }
.reveal.stagger.in > *:nth-child(3) { transition-delay: 0.18s; }
.reveal.stagger.in > *:nth-child(4) { transition-delay: 0.25s; }
.reveal.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal.stagger.in > *:nth-child(6) { transition-delay: 0.39s; }
.reveal.stagger.in > *:nth-child(7) { transition-delay: 0.46s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .reveal.stagger > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .section-head,
  .transform-head { grid-template-columns: 1fr; gap: 34px; margin-bottom: 66px; align-items: start; }
  .section-head h2, .transform-head h2 { max-width: 14ch; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item { padding: 44px 34px !important; border-bottom: 1px solid var(--line); }
  .approach-item:nth-child(2n) { border-right: 0; padding-right: 0 !important; }
  .approach-item:nth-child(2n+1) { padding-left: 0 !important; }
  .partners-inner { grid-template-columns: 1fr; gap: 40px; }
  .area-strip { grid-template-columns: 1fr; gap: 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img { position: static; max-width: 560px; }
  .cta-inner { grid-template-columns: 1fr; gap: 46px; align-items: start; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .work-grid { grid-auto-rows: 76px; }
}

@media (max-width: 760px) {
  :root { --gutter: 22px; --nav-h: 62px; }

  .section, .section-paper, .section-dark, .intro, .partners { padding: 84px 0; }
  .transform, .work { padding: 84px 0 78px; }
  .cta { padding: 96px 0; }

  /* Nav */
  .nav-logo { height: 34px; }
  .nav.scrolled .nav-logo { height: 30px; }
  .nav-cta { font-size: 9px; letter-spacing: 0.14em; margin-left: 16px; }

  /* Hero */
  .hero-inner { padding-top: 88px; padding-bottom: 38px; gap: 26px; }
  .hero-bg { background-position: 70% center; filter: brightness(0.7) contrast(1.04) saturate(0.82); }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.2em; gap: 10px; }
  .hero-eyebrow .rule { width: 24px; }
  .hero h1 { font-size: clamp(46px, 13.6vw, 62px); line-height: 0.94; max-width: 100%; }
  .hero-sub { margin-top: 20px; font-size: 19px; }
  .hero-body { margin-top: 20px; font-size: 15px; max-width: 100%; }
  .hero-ctas { margin-top: 32px; gap: 22px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: space-between; padding: 17px 22px; }
  .hero-ctas .link { align-self: flex-start; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 22px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .hero-meta-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 13px 0;
    border-top: 1px solid var(--line-dark);
    text-align: left !important;
  }
  .hero-meta strong { font-size: 10px; letter-spacing: 0.1em; text-align: right; }

  /* Intro */
  .intro-inner { grid-template-columns: 1fr; gap: 26px; }
  .intro-eyebrow { position: static; }
  .intro-text { font-size: 27px; max-width: 100%; line-height: 1.24; }
  .intro-signature { margin-top: 42px; }

  /* Approach — ledger on mobile */
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item {
    padding: 30px 0 32px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: baseline;
  }
  .approach-item:last-child { border-bottom: 0; }
  .approach-num { margin-bottom: 0; grid-row: 1; font-size: 14px; }
  .approach-item h3 { grid-column: 2; font-size: 25px; margin-bottom: 12px; }
  .approach-item p { grid-column: 2; max-width: 100%; font-size: 15px; }

  /* Scope */
  .scope-row { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
  .scope-row:hover { padding-left: 0; }
  .scope-row p { font-size: 15px; line-height: 1.75; }

  /* Work grid — portrait discipline */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
  }
  .work-tile { grid-column: span 1 !important; grid-row: auto !important; aspect-ratio: 3/4; }
  .work-tile:nth-child(1) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile:nth-child(2) { grid-column: span 2 !important; aspect-ratio: 4/5; }
  .work-tile:nth-child(5) { grid-column: span 2 !important; aspect-ratio: 16/10; }
  .work-tile:nth-child(6) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile:nth-child(7) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile:nth-child(8) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile:nth-child(9) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile:nth-child(10) { grid-column: span 2 !important; aspect-ratio: 4/3; }
  .work-tile::after {
    background: linear-gradient(180deg, rgba(12,11,8,0) 42%, rgba(12,11,8,0.5) 72%, rgba(12,11,8,0.92) 100%);
  }
  .work-info { left: 16px; right: 16px; bottom: 14px; }
  .work-info .label { font-size: 19px; margin-bottom: 6px; }
  .work-info .caption { opacity: 1; transform: none; font-size: 8.5px; letter-spacing: 0.18em; }
  /* Narrow paired tiles: room name only — the repeated location line is noise at this width */
  .work-tile:nth-child(3) .caption,
  .work-tile:nth-child(4) .caption { display: none; }
  .work-tile:nth-child(3) .label,
  .work-tile:nth-child(4) .label { font-size: 16px; margin-bottom: 0; }
  .work-footer { margin-top: 40px; }
  .work-footer .note { font-size: 15px; }

  /* Transformations */
  .transform-row { margin-bottom: 66px; }
  .transform-pair { grid-template-columns: 1fr; gap: 0; }
  .transform-frame { aspect-ratio: 4/5; }
  .transform-frame.after::before { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 1px; }
  .transform-frame .frame-label { font-size: 8.5px; padding: 10px 14px; letter-spacing: 0.24em; }
  .transform-frame .frame-cap { font-size: 15px; bottom: 16px; left: 16px; right: 16px; }
  .transform-caption { grid-template-columns: 1fr; gap: 16px; margin-top: 20px; }
  .transform-caption .tc-meta { flex-direction: row; justify-content: space-between; font-size: 9px; letter-spacing: 0.16em; }
  .transform-caption .desc { font-size: 17px; }

  /* About */
  .about-img { max-width: 100%; aspect-ratio: 4/5; }
  .about-content h2 { font-size: 40px; max-width: 100%; }
  .about-content .lead-line { font-size: 21px; max-width: 100%; margin-bottom: 30px; padding-bottom: 30px; }
  .about-content p { font-size: 15.5px; max-width: 100%; }
  .about-credentials {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }
  .about-credentials .cred {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .cred .label { margin-bottom: 0; }
  .cred .value { font-size: 26px; text-align: right; }
  .cred .value small { text-align: right; font-size: 9px; }

  /* Area */
  .area-strip { grid-template-columns: 1fr; gap: 22px; padding: 46px 0; }
  .area-note { max-width: 100%; }
  .area-strip-list { font-size: 23px; line-height: 1.45; }
  .area-strip-list .sep { margin: 0 7px; }

  /* CTA */
  .cta-inner { gap: 34px; }
  .cta h2 { font-size: clamp(46px, 13.4vw, 62px); max-width: 100%; }
  .cta-body p { font-size: 20px; max-width: 100%; }
  .cta-body .btn-row { flex-direction: column; align-items: stretch; }
  .cta-body .btn { justify-content: space-between; }

  /* Footer */
  .footer { padding: 64px 0 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 44px; }
  .wordmark-footer .wordmark-name { font-size: 34px; }
  .footer-contact-row { grid-template-columns: 1fr; gap: 0; }
  .footer-contact-col {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: baseline;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .footer-contact-col .label { margin-bottom: 0; letter-spacing: 0.18em; }
  .footer-contact-col .value { font-size: 14.5px; overflow-wrap: anywhere; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 9px; }
  .license-line { font-size: 9px; }

  /* Modal */
  .modal-overlay { padding: 0; }
  .modal { max-width: 100%; max-height: 100vh; height: 100%; }
  .modal-head { padding: 68px 22px 26px; }
  .modal-body { padding: 26px 22px 40px; }
  .modal-confirm { padding: 80px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Modal: submit failure + alt contact (added 2026-07-31) ---------- */
.modal-error {
  margin: 4px 0 14px;
  padding: 12px 14px;
  border: 1px solid #A8843E;
  background: rgba(168, 132, 62, 0.08);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink, #16140F);
}
.modal-error a { font-weight: 600; border-bottom: 1px solid currentColor; }
.modal-submit[disabled] { opacity: 0.55; cursor: progress; }
.modal-confirm-alt { margin-top: 10px; font-size: 14px; }
.modal-confirm-alt a { font-weight: 600; border-bottom: 1px solid currentColor; white-space: nowrap; }

/* Tap-to-call stays visible on mobile even though nav links collapse */
@media (max-width: 760px) {
  .nav-actions { gap: 16px; }
  .nav-phone { font-size: 13px; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }   /* keep the phone; the hero CTA is one scroll away */
  .nav-phone { font-size: 14px; }
}

/* Both owners' numbers — matches the printed business cards (2026-07-31) */
.cta-phones { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-size: 15px; color: var(--on-dark-soft); }
.cta-phones a { color: var(--cream); border-bottom: 1px solid rgba(246,241,231,.35); padding-bottom: 2px; }
.cta-phones a:hover { border-bottom-color: var(--cream); }
.cta-phones .sep { color: var(--taupe); }
@media (max-width: 560px) { .cta-phones { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-phones .sep { display: none; } }
