/* ==========================================================================
   Purple Sky Cleaning — core stylesheet
   Palette: deep plum ink, terracotta accent, warm bone paper.
   Deliberately avoids purple gradients / glassmorphism / icon-card grids.
   ========================================================================== */

:root {
  --bone: #faf7f2;
  --bone-deep: #f2ece3;
  --paper: #ffffff;

  --ink: #1b1518;
  --ink-2: #5a4f55;
  --ink-3: #8b8087;

  --plum: #43284e;
  --plum-2: #6b4a7a;
  --plum-wash: #efe7f0;

  --clay: #c15f3c;
  --clay-dark: #a34e30;
  --clay-wash: #f7ece6;

  --line: rgba(27, 21, 24, 0.12);
  --line-soft: rgba(27, 21, 24, 0.07);
  --line-invert: rgba(255, 255, 255, 0.16);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: 24px;
  --radius: 4px;
  --radius-lg: 10px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.15rem); }
h2 { font-size: clamp(2rem, 4.2vw, 2.95rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.2; }
h4 { font-size: 1.08rem; line-height: 1.3; }

p { margin: 0 0 1.15em; text-wrap: pretty; }

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

.wrap-narrow { max-width: 760px; }

section { position: relative; }

.pad { padding-block: clamp(64px, 9vw, 118px); }
.pad-sm { padding-block: clamp(44px, 6vw, 76px); }

.bg-paper { background: var(--paper); }
.bg-bone-deep { background: var(--bone-deep); }
.bg-plum { background: var(--plum); color: #f6f1f4; }
.bg-plum h2, .bg-plum h3 { color: #fff; }

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

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 18px;
  display: block;
}

.bg-plum .eyebrow { color: #d9a68e; }

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}

.bg-plum .lead { color: rgba(255, 255, 255, 0.78); }

.serif-em {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 40;
}

.muted { color: var(--ink-3); }

.small {
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--clay);
  color: #fff;
  border-color: var(--clay);
}
.btn-primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); }

