@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-full-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-tight-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   M.A. Pool Service
   Palette pulled from Manny's own photography:
   dusk navy sky, amber landscape uplighting, travertine deck,
   pool teal. Not stock "pool company blue".
   ============================================================ */

:root {
  /* base */
  --dusk-950: #080F1B;
  --dusk-900: #0D1626;
  --dusk-850: #111D31;
  --dusk-800: #16233A;
  --dusk-700: #1D2C46;
  --line:     #2A3C5C;
  --line-soft: rgba(237, 230, 218, 0.12);

  /* accents */
  --water:    #5CC4E0;
  --water-dp: #2E93B4;
  --uplight:  #E9A23E;
  --uplight-hi: #F5B85C;

  /* neutrals */
  --travertine: #EDE6DA;
  --travertine-2: #E2D8C7;
  --stone:    #A5B1C4;
  --stone-dim: #74839A;

  /* type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --measure: 62ch;
  --shell: 1180px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;

  --pad-section: clamp(4rem, 10vw, 7.5rem);
}

/* ---------- reset ---------- */
*, *::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;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--dusk-900);
  color: var(--travertine);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.0625rem);
  line-height: 1.6;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "SOFT" 20, "WONK" 0, "opsz" 40;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

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

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--uplight); color: var(--dusk-950);
  padding: 0.75rem 1.25rem; font-weight: 600; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ---------- type helpers ---------- */
.display {
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 5.1rem);
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  letter-spacing: -0.032em;
  line-height: 0.98;
}
.h2 { font-size: clamp(1.95rem, 1.4rem + 2.3vw, 3.1rem); }
.h3 { font-size: clamp(1.3rem, 1.1rem + 0.85vw, 1.7rem); }
.lede {
  font-size: clamp(1.09rem, 1.02rem + 0.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--stone);
  max-width: 46ch;
}
.muted { color: var(--stone); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.006em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.2,.8,.3,1), background-color 0.18s, border-color 0.18s, color 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--uplight); color: #1B1206; }
.btn--primary:hover { background: var(--uplight-hi); }
.btn--ghost { border-color: rgba(237,230,218,0.28); color: var(--travertine); }
.btn--ghost:hover { border-color: var(--travertine); background: rgba(237,230,218,0.06); }
.btn--dark { background: var(--dusk-900); color: var(--travertine); }
.btn--dark:hover { background: var(--dusk-800); }
.btn--wide { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13,22,38,0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600;
  font-variation-settings: "SOFT" 20, "opsz" 40;
  letter-spacing: -0.02em; line-height: 1;
}
.brand__sub {
  display: block; font-family: var(--sans); font-size: 0.66rem;
  letter-spacing: 0.16em; color: var(--stone-dim); text-transform: uppercase;
  margin-top: 3px; font-weight: 500;
}
.nav { display: none; align-items: center; gap: 1.75rem; }
.nav a {
  text-decoration: none; font-size: 0.95rem; color: var(--stone);
  transition: color 0.15s; padding: 0.35rem 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--travertine); }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line); color: var(--travertine);
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-panel {
  display: none;
  border-top: 1px solid var(--line-soft);
  padding: 0.75rem 0 1.5rem;
}
.nav-panel.is-open { display: block; }
.nav-panel a {
  display: block; padding: 0.85rem 0; text-decoration: none;
  border-bottom: 1px solid var(--line-soft); font-size: 1.05rem;
}
.nav-panel .btn { margin-top: 1.1rem; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-panel { display: none !important; }
}

