/* DJC Landscaping — design tokens + components */

:root {
  /* neutrals: warm, pulled from the logo's black card and soil tones */
  --ink:        #14150F;
  --ink-soft:   #23251C;
  --paper:      #F5F2EA;
  --paper-2:    #EDE8DC;
  --surface:    #FFFFFF;
  --line:       color-mix(in oklab, var(--ink) 14%, transparent);
  --line-soft:  color-mix(in oklab, var(--ink) 8%, transparent);
  --text:       #1A1B15;
  --muted:      #5E6055;
  --muted-2:    #7C7E71;

  /* accent: the gold from the DJC mark. Used sparingly. */
  --gold:       #B7842B;
  --gold-lift:  #D6A441;
  --moss:       #33502F;   /* structural green, not an accent */
  --danger:     #9B2C21;
  --on-gold:    #17140C;   /* text on the gold accent */
  --scrim:      rgba(250, 247, 239, .92);  /* handle + tags over photography */
  --nav-bg:     #000;      /* solid, never translucent — see brief §6 */
  --hairline:   1px;

  --radius-xs: 2px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  --shadow-1: 0 1px 2px rgba(20,21,15,.06), 0 1px 1px rgba(20,21,15,.04);
  --shadow-2: 0 2px 4px rgba(20,21,15,.05), 0 8px 24px -12px rgba(20,21,15,.22);
  --shadow-3: 0 4px 8px rgba(20,21,15,.06), 0 24px 60px -24px rgba(20,21,15,.34);

  --step--1: clamp(.82rem, .8rem + .1vw, .875rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.075rem);
  --step-1:  clamp(1.2rem, 1.1rem + .4vw, 1.4rem);
  --step-2:  clamp(1.55rem, 1.35rem + .9vw, 2.1rem);
  --step-3:  clamp(2.1rem, 1.7rem + 1.9vw, 3.3rem);
  --step-4:  clamp(2.7rem, 1.9rem + 3.6vw, 5.2rem);

  /* utility type ladder — everything below body size */
  --text-micro: .72rem;
  --text-xs:    .84rem;
  --text-sm:    .92rem;
  --text-base:  .96rem;
  --text-md:    1.02rem;
  --text-lg:    1.1rem;

  /* spacing scale */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* motion */
  --dur-1: 120ms;
  --dur-2: 160ms;
  --dur-3: 200ms;
  --dur-4: 320ms;
  --ease-out: cubic-bezier(.2, .7, .3, 1);
  --ease-emphasis: cubic-bezier(.3, .7, .3, 1);

  /* elevation order */
  --z-sticky: 40;
  --z-callbar: 45;
  --z-skip: 100;

  /* ink-surface foreground ramp (text on --ink) */
  --on-ink:        #FBF8F0;
  --on-ink-body:   #EDE9DD;
  --on-ink-muted:  #C9C5B6;
  --on-ink-faint:  #8E8B7D;
  --on-ink-nav:      rgba(243, 239, 228, .74);
  --on-ink-sub:      rgba(243, 239, 228, .58);
  --on-ink-hairline: rgba(243, 239, 228, .1);
  --on-ink-line:     rgba(243, 239, 228, .14);
  --on-ink-line-2:   rgba(243, 239, 228, .32);
  --on-ink-wash:     rgba(243, 239, 228, .1);

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --sans: "Public Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--step-3); }
h2 { font-size: var(--step-2); letter-spacing: -0.02em; }
h3 { font-size: var(--step-1); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; }
p  { margin: 0; text-wrap: pretty; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }
.stack > * + * { margin-top: 1rem; }

.label {
  font-size: var(--text-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

/* ---------- skip link + focus ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: var(--z-skip);
  background: var(--ink); color: var(--paper); padding: .75rem 1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--on-ink-hairline);
  color: var(--on-ink-body);
}
.site-head__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; color: inherit; }
.brand img { width: 30px; height: auto; }
.brand b {
  font-family: var(--display); font-weight: 700; font-size: var(--text-md); letter-spacing: -0.025em; display: block;
}
.brand__text > span { display: block; font-size: var(--text-micro); letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-sub); }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  text-decoration: none; font-size: var(--text-base); color: var(--on-ink-nav);
  padding-block: .35rem; transition: color 140ms ease, box-shadow 140ms ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--on-ink); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold-lift); }
.head-cta { display: flex; align-items: center; gap: .85rem; }
.phone-link {
  text-decoration: none; font-weight: 600; font-variant-numeric: tabular-nums; font-size: var(--text-base); color: var(--on-ink-body);
  display: inline-flex; align-items: center; gap: .45rem;
}
.phone-link svg { width: 15px; height: 15px; color: var(--gold-lift); }
.site-head :focus-visible { outline-color: var(--gold-lift); }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 46px; padding: .7rem 1.15rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--radius-sm);
  font: inherit; font-size: var(--text-base); font-weight: 600; text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.btn:hover { background: color-mix(in oklab, var(--ink) 88%, var(--gold)); }
.btn:active { transform: translateY(1px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--on-gold); }
.btn--gold:hover { background: var(--gold-lift); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--paper-2); border-color: color-mix(in oklab, var(--ink) 22%, transparent); }
.btn--onDark { --btn-bg: transparent; --btn-fg: var(--on-ink-body); border-color: rgba(243,239,228,.32); }
.btn--onDark:hover { background: rgba(243,239,228,.1); border-color: rgba(243,239,228,.55); }
.btn--lg { min-height: 52px; padding: .85rem 1.5rem; font-size: 1rem; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--on-ink-body); overflow: clip; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; opacity: .55; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,15,10,.94) 0%, rgba(14,15,10,.72) 42%, rgba(14,15,10,.28) 78%),
    linear-gradient(0deg, rgba(14,15,10,.75), rgba(14,15,10,0) 55%);
}
.hero__inner { position: relative; padding-block: clamp(4.5rem, 12vw, 9rem) clamp(3rem, 7vw, 5.5rem); }
.hero h1 { font-size: var(--step-4); color: var(--on-ink); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold-lift); }
.hero__sub { margin-top: 1.5rem; max-width: 44ch; color: var(--on-ink-muted); font-size: var(--step-1); line-height: 1.5; }
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__meta {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem;
  border-top: 1px solid rgba(243,239,228,.18); padding-top: 1.25rem;
  color: var(--on-ink-muted); font-size: var(--text-sm);
}
.hero__meta b { color: var(--on-ink-body); font-weight: 600; }

/* ---------- services ---------- */
.svc { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); grid-template-columns: repeat(12, 1fr); }
.svc__intro { grid-column: 1 / -1; max-width: 52ch; }
.svc-card {
  position: relative; grid-column: span 6;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-1);
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.svc-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--line); }
.svc-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.svc-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { color: var(--muted); font-size: var(--text-base); }
.svc-card ul { margin: 1rem 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: var(--text-sm); color: var(--muted-2); }
.svc-card li::before { content: "·"; margin-right: .55rem; color: var(--gold); }
.svc-card li:first-child::before { content: none; }
.svc-card__go { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--text-sm); }
.svc-card__go svg { width: 14px; height: 14px; transition: transform 160ms ease; }
.svc-card:hover .svc-card__go svg { transform: translateX(3px); }