.btn-ink {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.btn-ink:hover { background: #321c3b; border-color: #321c3b; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(27, 21, 24, 0.04); }

/* Ghost buttons sitting on any dark surface. The .cta-band selector is not
   optional — that band is dark but does not carry .bg-plum, and without it
   the button renders near-black on plum. */
.bg-plum .btn-ghost,
.cta-band .btn-ghost,
.calc-out .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.bg-plum .btn-ghost:hover,
.cta-band .btn-ghost:hover,
.calc-out .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.textlink {
  color: var(--plum);
  text-decoration: none;
  border-bottom: 1px solid rgba(67, 40, 78, 0.3);
  padding-bottom: 1px;
  font-weight: 500;
}
.textlink:hover { border-bottom-color: var(--plum); }

/* ---------- Skip link + focus ---------- */

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}
.skip:focus { left: 8px; top: 8px; }

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Announcement bar ---------- */

.topbar {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.79rem;
  letter-spacing: 0.02em;
}
.topbar .wrap {
  display: flex;
  gap: 10px 26px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 40px;
  padding-block: 8px;
  text-align: center;
}
.topbar b { color: #fff; font-weight: 600; }
.topbar .dot { color: rgba(255, 255, 255, 0.35); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 1.34rem;
  letter-spacing: -0.02em;
  color: var(--plum);
  line-height: 1;
}
.brand-mark i {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 9px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); background: rgba(27, 21, 24, 0.05); }
.nav a[aria-current="page"] { color: var(--plum); font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone:hover { color: var(--clay); }
.header-actions .btn { padding: 11px 19px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 42px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 1000px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 20px;
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
  }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
}

@media (max-width: 560px) {
  .header-actions .btn { padding: 10px 15px; font-size: 0.85rem; }
  .brand-sub { display: none; }
}

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

.hero { padding-block: clamp(48px, 6.5vw, 92px) clamp(56px, 7vw, 96px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }

.hero-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-points li::before {
  content: "";
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: var(--clay);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
  border-radius: 50%;
  box-shadow: inset 0 0 0 20px var(--clay);
}

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  height: clamp(360px, 46vw, 560px);
  object-fit: cover;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
}

.price-chip {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 14px 34px rgba(27, 21, 24, 0.1);
  max-width: 224px;
}
.price-chip .k {
  font-size: 0.71rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.price-chip .v {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--plum);
  line-height: 1.05;
  display: block;
}
.price-chip .n {
  font-size: 0.78rem;
  color: var(--ink-3);
  display: block;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure img { height: clamp(300px, 62vw, 420px); border-radius: 140px 140px var(--radius-lg) var(--radius-lg); }
  .price-chip { left: auto; right: 10px; bottom: -14px; }
}

/* ---------- Stat rule ---------- */

.statrule {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statrule div {
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}
.statrule div:first-child { border-left: 0; }
.statrule .v {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  color: var(--plum);
  display: block;
  line-height: 1.1;
}
.statrule .k {
  font-size: 0.79rem;
  color: var(--ink-3);
  display: block;
  margin-top: 5px;
  letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .statrule { grid-template-columns: repeat(2, 1fr); }
  .statrule div:nth-child(3) { border-left: 0; }
  .statrule div:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* ---------- Section heading ---------- */

.sec-head {
  max-width: 720px;
  margin-bottom: clamp(34px, 4.5vw, 56px);
}
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

.head-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.head-split .sec-head { margin-bottom: 0; }
@media (max-width: 700px) {
  .head-split { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- Editorial numbered list ---------- */

.index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.index-list > li { border-bottom: 1px solid var(--line); }

.index-list a,
.index-row {
  display: grid;
  grid-template-columns: 62px 1fr 1.15fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 26px 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, padding 0.18s ease;
}
.index-list a:hover {
  background: rgba(67, 40, 78, 0.035);
  padding-inline: 12px 4px;
}
.index-num {
  font-family: var(--serif);
  font-size: 0.92rem;
  color: var(--clay);
  letter-spacing: 0.02em;
}
.index-title {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
  color: var(--ink);
}
.index-desc {
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.index-meta {
  font-size: 0.88rem;
  color: var(--plum);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .index-list a,
  .index-row {
    grid-template-columns: 40px 1fr;
    gap: 6px 16px;
    padding-block: 22px;
  }
  .index-desc { grid-column: 2; }
  .index-meta { grid-column: 2; margin-top: 4px; }
}

/* ---------- Feature split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
/* Top-aligned variant for prose + sidebar card layouts, where centering
   leaves a dead pocket of whitespace beside the first heading. */
.split.top { align-items: start; }
.split.top .split-aside { position: sticky; top: 96px; }
@media (max-width: 880px) {
  .split.top .split-aside { position: static; }
}
.split-media img {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: clamp(260px, 55vw, 380px); }
}

/* ---------- Checklist columns ---------- */

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 2px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.check-col {
  background: var(--paper);
  padding: 28px 26px 30px;
}
.check-col h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.check-col .room-count {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.check-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.91rem;
  color: var(--ink-2);
}
.check-col li {
  padding: 7px 0 7px 21px;
  position: relative;
  line-height: 1.45;
  border-bottom: 1px solid var(--line-soft);
}
.check-col li:last-child { border-bottom: 0; }
.check-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 9px;
  height: 2px;
  background: var(--plum-2);
}

/* ---------- Calculator ---------- */

.calc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  align-items: stretch;
}
@media (max-width: 940px) {
  .calc { grid-template-columns: 1fr; }
}

.calc-form { padding: clamp(26px, 3.4vw, 42px); }

/* The plum panel fills its column so the card reads as one block, while the
   content inside sticks — the running price stays on screen as you work down
   a long form instead of scrolling away. */
.calc-out {
  background: var(--plum);
  color: #fff;
}
.calc-out-inner {
  position: sticky;
  top: 88px;
  padding: clamp(26px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 940px) {
  .calc-out-inner { position: static; }
}

.field { margin-bottom: 24px; }
.field > label,
.field > .flabel {
  display: block;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.seg {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-2);
  background: var(--paper);
  transition: all 0.15s ease;
  user-select: none;
}
.seg label:hover { border-color: var(--plum-2); color: var(--ink); }
.seg input:checked + label {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}
.seg input:focus-visible + label { outline: 2px solid var(--clay); outline-offset: 2px; }

.calc select,
.calc input[type="text"],
.calc input[type="email"],
.calc input[type="tel"],
.calc textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.calc select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a4f55' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
  gap: 8px;
}
.addon {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 13px;
  font-size: 0.89rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.addon:hover { border-color: var(--plum-2); }
.addon input { accent-color: var(--plum); width: 16px; height: 16px; flex-shrink: 0; }
.addon .a-price { margin-left: auto; color: var(--ink-3); font-size: 0.84rem; white-space: nowrap; }
.addon:has(input:checked) { border-color: var(--plum); background: var(--plum-wash); }

.calc-out .out-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 8px;
}
.calc-out .out-price {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}
.calc-out .out-price .cur { font-size: 0.44em; vertical-align: 0.55em; margin-right: 2px; }
.calc-out .out-sub {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}
.calc-out .out-strike {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 8px;
}
.calc-out .out-save {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
}

.out-lines {
  list-style: none;
  margin: 20px 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line-invert);
  font-size: 0.89rem;
}
.out-lines li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.76);
}
.out-lines li span:last-child { color: #fff; white-space: nowrap; }
.out-lines li.total {
  border-top: 1px solid var(--line-invert);
  margin-top: 10px;
  padding-top: 12px;
  font-weight: 600;
  color: #fff;
}

.calc-out .btn { width: 100%; }
.calc-out .out-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 14px 0 0;
  line-height: 1.5;
}