/* ---------- photo frames (never break) ---------- */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--dusk-800);
  background-image: linear-gradient(150deg, var(--dusk-700), var(--dusk-850));
  border-radius: var(--r-lg);
  isolation: isolate;
}
.frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.frame--4x5 { aspect-ratio: 4 / 5; }
.frame--1x1 { aspect-ratio: 1 / 1; }
.frame--3x4 { aspect-ratio: 3 / 4; }
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(237,230,218,0.10);
  border-radius: inherit;
}
.frame--glow { box-shadow: 0 34px 80px -30px rgba(4, 10, 20, 0.9); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 60rem; height: 60rem; right: -22rem; top: -30rem;
  background: radial-gradient(circle, rgba(92,196,224,0.16), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; z-index: 0;
  width: 44rem; height: 44rem; left: -24rem; bottom: -26rem;
  background: radial-gradient(circle, rgba(233,162,62,0.13), transparent 65%);
  pointer-events: none;
}
.hero .shell { position: relative; z-index: 1; }
.hero__grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
.hero__copy > * { animation: rise 0.75s cubic-bezier(.2,.75,.3,1) both; }
.hero__copy > *:nth-child(1) { animation-delay: 0.02s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.10s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.18s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.26s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.34s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.hero h1 { margin-bottom: 0.35em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero__proof {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem 1.1rem;
  margin-top: 1.9rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.94rem; color: var(--stone);
}
.stars { color: var(--uplight); letter-spacing: 0.09em; font-size: 0.95rem; }

.hero__media { position: relative; }
.hero__media .frame { max-width: 560px; margin-inline: auto; }

@media (min-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: 4.5rem; }
  .hero__media .frame { margin-inline: 0 0 0 auto; }
}

/* ---------- chemistry report card ---------- */
.report {
  background: rgba(8, 15, 27, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(92,196,224,0.26);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem 1.1rem;
  box-shadow: 0 24px 56px -20px rgba(4,10,20,0.95);
  width: min(266px, 74%);
  animation: rise 0.75s cubic-bezier(.2,.75,.3,1) 0.5s both;
}
.hero__media .report {
  position: absolute; left: -0.5rem; bottom: -1.75rem; z-index: 2;
}
@media (min-width: 980px) {
  .hero__media .report { left: -3.25rem; bottom: -2rem; }
}
.report__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.75rem; padding-bottom: 0.7rem; margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(237,230,218,0.14);
}
.report__title { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.report__date { font-size: 0.74rem; color: var(--stone-dim); }
.report__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 0.75rem; padding: 0.28rem 0;
  font-size: 0.855rem;
}
.report__row dt { color: var(--stone); margin: 0; }
.report__row dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--travertine); }
.report__row dd span { color: var(--water); font-weight: 500; font-size: 0.78rem; margin-left: 0.3rem; }
.report dl { margin: 0; }
.report__foot {
  margin-top: 0.8rem; padding-top: 0.7rem;
  border-top: 1px solid rgba(237,230,218,0.14);
  font-size: 0.775rem; color: var(--stone-dim); line-height: 1.45;
}

