/* ============================================================
   Raise The Bar Events — core stylesheet
   Palette: chilled paper, bottle-green ink, herb sage, dried-citrus amber
   Type: Fraunces (display) / Karla (body) / DM Mono (utility)
   ============================================================ */

:root {
  --paper:    #F5F7F3;
  --paper-2:  #EDF0EA;
  --card:     #FFFFFF;
  --ink:      #16211B;
  --ink-2:    #4C574E;
  --ink-3:    #74806F;
  --olive:    #4F6152;
  --amber:    #B5762A;
  --amber-lt: #F2E7D5;
  --stone:    #DBDFD5;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-mono:    "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --sect: clamp(4rem, 9vw, 7.5rem);
  --r: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Anchor targets must clear the sticky header. JS refines this further,
   but this keeps the landing correct with JS disabled. */
:root { --header-h: 75px; }
main [id], main section[id] { scroll-margin-top: calc(var(--header-h) + 1.25rem); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

figure { margin: 0; }

a { color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.15rem; font-family: var(--f-mono); font-size: .8rem;
}
.skip:focus { left: .5rem; top: .5rem; }

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 6.6vw, 5.1rem); }
h2 { font-size: clamp(1.95rem, 4.1vw, 3.15rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); line-height: 1.25; letter-spacing: -0.005em; }
h4 { font-size: 1.05rem; line-height: 1.3; }

p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lede, .mrow-note, .acc-body, .card p, .rules li, .pkg ul li, .spec-v, .form-note, .est-disclaimer {
  text-wrap: pretty;
}

.lede {
  font-size: clamp(1.1rem, 1.65vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 46ch;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--amber);
  flex: none;
}
.eyebrow.is-plain::before { display: none; }

.em-it { font-style: italic; color: var(--olive); }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.75rem); }
.section--alt { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink .lede { color: #B8C2B6; }
.section--ink .eyebrow { color: #D8A860; }
.section--ink .eyebrow::before { background: #D8A860; }

.rule { border: 0; border-top: 1px solid var(--stone); margin: 0; }

.head-block { max-width: 60ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.head-block .lede { margin-top: 1.15rem; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--f-mono);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  text-decoration: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: var(--olive); border-color: var(--olive); transform: translateY(-1px); }

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

.btn--amber { background: var(--amber); border-color: var(--amber); color: #FFF; }
.btn--amber:hover { background: var(--ink); border-color: var(--ink); }

.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: var(--amber); border-color: var(--amber); color: #FFF; }

.btn--outline-light { background: transparent; color: var(--paper); border-color: rgba(245,247,243,.35); }
.btn--outline-light:hover { background: transparent; color: #D8A860; border-color: #D8A860; }

.btn--sm { padding: .7rem 1.1rem; font-size: .7rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.tlink {
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--stone); padding-bottom: 3px;
  transition: color .18s ease, border-color .18s ease;
  display: inline-block;
}
.tlink:hover { color: var(--amber); border-color: var(--amber); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,247,243,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 74px;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  font-family: var(--f-mono); font-size: .74rem; font-weight: 500; letter-spacing: .06em;
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--ink); border-radius: 50%;
  color: var(--ink);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name b {
  font-family: var(--f-display); font-weight: 500; font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.brand-name span {
  font-family: var(--f-mono); font-size: .6rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
}

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .11em;
  text-transform: uppercase; text-decoration: none; color: var(--ink-2);
  transition: color .18s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--amber); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom: 1px solid var(--amber); padding-bottom: 2px; }
.nav .btn { color: var(--paper); }
.nav .btn[aria-current="page"] { border-bottom: 1px solid var(--ink); }

.nav-toggle {
  display: none;
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--stone); color: var(--ink);
  padding: .6rem .9rem; border-radius: var(--r); cursor: pointer;
}

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

.hero { border-bottom: 1px solid var(--stone); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r);
}
.hero-figure::after {
  content: ""; position: absolute; inset: auto auto -14px -14px;
  width: 46%; height: 1px; background: var(--amber);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  margin-top: 2.1rem; padding-top: 1.5rem; border-top: 1px solid var(--stone);
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .05em; color: var(--ink-2);
}
.hero-stats b { color: var(--ink); font-weight: 500; }

/* Service rail */
.rail { background: var(--ink); color: var(--paper); }
.rail-inner {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; align-items: center;
  padding-block: 1.05rem;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .17em; text-transform: uppercase;
}
.rail-inner span { display: inline-flex; align-items: center; gap: 1.6rem; }
.rail-inner span::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }
.rail-inner span:last-child::after { display: none; }

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--stone);
  border-radius: var(--r);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  display: flex; flex-direction: column; gap: .85rem;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--olive); transform: translateY(-2px); }