/* ---------- Quote form ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-3);
  margin-top: 14px;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--plum-wash); color: var(--plum); }
.form-status.err { background: var(--clay-wash); color: var(--clay-dark); }

/* ---------- Quote / testimonial ---------- */

.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.1vw, 2.25rem);
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: balance;
}
.bg-plum .pullquote { color: #fff; }

.attrib {
  font-size: 0.87rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.bg-plum .attrib { color: rgba(255, 255, 255, 0.6); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.review {
  background: var(--bone);
  padding: 30px 28px;
}
.review .stars {
  color: var(--clay);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.review p {
  font-size: 0.96rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.review .attrib { margin-top: 14px; display: block; }

/* ---------- Areas index ---------- */

.area-index {
  columns: 4;
  column-gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.area-index li {
  break-inside: avoid;
  border-bottom: 1px solid var(--line-soft);
}
.area-index a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--ink-2);
}
.area-index a:hover { color: var(--clay); }
@media (max-width: 900px) { .area-index { columns: 2; } }
@media (max-width: 460px) { .area-index { columns: 1; } }

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.step {
  background: var(--paper);
  padding: 32px 28px 34px;
}
.step .n {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--plum-wash);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.16rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--ink-2); margin: 0; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Pricing table ---------- */

.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.ptable caption {
  text-align: left;
  font-size: 0.79rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  padding-bottom: 12px;
}
.ptable th,
.ptable td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.ptable thead th {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.ptable tbody th { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; }
.ptable td.price { font-family: var(--serif); font-size: 1.2rem; color: var(--plum); white-space: nowrap; }
.ptable tbody tr:hover { background: rgba(67, 40, 78, 0.03); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 46px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.3;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6px;
  background: var(--plum);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.4'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  padding: 0 60px 26px 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  max-width: 70ch;
}
.faq .faq-body p:last-child { margin-bottom: 0; }

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

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--plum);
  color: #fff;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}
/* Scrim so the headline and buttons keep contrast over the photo. */
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 22, 41, 0.35), rgba(36, 22, 41, 0.6));
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255, 255, 255, 0.82); }

/* ---------- Prose ---------- */

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; font-size: 1.24rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.15em; margin-bottom: 1.2em; color: var(--ink-2); }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--plum); }

/* ---------- Breadcrumbs ---------- */

.crumbs {
  font-size: 0.83rem;
  color: var(--ink-3);
  padding-block: 18px 0;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.crumbs li::after { content: "/"; margin-left: 8px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { text-decoration: none; color: var(--ink-3); }
.crumbs a:hover { color: var(--clay); }

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

.site-footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(52px, 6vw, 78px) 32px;
  font-size: 0.91rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-invert);
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { text-decoration: none; color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-mark { color: #fff; font-size: 1.5rem; }
.footer-brand p { margin: 16px 0 0; max-width: 34ch; color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-contact {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact a { color: #fff; font-weight: 500; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Sticky mobile CTA ---------- */

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 13px 12px; font-size: 0.92rem; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- Utilities ---------- */

.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