/* ---------- generic sections ---------- */
.section { padding-block: var(--pad-section); position: relative; }
.section--light { background: var(--travertine); color: var(--dusk-900); }
.section--light .lede, .section--light .muted { color: #4E5A6C; }
.section--light .frame { background-image: linear-gradient(150deg, var(--travertine-2), #D3C7B2); }
.section--tint { background: var(--dusk-850); }
.section__head { max-width: 44rem; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section__head p { margin-top: 0.9rem; }

/* ---------- credential strip ---------- */
.creds {
  border-block: 1px solid var(--line-soft);
  background: var(--dusk-850);
}
.creds__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0;
}
.cred {
  padding: 1.6rem 1.25rem;
  border-bottom: 1px solid var(--line-soft);
}
.cred:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.cred:nth-last-child(-n+2) { border-bottom: 0; }
.cred__fig {
  font-family: var(--serif); font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  font-variation-settings: "SOFT" 30, "opsz" 120; font-weight: 500;
  line-height: 1; color: var(--water); font-variant-numeric: tabular-nums;
}
.cred__txt { margin-top: 0.5rem; font-size: 0.92rem; color: var(--stone); line-height: 1.4; }
@media (min-width: 860px) {
  .creds__grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .cred { border-bottom: 0; border-right: 1px solid var(--line-soft); padding: 2.1rem 1.75rem; }
  .cred:last-child { border-right: 0; }
  .cred:nth-child(odd) { border-right: 1px solid var(--line-soft); }
}

/* ---------- split feature ---------- */
.split { display: grid; gap: clamp(2.25rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 6vw, 5.5rem); }
  .split--media-first > .split__media { order: -1; }
  .split--wide-copy { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
}
.split__media .frame { max-width: 520px; }

/* ---------- service list ---------- */
.services { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.service {
  display: grid; gap: 0.4rem 2rem;
  padding: clamp(1.6rem, 3vw, 2.1rem) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
.service__name { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); margin: 0; }
.service__body { color: var(--stone); margin: 0; font-size: 0.985rem; max-width: 54ch; }
.service__tag {
  display: inline-block; margin-top: 0.55rem;
  font-size: 0.78rem; color: var(--water);
  border: 1px solid rgba(92,196,224,0.34);
  padding: 0.18rem 0.6rem; border-radius: 999px;
}
@media (min-width: 800px) {
  .service { grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); }
}
.section--light .services, .section--light .service { border-color: rgba(13,22,38,0.14); }
.section--light .service__body { color: #4E5A6C; }
.section--light .service__tag { color: var(--water-dp); border-color: rgba(46,147,180,0.4); }

/* ---------- steps (a real sequence) ---------- */
.steps { display: grid; gap: 1.5rem; counter-reset: step; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  width: 2rem; height: 2rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(92,196,224,0.14); color: var(--water);
  border: 1px solid rgba(92,196,224,0.34);
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.step p { color: var(--stone); font-size: 0.95rem; margin: 0; }
.section--light .step p { color: #4E5A6C; }
.section--light .step::before { background: rgba(46,147,180,0.12); color: var(--water-dp); border-color: rgba(46,147,180,0.35); }

/* ---------- reviews ---------- */
.reviews { column-gap: 1.15rem; }
@media (min-width: 780px) { .reviews { columns: 2; } }
.review {
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: linear-gradient(170deg, rgba(255,255,255,0.035), rgba(255,255,255,0));
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1.15rem;
}
.review blockquote {
  margin: 0 0 1.15rem;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 40, "opsz" 30;
  font-size: clamp(1.06rem, 1rem + 0.35vw, 1.22rem);
  line-height: 1.45; letter-spacing: -0.012em;
}
.review figcaption { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; }
.review__who { font-weight: 600; }
.review__meta { color: var(--stone-dim); font-size: 0.83rem; }
.review__avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--dusk-700); color: var(--water);
  font-weight: 600; font-size: 0.9rem;
}
.section--light .review { border-color: rgba(13,22,38,0.14); background: rgba(255,255,255,0.5); }
.section--light .review__avatar { background: rgba(46,147,180,0.14); color: var(--water-dp); }
.section--light .review__meta { color: #6B7788; }

/* ---------- areas ---------- */
.areas { display: grid; gap: 0.75rem; }
@media (min-width: 620px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .areas { grid-template-columns: repeat(4, 1fr); } }
.area {
  display: block; text-decoration: none;
  border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
  transition: border-color 0.18s, background-color 0.18s, transform 0.18s;
}
.area:hover { border-color: rgba(92,196,224,0.5); background: rgba(92,196,224,0.06); transform: translateY(-2px); }
.area__name { display: block; font-family: var(--serif); font-size: 1.22rem; font-weight: 600; font-variation-settings: "SOFT" 20, "opsz" 40; }
.area__note { font-size: 0.86rem; color: var(--stone-dim); margin-top: 0.3rem; }
.areas--3 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 940px) { .areas--3 { grid-template-columns: repeat(3, 1fr); } }

.hoods {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.55rem;
}
.hood {
  border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 0.42rem 0.95rem; font-size: 0.93rem;
}
.section--light .hood { border-color: rgba(13,22,38,0.18); }

.areas-more { margin-top: 1.6rem; font-size: 0.95rem; color: var(--stone); }

/* ---------- book ---------- */
.book__cover {
  border-radius: var(--r-md) 4px 4px var(--r-md);
  overflow: hidden;
  max-width: 300px;
  box-shadow: 0 30px 60px -22px rgba(4,10,20,0.8), -6px 0 0 rgba(237,230,218,0.08);
  background: var(--dusk-800);
}
.book__cover img { width: 100%; display: block; }
.chemlist { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.6rem; }
.chemlist li {
  display: flex; gap: 0.75rem; align-items: baseline;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--line-soft);
  font-size: 0.97rem;
}
.chemlist li:last-child { border-bottom: 0; }
.chemlist b { font-weight: 600; min-width: 9.5rem; flex: none; }
.chemlist span { color: var(--stone); }
.section--light .chemlist li { border-color: rgba(13,22,38,0.13); }
.section--light .chemlist span { color: #4E5A6C; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); } }
.contact-lines { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1.1rem; }
.contact-lines a { text-decoration: none; display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-lines a:hover .contact-lines__val { color: var(--water); }
.contact-lines svg { width: 20px; height: 20px; flex: none; margin-top: 4px; color: var(--water); }
.contact-lines__lab { font-size: 0.78rem; color: var(--stone-dim); letter-spacing: 0.05em; }
.contact-lines__val { font-size: 1.08rem; font-weight: 600; transition: color 0.15s; }

.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: 0.42rem; }
.field label { font-size: 0.88rem; color: var(--stone); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem;
  background: var(--dusk-850);
  border: 1px solid var(--line);
  color: var(--travertine);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  width: 100%;
  transition: border-color 0.16s, background-color 0.16s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--stone-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--water); background: var(--dusk-800); outline: none;
}
.field--row { display: grid; gap: 1.05rem; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: 0.85rem; color: var(--stone-dim); margin: 0; }
.form__status { font-size: 0.95rem; border-radius: 10px; padding: 0.9rem 1rem; display: none; }
.form__status.is-ok { display: block; background: rgba(92,196,224,0.12); border: 1px solid rgba(92,196,224,0.38); color: var(--travertine); }
.form__status.is-err { display: block; background: rgba(233,162,62,0.12); border: 1px solid rgba(233,162,62,0.42); color: var(--travertine); }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(160deg, var(--dusk-800), var(--dusk-950) 70%);
  border-block: 1px solid var(--line-soft);
}
.cta-band__inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 880px) { .cta-band__inner { grid-template-columns: minmax(0,1fr) auto; gap: 3rem; } }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--dusk-950); border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-grid h4 { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.09em; color: var(--stone-dim); text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; font-size: 0.95rem; }
.footer-list a { text-decoration: none; color: var(--stone); transition: color 0.15s; }
.footer-list a:hover { color: var(--travertine); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-block: 1.5rem;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.85rem; color: var(--stone-dim);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--travertine); }