.card p { color: var(--ink-2); font-size: .97rem; }
.card .tlink { margin-top: auto; align-self: flex-start; }

.card-num {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--amber);
}

.card-media { padding: 0; overflow: hidden; }
.card-media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-media .card-body { padding: clamp(1.35rem, 2.4vw, 1.85rem); display: flex; flex-direction: column; gap: .7rem; }

/* ---------- Signature: bar-menu rows ---------- */

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list > li { padding-block: 1.15rem; border-bottom: 1px solid var(--stone); }
.menu-list > li:first-child { border-top: 1px solid var(--stone); }

.mrow-main { display: flex; align-items: baseline; gap: .9rem; }
.mrow-name {
  font-family: var(--f-display); font-size: 1.14rem; font-weight: 500;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1.25;
}
.mrow-lead {
  flex: 1 1 auto; min-width: 1.5rem; align-self: flex-end;
  border-bottom: 1.5px dotted var(--stone);
  transform: translateY(-.34em);
}
.mrow-price {
  font-family: var(--f-mono); font-size: 1rem; font-weight: 500;
  color: var(--amber); white-space: nowrap; letter-spacing: .01em;
}
.mrow-note { margin: .4rem 0 0; font-size: .93rem; color: var(--ink-2); max-width: 62ch; }

/* ---------- Package cards ---------- */

.pkg {
  background: var(--card); border: 1px solid var(--stone); border-radius: var(--r);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  display: flex; flex-direction: column;
  position: relative;
}
.pkg--feature { border-color: var(--olive); border-width: 1.5px; }
.pkg-tag {
  position: absolute; top: -1px; right: clamp(1.7rem, 3vw, 2.4rem);
  transform: translateY(-50%);
  background: var(--olive); color: #FFF;
  font-family: var(--f-mono); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 2px;
}
.pkg h3 { margin-bottom: .3rem; }
.pkg-price {
  font-family: var(--f-mono); font-size: clamp(2rem, 3.4vw, 2.6rem); font-weight: 300;
  color: var(--ink); letter-spacing: -.02em; line-height: 1.1;
  margin: .6rem 0 .2rem;
}
.pkg-price small { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: block; margin-top: .5rem; }
.pkg ul { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .62rem; }
.pkg ul li { position: relative; padding-left: 1.4rem; font-size: .96rem; color: var(--ink-2); line-height: 1.55; }
.pkg ul li::before {
  content: ""; position: absolute; left: 0; top: .6em;
  width: 6px; height: 6px; border-radius: 50%; border: 1px solid var(--amber);
}
.pkg ul li strong { color: var(--ink); font-weight: 600; }
.pkg .btn { margin-top: 1.9rem; }

.note {
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .04em;
  color: var(--ink-3); margin: 0 0 1.6rem;
}

/* ---------- Estimator ---------- */

.est {
  background: var(--card); border: 1px solid var(--stone); border-radius: var(--r);
  display: grid; grid-template-columns: 1.35fr .65fr;
}
.est-body { padding: clamp(1.6rem, 3vw, 2.3rem); }
.est-side {
  padding: clamp(1.6rem, 3vw, 2.3rem);
  background: var(--paper-2); border-left: 1px solid var(--stone);
  display: flex; flex-direction: column;
}
.est fieldset { border: 0; margin: 0 0 1.7rem; padding: 0; }
.est fieldset:last-of-type { margin-bottom: 0; }
.est legend {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); padding: 0; margin-bottom: .85rem;
}
.opt {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0; cursor: pointer; font-size: .96rem; line-height: 1.45;
}
.opt input { margin: .3rem 0 0; accent-color: var(--olive); flex: none; width: 16px; height: 16px; }
.opt .opt-price { margin-left: auto; font-family: var(--f-mono); font-size: .88rem; color: var(--ink-3); white-space: nowrap; padding-left: .8rem; }
.opt:hover .opt-price { color: var(--amber); }