/* ---------- before / after (signature) ---------- */
.ba { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-2); }
.ba__frame { position: relative; aspect-ratio: 4 / 3; }
.ba__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
}
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 2px; background: var(--scrim); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(20,21,15,.25);
}
.ba__handle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 42px; height: 42px; transform: translate(-50%, -50%);
  border-radius: var(--radius-pill); background: var(--scrim);
  box-shadow: var(--shadow-2);
}
.ba__handle::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 20px; height: 12px; transform: translate(-50%, -50%); z-index: 1;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M6 1 1 6l5 5M14 1l5 5-5 5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M6 1 1 6l5 5M14 1l5 5-5 5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ba__range:focus-visible + .ba__handle::after { outline: 2px solid var(--gold); outline-offset: 2px; }
.ba__tag {
  position: absolute; bottom: .9rem; padding: .3rem .6rem;
  background: rgba(14,15,10,.72); color: var(--on-ink-body); border-radius: var(--radius-xs);
  font-size: var(--text-micro); letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  pointer-events: none;
}
.ba__tag--b { left: .9rem; }
.ba__tag--a { right: .9rem; }

.ba-layout { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .ba-layout { grid-template-columns: 1.15fr .85fr; } }

/* ---------- process ---------- */
.steps { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: var(--hairline); background: var(--line-soft); border-block: 1px solid var(--line-soft); }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li { background: var(--paper); padding: 1.75rem 1.5rem 2rem; }
.steps h3 { font-size: var(--text-lg); margin-bottom: .45rem; }
.steps p { color: var(--muted); font-size: var(--text-base); }
.steps .n { font-family: var(--display); font-weight: 700; font-size: var(--text-xs); letter-spacing: .02em; color: var(--gold); display: block; margin-bottom: 1.25rem; }