/* ---------- mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(8,15,27,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
}
.callbar .btn { padding: 0.85rem 1rem; font-size: 0.97rem; }
@media (min-width: 900px) { .callbar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 5.2rem; } }

/* ---------- misc ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.83rem; color: var(--water);
  border: 1px solid rgba(92,196,224,0.3);
  background: rgba(92,196,224,0.07);
  padding: 0.35rem 0.85rem; border-radius: 999px;
  margin-bottom: 1.35rem;
}
.section--light .pill { color: var(--water-dp); border-color: rgba(46,147,180,0.34); background: rgba(46,147,180,0.08); }
.inline-link { color: var(--water); text-underline-offset: 3px; text-decoration-thickness: 1px; }
.section--light .inline-link { color: var(--water-dp); }

.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--serif); font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  font-variation-settings: "SOFT" 20, "opsz" 40; font-weight: 500;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0.25rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--water); border-bottom: 2px solid var(--water);
  transform: rotate(45deg); transition: transform 0.22s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details > div { padding-bottom: 1.5rem; color: var(--stone); }
.section--light .faq, .section--light .faq details { border-color: rgba(13,22,38,0.14); }
.section--light .faq details > div { color: #4E5A6C; }

.gallery { display: grid; gap: 1rem; }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery .frame { border-radius: var(--r-md); }