.est-total {
  font-family: var(--f-mono); font-size: clamp(2.1rem, 4vw, 2.9rem); font-weight: 300;
  color: var(--ink); letter-spacing: -.02em; margin: .3rem 0 .1rem;
}
.est-lines { list-style: none; margin: 1.2rem 0; padding: 1.2rem 0 0; border-top: 1px solid var(--stone); display: grid; gap: .45rem; font-size: .88rem; color: var(--ink-2); }
.est-lines li { display: flex; justify-content: space-between; gap: 1rem; }
.est-lines .est-amt { font-family: var(--f-mono); color: var(--ink-3); }
.est-disclaimer { font-size: .8rem; color: var(--ink-3); line-height: 1.5; margin-top: auto; padding-top: 1.2rem; }
.est-side .btn { margin-top: 1.1rem; width: 100%; }

/* ---------- Gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); aspect-ratio: 1; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--r); }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(1) img { aspect-ratio: 1; }

/* ---------- Split feature ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--flip .split-media { order: -1; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
.split-media--tall img { aspect-ratio: 4 / 5; }

/* ---------- Steps ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.steps li { padding: 1.75rem clamp(1rem, 2vw, 1.6rem) 0; border-top: 1.5px solid var(--ink); }
.steps li + li { border-left: 1px solid var(--stone); }
.steps .step-n { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .12em; color: var(--amber); display: block; margin-bottom: .85rem; }
.steps h3 { margin-bottom: .5rem; }
.steps p { font-size: .94rem; color: var(--ink-2); }

/* ---------- Accordion ---------- */

.acc { border-top: 1px solid var(--stone); }
.acc details { border-bottom: 1px solid var(--stone); }
.acc summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 0; position: relative;
  font-family: var(--f-display); font-size: clamp(1.08rem, 1.7vw, 1.28rem); font-weight: 500;
  font-variation-settings: "SOFT" 20, "WONK" 1;
  line-height: 1.35;
  transition: color .18s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--amber); }
.acc summary::after {
  content: ""; position: absolute; right: .35rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1.5px solid var(--amber); border-bottom: 1.5px solid var(--amber);
  transform: rotate(45deg); transition: transform .22s ease;
}
.acc details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.acc .acc-body { padding: 0 3rem 1.6rem 0; color: var(--ink-2); max-width: 72ch; }
.acc .acc-body p { font-size: .99rem; }

/* ---------- Forms ---------- */

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.field .req { color: var(--amber); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--stone); border-radius: var(--r);
  padding: .82rem .9rem; width: 100%;
  transition: border-color .18s ease;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .84rem; color: var(--ink-3); line-height: 1.5; }

/* ---------- Contact detail list ---------- */

.dl { display: grid; gap: 1.5rem; margin: 0; }
.dl > div { display: grid; gap: .3rem; }
.dl dt {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
}
.dl dd { margin: 0; font-size: 1.02rem; }
.dl dd a { text-decoration: none; border-bottom: 1px solid var(--stone); transition: color .18s, border-color .18s; }
.dl dd a:hover { color: var(--amber); border-color: var(--amber); }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; align-items: baseline; gap: .8rem; padding: .62rem 0; border-bottom: 1px solid var(--stone); font-size: .96rem; }
.hours li:first-child { border-top: 1px solid var(--stone); }
.hours .h-day { min-width: 8.5rem; font-family: var(--f-mono); font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-2); }
.hours .h-time { margin-left: auto; text-align: right; }