/* ---------- gallery ---------- */
.grid-work { display: grid; gap: clamp(.65rem, 1.4vw, 1rem); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .grid-work { grid-template-columns: repeat(3, 1fr); } }
.shot { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--paper-2); border: 0; padding: 0; cursor: zoom-in; }
.shot img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--dur-4) var(--ease-out), filter var(--dur-3) ease; }
.shot:hover img { transform: scale(1.035); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.5rem .85rem .8rem;
  background: linear-gradient(0deg, rgba(14,15,10,.8), transparent);
  color: var(--on-ink-body); font-size: var(--text-xs); text-align: left;
  opacity: 0; transition: opacity 200ms ease;
}
.shot:hover figcaption, .shot:focus-visible figcaption { opacity: 1; }
.shot--wide { grid-column: span 2; }
.shot--wide img { aspect-ratio: 16/10; }
.shot--full { grid-column: 1 / -1; }
.shot--full img { aspect-ratio: 21/9; }

/* ---------- lightbox ---------- */
dialog.lightbox { border: 0; padding: 0; background: transparent; overflow: visible; max-width: min(94vw, 1100px); }
dialog.lightbox::backdrop { background: rgba(14,15,10,.86); }
dialog.lightbox img { border-radius: var(--radius-md); max-height: 84vh; width: auto; margin-inline: auto; }
dialog.lightbox p { color: var(--on-ink-muted); font-size: var(--text-xs); margin-top: .75rem; text-align: center; }
.lightbox__close {
  position: absolute; top: .6rem; right: .6rem;
  width: 40px; height: 40px; border-radius: var(--radius-pill); border: 0; cursor: pointer;
  display: grid; place-items: center; background: var(--paper); color: var(--ink);
}

/* ---------- dark band ---------- */
.band { background: var(--ink); color: var(--on-ink-body); }
.band h2 { color: var(--on-ink); }
.band .lede { color: var(--on-ink-muted); }
.band p { color: var(--on-ink-muted); }
.band .label { color: var(--on-ink-faint); }

/* ---------- coverage ---------- */
.towns { display: flex; flex-wrap: wrap; gap: .5rem .75rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.towns li { font-size: var(--text-sm); color: var(--on-ink-muted); }
.towns li + li::before { content: "/"; margin-right: .75rem; color: rgba(233,229,217,.35); }

/* ---------- quote form ---------- */
.form-shell {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-2);
}
.field { display: block; margin-bottom: 1.1rem; }
.field > span { display: block; font-size: var(--text-xs); font-weight: 600; margin-bottom: .4rem; }
.field .hint { font-weight: 400; color: var(--muted-2); }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%; font: inherit; font-size: var(--text-base); color: var(--text);
  padding: .7rem .8rem; min-height: 46px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 140ms ease, background-color 140ms ease;
}
textarea { min-height: 120px; resize: vertical; }
input:hover, textarea:hover, select:hover { border-color: color-mix(in oklab, var(--ink) 24%, transparent); }
input:focus, textarea:focus, select:focus { background: var(--surface); border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px color-mix(in oklab, var(--gold) 22%, transparent); }
.err { display: block; color: var(--danger); font-size: var(--text-xs); margin-top: .35rem; min-height: 0; }
[aria-invalid="true"] { border-color: var(--danger); }