.areas { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.areas li {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .07em;
  border: 1px solid var(--stone); border-radius: 100px; padding: .35rem .8rem; color: var(--ink-2);
}

/* ---------- Quote / CTA band ---------- */

.cta-band { text-align: center; }
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lede { margin: 1.2rem auto 0; text-align: center; }
.cta-band .btn-row { justify-content: center; }

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

.site-footer { background: var(--ink); color: #B8C2B6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer a { color: #B8C2B6; text-decoration: none; transition: color .18s ease; }
.site-footer a:hover { color: #D8A860; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(1.75rem, 4vw, 3rem); }
.foot-brand b { font-family: var(--f-display); font-size: 1.35rem; color: var(--paper); display: block; margin-bottom: .7rem; font-weight: 500; }
.foot-brand p { font-size: .92rem; line-height: 1.65; max-width: 34ch; }
.foot-h {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: #D8A860; margin: 0 0 1rem;
}
.foot-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .92rem; }
.foot-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(219,223,213,.16);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .08em; color: #7E8A7C;
}

/* ---------- Rental page components ---------- */

.spec { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--stone); }
.spec li {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0; border-bottom: 1px solid var(--stone);
}
.spec .spec-k {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); min-width: 11rem; flex: none;
}
.spec .spec-v { font-size: 1rem; color: var(--ink); flex: 1 1 16ch; }
.spec .spec-v b { font-weight: 600; }

.notice {
  border: 1px solid var(--stone);
  border-left: 3px solid var(--amber);
  background: var(--card);
  border-radius: var(--r);
  padding: clamp(1.15rem, 2.2vw, 1.6rem);
}
.notice p { font-size: .96rem; color: var(--ink-2); }
.notice p:first-child { color: var(--ink); }
.notice .notice-h {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--amber); margin: 0 0 .6rem;
}

.rules { list-style: none; margin: 0; padding: 0; display: grid; gap: .58rem; }
.rules li { position: relative; padding-left: 1.65rem; font-size: .97rem; color: var(--ink-2); line-height: 1.55; }
.rules li::before {
  position: absolute; left: 0; top: 0;
  font-family: var(--f-mono); font-size: .95rem; line-height: 1.6;
}
.rules--yes li::before { content: "+"; color: var(--olive); }
.rules--no li::before { content: "\00d7"; color: #A8503C; }
.rules li b { color: var(--ink); font-weight: 600; }

.photo-slot {
  border: 1px dashed var(--stone);
  border-radius: var(--r);
  background: var(--paper-2);
  aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  text-align: center; padding: 1.5rem;
}
.photo-slot span {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); max-width: 26ch; line-height: 1.6;
}

@media (max-width: 640px) {
  .spec .spec-k { min-width: 100%; }
}

/* ---------- Estimate carried into the quote form ---------- */

.est-carry {
  border: 1px solid var(--stone);
  border-left: 3px solid var(--olive);
  background: var(--card);
  border-radius: var(--r);
  padding: clamp(1.15rem, 2.2vw, 1.5rem);
  margin-bottom: 1.9rem;
}
.est-carry .notice-h {
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive); margin: 0 0 .9rem;
}
.est-carry-lines {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .42rem; font-size: .93rem; color: var(--ink-2);
}
.est-carry-lines li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.est-carry-lines .est-amt { font-family: var(--f-mono); font-size: .86rem; color: var(--ink-3); white-space: nowrap; }
.est-carry-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin: .9rem 0 0; padding-top: .85rem; border-top: 1px solid var(--stone);
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3);
}
.est-carry-total b {
  font-size: 1.5rem; font-weight: 400; letter-spacing: -.02em;
  text-transform: none; color: var(--ink);
}
.est-carry-note { margin: .9rem 0 0; font-size: .85rem; color: var(--ink-3); line-height: 1.55; }
.est-carry-note a { color: var(--amber); }

/* ---------- Embedded booking widget ---------- */

.booking-frame {
  border: 1px solid var(--stone);
  border-radius: var(--r);
  background: var(--card);
  overflow: hidden;
}
/* The embed script sets an inline height once it measures its content;
   min-height only stops the frame collapsing before that happens. */
.booking-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  min-height: 620px;
}
.booking-note {
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .05em;
  color: var(--ink-3); margin: 1rem 0 0;
}

@media (max-width: 640px) {
  .booking-frame iframe { min-height: 560px; }
}

/* ---------- Motion ---------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 1000px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(3) { border-left: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--stone);
    padding: .5rem var(--gut) 1.35rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--stone); font-size: .82rem; }
  .nav a[aria-current="page"] { border-bottom-color: var(--amber); }
  .nav .btn { margin-top: 1rem; border-bottom: 1px solid var(--ink); justify-content: center; }
  .header-inner { position: relative; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-figure img { aspect-ratio: 3 / 2; }
  .hero-figure::after { display: none; }

  .g-3, .g-2 { grid-template-columns: 1fr; }
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
  .est { grid-template-columns: 1fr; }
  .est-side { border-left: 0; border-top: 1px solid var(--stone); }
}

@media (max-width: 640px) {
  .g-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li + li { border-left: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: auto; }
  .field-row { grid-template-columns: 1fr; }
  .hours li { flex-wrap: wrap; }
  .hours .h-time { margin-left: 0; text-align: left; }
  .mrow-name { font-size: 1.05rem; }
  .brand-name span { display: none; }
}

/* ============================================================
   Mobile refinements
   ============================================================ */

@media (max-width: 760px) {
  /* Tighter vertical rhythm — the desktop scale made pages ~12 screens long */
  :root { --sect: 3.25rem; }
  .section--tight { padding-block: 2.9rem; }
  .head-block { margin-bottom: 2rem; }
  .head-block .lede { margin-top: .9rem; }

  /* Buttons: stack full-width instead of wrapping into ragged rows */
  .btn-row { flex-direction: column; align-items: stretch; gap: .65rem; margin-top: 1.6rem; }
  .btn-row .btn { width: 100%; }

  /* Service rail: one scrollable line instead of a 4-line block */
  .rail-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0 1.3rem;
    padding-block: .95rem;
  }
  .rail-inner::-webkit-scrollbar { display: none; }
  .rail-inner span { flex: none; white-space: nowrap; gap: 1.3rem; }

  /* Tap targets to >=44px */
  .tlink { padding: .72rem 0; }
  .nav-toggle { padding: .9rem 1rem; }
  .btn--sm { padding: .95rem 1.1rem; }

  /* Media cards: full 3:2 photos made the services block 2.5 screens tall */
  .card-media img { aspect-ratio: 16 / 9; }
  .card-media .card-body { padding: 1.3rem 1.25rem 1.45rem; }
  .card-media .card-body h3 { font-size: 1.22rem; }
}

@media (max-width: 640px) {
  /* Hero */
  h1 { font-size: clamp(2.35rem, 10.5vw, 2.85rem); }
  .hero-inner { padding-block: 2rem 2.75rem; }
  .hero-figure img { aspect-ratio: 16 / 11; }
  .hero-stats {
    gap: .5rem; margin-top: 1.6rem; padding-top: 1.2rem;
    font-size: .72rem; flex-direction: column; align-items: flex-start;
  }

  /* Gallery: the lead image was a full-width square — too heavy stacked */
  .gallery { gap: .55rem; }
  .gallery figure:nth-child(1) img { aspect-ratio: 3 / 2; }

  /* Steps: 4 stacked blocks with heavy rules read as disconnected */
  .steps li { padding: 1.15rem 0 0; border-top-width: 1px; }
  .steps li + li { margin-top: .35rem; }
  .steps .step-n { margin-bottom: .55rem; }

  /* Cards and packages: trim inner padding so copy gets more width */
  .card, .pkg { padding: 1.35rem 1.25rem; }
  .pkg-tag { right: 1.25rem; }
  .notice { padding: 1.15rem 1.1rem; }

  /* Bar-menu rows: keep name and price on sensible lines */
  .mrow-name { font-size: 1rem; }
  .mrow-price { font-size: .92rem; }
  .mrow-note { font-size: .89rem; }

  /* Estimator */
  .est-body, .est-side { padding: 1.35rem 1.25rem; }
  .opt { font-size: .92rem; gap: .6rem; }
  .opt .opt-price { padding-left: .5rem; font-size: .82rem; }

  /* Footer: two columns instead of four stacked blocks */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-list { font-size: .86rem; overflow-wrap: anywhere; }
  .foot-h { margin-bottom: .7rem; }
  .site-footer { padding-block: 2.75rem 1.5rem; }
  .foot-bottom { margin-top: 2rem; gap: .45rem; }
}

@media (max-width: 380px) {
  .brand-mark { display: none; }
  .card, .pkg { padding: 1.2rem 1.1rem; }
}