.choices { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice span {
  display: block; padding: .85rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); font-size: var(--text-sm); cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.choice input:hover + span { border-color: color-mix(in oklab, var(--ink) 28%, transparent); }
.choice input:checked + span { border-color: var(--gold); background: color-mix(in oklab, var(--gold) 10%, var(--paper)); font-weight: 600; }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- estimate dialog ---------- */
dialog.sheet {
  border: 0; padding: 0; background: var(--paper); color: var(--text);
  border-radius: var(--radius-lg); width: min(94vw, 560px); box-shadow: var(--shadow-3);
  max-height: min(88vh, 780px);
}
dialog.sheet[open] { display: flex; flex-direction: column; }
dialog.sheet::backdrop { background: rgba(14,15,10,.6); backdrop-filter: blur(2px); }
.sheet__head { display: flex; align-items: flex-start; gap: 1rem; padding: 1.4rem 1.5rem .75rem; }
.sheet__head h2 { font-size: var(--step-2); }
.sheet__body { padding: .5rem 1.5rem 1.5rem; overflow-y: auto; }
.sheet__foot { display: flex; gap: .6rem; justify-content: space-between; align-items: center; padding: 1rem 1.5rem 1.5rem; }
.sheet__close { display: grid; place-items: center; margin-left: auto; width: 36px; height: 36px; border: 0; border-radius: var(--radius-sm); background: transparent; cursor: pointer; color: var(--muted); transition: background-color var(--dur-1) ease, color var(--dur-1) ease; }
.sheet__close:hover { background: var(--paper-2); color: var(--text); }
.progress { display: flex; gap: .35rem; padding: 0 1.5rem; }
.progress i { height: 3px; flex: 1; background: var(--line); border-radius: var(--radius-pill); }
.progress i.on { background: var(--gold); }
.demo-note { font-size: var(--text-xs); color: var(--muted-2); }
.step[hidden] { display: none; }
.ok-mark { width: 46px; height: 46px; border-radius: var(--radius-pill); background: color-mix(in oklab, var(--moss) 18%, var(--paper)); color: var(--moss); display: grid; place-items: center; margin-bottom: 1rem; }

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: var(--on-ink-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.foot-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-foot h3 { color: var(--on-ink-body); font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; margin-bottom: .9rem; }
.site-foot a { color: var(--on-ink-muted); text-decoration: none; }
.site-foot a:hover { color: var(--on-ink-body); }
.site-foot .brand__text > span { color: var(--on-ink-faint); }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: var(--text-sm); }
.foot-bottom { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(243,239,228,.14); display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; font-size: var(--text-xs); color: var(--on-ink-faint); }

/* ---------- mobile ---------- */
.callbar { display: none; }
@media (max-width: 860px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--nav-bg); border-bottom: 1px solid var(--on-ink-hairline);
    padding: .25rem var(--gutter) 1.5rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }
  .nav[data-open="true"] { opacity: 1; transform: none; visibility: visible; }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--on-ink-hairline); font-size: var(--text-md); color: var(--on-ink-body); }
  .nav a[aria-current="page"] { box-shadow: none; color: var(--gold-lift); }
  .nav-toggle {
    display: grid; place-items: center; width: 44px; height: 44px; padding: 0;
    background: transparent; border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; position: relative; width: 22px; height: 2px; border-radius: 2px;
    background: var(--on-ink-body); transition: transform 200ms cubic-bezier(.3,.7,.3,1), background-color 120ms ease;
  }
  .nav-toggle span::before, .nav-toggle span::after {
    content: ""; position: absolute; left: 0; width: 22px; height: 2px; border-radius: 2px; background: var(--on-ink-body);
    transition: transform 200ms cubic-bezier(.3,.7,.3,1), opacity 120ms ease;
  }
  .nav-toggle span::before { top: -7px; }
  .nav-toggle span::after  { top: 7px; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }
  .head-cta .btn { display: none; }
  .svc-card { grid-column: 1 / -1; }
  body { padding-bottom: 68px; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; z-index: var(--z-callbar); inset: auto 0 0 0; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: color-mix(in oklab, var(--paper) 92%, transparent);
    backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .hero__media img { object-position: 62% 62%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .shot:hover img { transform: none; }
}

/* two-column editorial split used on the service pages */
@media (min-width: 900px) {
  .two { grid-template-columns: .85fr 1.15fr !important; align-items: start; }
  .two .grid-work { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ */
.faq details { border-top: 1px solid var(--line-soft); }
.faq details:last-of-type { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; position: relative;
  font-weight: 600; font-size: var(--text-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.45rem;
  width: 11px; height: 11px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); transition: transform 160ms ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.6rem; }
.faq p { padding-bottom: 1.2rem; color: var(--muted); max-width: 60ch; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: .8fr 1.2fr; align-items: start; }
}

@media (max-width: 560px) {
  .site-head__inner { gap: .75rem; }
  .brand img { width: 34px; height: 34px; }
  .brand b { font-size: var(--text-base); white-space: nowrap; }
  .brand__text > span { display: none; }
  .head-cta .phone-link { display: none; }
  .hero__sub { font-size: var(--text-md); }
  .hero__meta { gap: .6rem 1.25rem; font-size: var(--text-xs); }
}

/* pending / disabled submit */
.btn[disabled] { opacity: .6; cursor: progress; }
.btn[aria-busy="true"] { position: relative; }

/* type-led hero (used where no honest photograph exists yet) */
.hero--plain { background: var(--ink); }
.hero--plain .hero__inner { padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(3rem, 7vw, 5rem); }
.hero--plain::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: var(--on-ink-hairline);
}
.grid-work--band .shot { border-radius: var(--radius-md); }
.grid-work--pair { grid-template-columns: repeat(2, 1fr); }
.grid-work--pair img { aspect-ratio: 4 / 3; }

/* section header with a trailing action */
.section-head {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--space-5);
}

/* Google rating — verified proof, links to the listing */
.rating {
  display: inline-flex; align-items: center; gap: .4rem;
  text-decoration: none; font-size: var(--text-sm);
}
.rating .star { color: var(--gold); flex: none; }
.rating b { font-weight: 600; }
.rating span { color: inherit; opacity: .82; }
.hero__meta .rating { color: var(--on-ink-body); }
.hero__meta .rating:hover { color: var(--on-ink); }
.hero__meta .rating b { color: var(--on-ink); }
.rating:hover .star { color: var(--gold-lift); }
