/* =============================================================
   Salt & Shore Media — styles.css
   Coastal Southwest Florida real estate photography.
   Palette, type and spacing tokens live in :root. Change once,
   propagates everywhere.
   ============================================================= */

/* ---------- Fonts (self-hosted — no Google Fonts request) ----------
   Both are variable fonts: one file covers every weight. latin-ext
   loads only if the page uses characters outside Latin-1. */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/bricolage-grotesque-latin.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: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.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";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand colour */
  --teal-900: #0f3d41;   /* darkest — deep sections, headings on dark */
  --teal-800: #1b5e63;   /* primary deep teal */
  --teal-600: #2a7f8c;   /* brighter working teal */
  --teal-400: #5aa2ab;
  --teal-100: #d7e6e5;   /* pale teal tint */

  --sand-50:  #fbf8f2;   /* page background */
  --sand-100: #f6f1e7;   /* warm cream */
  --sand-200: #e8dcc8;   /* sand — alt sections, cards */
  --sand-300: #d9c9ac;   /* borders on warm surfaces */

  --coral:      #e05a34;  /* accent — bars, dots, highlights */
  --coral-dark: #c74a28;  /* button fills & coral text on light (AA: 4.6:1 on white) */
  --coral-darker: #a83c1f; /* button hover / pressed */
  --coral-soft: #f4d9cd;

  --ink:      #23302e;    /* body text — warm near-black */
  --ink-soft: #55635f;    /* muted text (AA on sand) */
  --ink-faint:#606c67;    /* fine print — still AA (4.8:1) on sand */
  --white:    #ffffff;

  --surface:      var(--sand-50);
  --surface-alt:  var(--sand-100);
  --line:         #e6ddca;

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: 0.86rem;
  --step-0:  1.0625rem;
  --step-1:  1.2rem;
  --step-2:  1.45rem;
  --step-3:  clamp(1.6rem, 1.32rem + 1.3vw, 2.3rem);
  --step-4:  clamp(1.8rem, 1.35rem + 2vw, 3.1rem);
  --step-5:  clamp(1.95rem, 1.15rem + 3.1vw, 3.8rem);

  /* Space */
  --space-2xs: 0.375rem;
  --space-xs:  0.625rem;
  --space-sm:  0.9375rem;
  --space-md:  1.5rem;
  --space-lg:  2.25rem;
  --space-xl:  3.5rem;
  --space-2xl: 5.5rem;
  --section-y: clamp(3.75rem, 8vw, 7rem);

  --container: 1140px;
  --container-narrow: 820px;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 61, 65, 0.06), 0 4px 14px rgba(15, 61, 65, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 61, 65, 0.10), 0 24px 48px -20px rgba(15, 61, 65, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); letter-spacing: -0.015em; }
h4 { font-size: var(--step-1); letter-spacing: -0.01em; }

p { text-wrap: pretty; }

a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral-dark); }

ul, ol { padding-left: 1.15rem; }

strong { font-weight: 600; color: var(--teal-900); }

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

::selection { background: var(--coral); color: #fff; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 5vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--sand { background: var(--surface-alt); }
.section--sand2 { background: var(--sand-200); }
.section--teal {
  background: var(--teal-800);
  color: var(--sand-100);
  background-image: linear-gradient(160deg, var(--teal-800) 0%, var(--teal-900) 100%);
}
.section--teal h1, .section--teal h2, .section--teal h3, .section--teal h4 { color: #fff; }
.section--teal strong { color: #fff; }
.section--teal a { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }
.section--teal a:hover { color: #fff; text-decoration-color: #fff; }

.section + .section { border-top: 1px solid var(--line); }
.section--teal + .section, .section + .section--teal { border-top: 0; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--coral);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 0; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Eyebrow + section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 26px;
  height: 2px;
  margin-top: 0.55em;
  background: var(--coral);
}
.section--teal .eyebrow { color: var(--teal-100); }

.section-head { max-width: 46ch; margin-bottom: var(--space-xl); }
.section-head p { margin-top: var(--space-sm); color: var(--ink-soft); font-size: var(--step-1); }
.section--teal .section-head p { color: var(--teal-100); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.lede { font-size: var(--step-1); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--coral-dark);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  color: var(--btn-fg);
  box-shadow: 0 10px 24px -8px rgba(224, 90, 52, 0.55);
}
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--coral-dark); }
.btn--primary:hover { background: var(--coral-darker); border-color: var(--coral-darker); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--teal-800);
  border-color: var(--sand-300);
}
.btn--ghost:hover {
  background: var(--sand-100);
  border-color: var(--teal-600);
  color: var(--teal-800);
  box-shadow: none;
}

.btn--on-teal {
  --btn-bg: #fff;
  --btn-fg: var(--teal-900);
}
.btn--on-teal:hover { background: var(--sand-100); border-color: var(--sand-100); color: var(--teal-900); box-shadow: 0 12px 28px -10px rgba(0,0,0,0.4); }

.btn--ghost-on-teal {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost-on-teal:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; box-shadow: none; }

.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.btn-row--center { justify-content: center; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
}
.text-link::after {
  content: "→";
  transition: transform 0.18s var(--ease);
}
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Wordmark ---------- */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--teal-900);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.wordmark__mark { width: 34px; height: 34px; flex: none; }
.wordmark__text { font-size: 1.12rem; white-space: nowrap; }
.wordmark--footer { color: #fff; }
.wordmark--footer .wordmark__text { color: #fff; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 248, 242, 0.95);
  box-shadow: 0 6px 24px -18px rgba(15, 61, 65, 0.5);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 74px;
}

.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); }
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.4vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav__list a {
  --u: 0;
  position: relative;
  display: inline-block;
  padding: 0.4rem 0;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.primary-nav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(var(--u));
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.primary-nav__list a:hover { color: var(--teal-800); --u: 1; }
.primary-nav__list a[aria-current="page"] { color: var(--teal-800); font-weight: 600; --u: 1; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle__box { display: block; width: 20px; height: 14px; position: relative; margin: 0 auto; }
.nav-toggle__box span {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.15s var(--ease), top 0.22s var(--ease);
}
.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 6px; }
.nav-toggle__box span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) clamp(1.15rem, 5vw, 2.5rem) var(--space-lg);
    background: var(--sand-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.24s var(--ease), opacity 0.2s var(--ease), visibility 0.24s;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav__list li { border-bottom: 1px solid var(--line); }
  .primary-nav__list a { display: block; padding: 0.95rem 0; font-size: 1.1rem; }
  .primary-nav__list a::after { display: none; }
  .primary-nav__list a[aria-current="page"] { color: var(--coral-darker); }
  .primary-nav__cta { margin-top: var(--space-md); }
  .primary-nav__cta .btn { width: 100%; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 61, 65, 0.30) 0%, rgba(15, 61, 65, 0.22) 30%, rgba(15, 61, 65, 0.62) 68%, rgba(15, 61, 65, 0.88) 100%),
    linear-gradient(95deg, rgba(15, 61, 65, 0.78) 0%, rgba(15, 61, 65, 0.38) 52%, rgba(15, 61, 65, 0.05) 84%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(90vh, 780px);
  padding-block: clamp(4.5rem, 12vh, 8rem) clamp(3rem, 8vh, 5rem);
  max-width: min(92%, 40rem);
}
.hero h1 { color: #fff; text-shadow: 0 1px 24px rgba(15, 61, 65, 0.35); text-wrap: pretty; }
.hero__eyebrow { color: rgba(255,255,255,0.9); }
.hero__eyebrow::before { background: var(--coral); }
.hero p {
  margin-top: var(--space-md);
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.94);
  max-width: 46ch;
  text-shadow: 0 1px 12px rgba(15, 61, 65, 0.45);
}
.hero__note {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(15, 61, 65, 0.4);
}
.hero__note::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}

@media (max-width: 560px) {
  .hero p { font-size: var(--step-0); }
  .hero__inner { min-height: min(86vh, 620px); }
}

/* Full-width stacked CTAs on small screens */
@media (max-width: 480px) {
  .btn-row:not(.btn-row--inline) .btn { width: 100%; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--teal-800);
  background-image: linear-gradient(150deg, var(--teal-800), var(--teal-900));
  color: #fff;
  padding-block: clamp(3.25rem, 8vw, 5.5rem);
}
.page-hero h1 { color: #fff; margin-top: 0.25rem; }
.page-hero p { margin-top: var(--space-md); color: var(--teal-100); font-size: var(--step-1); max-width: 54ch; }
.page-hero .eyebrow { color: var(--teal-100); }
.breadcrumb { font-size: var(--step--1); color: rgba(255,255,255,0.65); margin-bottom: var(--space-sm); }
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Split / prose ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .split__media { order: 2; }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
  .split--media-right .split__media img { aspect-ratio: 4 / 5; }
}
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.split__media--stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.split__media--stack img:first-child { grid-row: span 2; height: 100%; }

.prose > * + * { margin-top: var(--space-md); }
.prose h3 { margin-top: var(--space-lg); }
.prose ul { color: var(--ink-soft); }
.prose li + li { margin-top: 0.35rem; }

/* ---------- Cards / feature grid ---------- */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-100);
  color: var(--teal-800);
  margin-bottom: var(--space-md);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--step-2); }
.card p { margin-top: 0.5rem; color: var(--ink-soft); font-size: 1rem; }

.section--sand .card { background: var(--white); }
.section--teal .card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: var(--sand-100);
}
.section--teal .card p { color: var(--teal-100); }
.section--teal .card__icon { background: rgba(255,255,255,0.12); color: #fff; }

/* numbered list (how it works) */
.steps { counter-reset: step; display: grid; gap: var(--space-md); list-style: none; padding: 0; }
.steps li {
  position: relative;
  padding-left: 3.75rem;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--teal-600);
  border-radius: 50%;
}
.steps h4 { margin-bottom: 0.15rem; }
.steps p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Services list ---------- */
.service-list { display: grid; gap: 0; list-style: none; padding: 0; }
.service-list li {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--line);
}
.service-list li:last-child { border-bottom: 1px solid var(--line); }
.service-list__icon { color: var(--teal-600); margin-top: 0.15rem; }
.service-list__icon svg { width: 26px; height: 26px; }
.service-list h3 { font-size: var(--step-1); }
.service-list p { color: var(--ink-soft); font-size: 1rem; margin-top: 0.2rem; }
.service-list .tag { margin-top: 0.5rem; }

.tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--teal-800);
  background: var(--teal-100);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.tag--coral { color: var(--coral-darker); background: var(--coral-soft); }

/* ---------- Pricing ---------- */
.pricing-group { margin-top: var(--space-xl); }
.pricing-group:first-of-type { margin-top: var(--space-lg); }
.pricing-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--teal-800);
}
.pricing-group__head h3 { font-size: var(--step-2); }
.pricing-group__from {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--coral-dark);
  font-size: var(--step-1);
}
.pricing-group__from span { color: var(--ink-faint); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-group > p { margin-top: var(--space-sm); color: var(--ink-soft); font-size: 1rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
  font-size: 1rem;
}
.price-table caption { text-align: left; color: var(--ink-faint); font-size: var(--step--1); margin-bottom: 0.5rem; }
.price-table th, .price-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}
.price-table thead th {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-table tbody th { font-weight: 600; color: var(--teal-900); }
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .price { font-family: var(--font-display); font-weight: 600; color: var(--teal-900); white-space: nowrap; }
.price-table tbody tr { transition: background-color 0.15s var(--ease); }
.price-table tbody tr:hover { background: var(--sand-100); }

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

.addon-note { margin-top: var(--space-md); font-size: 0.95rem; color: var(--ink-soft); }

.addon-list {
  margin-top: var(--space-md);
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: var(--space-lg);
  font-size: 1rem;
}
.addon-list li {
  break-inside: avoid;
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--teal-900);
  font-weight: 500;
}
.addon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
}
.addon-list .fine { display: block; font-weight: 400; margin-top: 0.1rem; }
@media (max-width: 520px) { .addon-list { columns: 1; } }

/* ---------- Launch offer ---------- */
/* LAUNCH OFFER — promotional callout. Self-contained: delete this block
   (and the matching markup) to retire the offer without touching pricing. */
.launch-offer {
  position: relative;
  overflow: hidden;
  background: var(--teal-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 3rem);
  display: grid;
  gap: var(--space-md);
}
.launch-offer::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(224,90,52,0.55), transparent 70%);
}
.launch-offer > * { position: relative; }
.launch-offer .eyebrow { color: #ffd9cb; }
.launch-offer h3 { color: #fff; }
.launch-offer p { color: rgba(255,255,255,0.85); max-width: 52ch; }
.launch-offer strong { color: #ffd9cb; }

/* ---------- Differentiators ---------- */
.diff-lead {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 820px) {
  .diff-lead { grid-template-columns: 1.05fr 0.95fr; }
}
.diff-lead__media { position: relative; }
.diff-lead__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.diff-lead__badge {
  position: absolute;
  left: -14px; bottom: -14px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.diff-grid { display: grid; gap: var(--space-md); margin-top: var(--space-xl); }
@media (min-width: 620px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff {
  padding-top: var(--space-md);
  border-top: 2px solid var(--coral);
}
.diff h4 { margin-bottom: 0.3rem; }
.diff p { color: var(--ink-soft); font-size: 1rem; }
.section--teal .diff p { color: var(--teal-100); }
.section--teal .diff { border-top-color: var(--coral); }

/* ---------- Portfolio ---------- */
.portfolio-grid {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-200);
}
.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.portfolio-grid figure:hover img { transform: scale(1.04); }
.portfolio-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 0.85rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(15,61,65,0.75));
}
.portfolio-grid figure.is-tall { grid-row: span 2; }
.portfolio-grid figure.is-tall img { aspect-ratio: 3 / 4; height: 100%; }
@media (max-width: 719px) {
  .portfolio-grid figure.is-tall { grid-row: span 1; }
  .portfolio-grid figure.is-tall img { aspect-ratio: 4 / 3; }
}
.portfolio-disclaimer {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--ink-faint);
  max-width: 60ch;
}

/* ---------- Service area ---------- */
.area-wrap { display: grid; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 820px) { .area-wrap { grid-template-columns: 0.9fr 1.1fr; } }
.area-list {
  columns: 2;
  column-gap: var(--space-lg);
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  break-inside: avoid;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.area-list li::before { content: ""; width: 7px; height: 7px; flex: none; border-radius: 50%; background: var(--coral); transform: translateY(-1px); }
.area-list li span { color: var(--teal-100); font-weight: 400; font-size: 0.9rem; }
.area-note { margin-top: var(--space-md); color: var(--teal-100); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,61,65,0.82), rgba(15,61,65,0.9));
}
.cta-band .container { padding-block: clamp(3.5rem, 9vw, 6rem); }
.cta-band h2 { color: #fff; }
.cta-band p { margin: var(--space-sm) auto 0; max-width: 48ch; color: rgba(255,255,255,0.9); font-size: var(--step-1); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: var(--space-md); }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}
.field label .opt { color: var(--ink-faint); font-weight: 400; }
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand-50);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background-color 0.15s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 127, 140, 0.16);
}
.field-row { display: grid; gap: var(--space-md); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* Honeypot — off-screen, unreachable by tab or screen reader, but a real
   element bots will fill. Not display:none (some bots skip hidden fields). */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.75rem; }
.form-status {
  margin-top: var(--space-md);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--teal-100);
  color: var(--teal-900);
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status--error { background: var(--coral-soft); color: var(--coral-darker); }
.form-status[hidden] { display: none; }

/* ---------- Placeholder box (Book Now / integrations) ---------- */
.placeholder-box {
  border: 2px dashed var(--sand-300);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(232,220,200,0.25) 0 12px, transparent 12px 24px);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
}
.placeholder-box__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-darker);
  background: var(--coral-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: var(--space-md);
}
.placeholder-box h3 { font-size: var(--step-2); }
.placeholder-box p { margin-top: 0.5rem; color: var(--ink-soft); max-width: 44ch; margin-inline: auto; }

/* ---------- Policies ---------- */
.policy-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  padding: 0;
  list-style: none;
}
.policy-toc a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-800);
  text-decoration: none;
}
.policy-toc a:hover { border-color: var(--teal-600); background: var(--sand-100); }

.policy {
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--line);
  scroll-margin-top: 6rem;
}
.policy:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.policy h2 { font-size: var(--step-3); }
.policy > * + * { margin-top: var(--space-sm); }
.policy p, .policy li { color: var(--ink-soft); }

.tbd {
  font-style: normal;
  font-weight: 600;
  color: var(--coral-darker);
  background: var(--coral-soft);
  padding: 0.05em 0.4em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.draft-flag {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--sand-200);
  border: 1px solid var(--sand-300);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-xl);
}
.draft-flag svg { flex: none; width: 22px; height: 22px; color: var(--coral-dark); margin-top: 2px; }

/* ---------- FAQ (accordion) ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: var(--space-md) 2.25rem var(--space-md) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  color: var(--teal-900);
  transition: color 0.15s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 1.55rem;
  width: 11px; height: 11px;
  border-right: 2px solid var(--teal-600);
  border-bottom: 2px solid var(--teal-600);
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--coral-dark); }
.faq summary:focus-visible { outline-offset: 4px; }
.faq__body { padding: 0 0 var(--space-md); }
.faq__body p { color: var(--ink-soft); max-width: 70ch; }
.faq__body p + p { margin-top: var(--space-sm); }

/* ---------- Info strip ---------- */
.info-strip {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.info-strip div { }
.info-strip dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.3rem;
}
.info-strip dd { margin: 0; font-weight: 500; color: var(--teal-900); }
.info-strip dd a { font-weight: 600; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contact-detail { display: grid; gap: var(--space-lg); }
.contact-detail__item h3 { font-size: var(--step-1); margin-bottom: 0.3rem; }
.contact-detail__item p, .contact-detail__item a { color: var(--ink-soft); }
.contact-detail__item a { font-weight: 600; color: var(--teal-800); }
.big-link { font-size: var(--step-1); font-family: var(--font-display); font-weight: 600; word-break: break-word; }

/* ---------- Social ---------- */
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--teal-800);
  background: var(--white);
  transition: transform 0.16s var(--ease), background-color 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.social-links a:hover { transform: translateY(-2px); background: var(--coral); border-color: var(--coral); color: #fff; }
.social-links svg { width: 18px; height: 18px; }
.site-footer .social-links a { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #fff; }
.site-footer .social-links a:hover { background: var(--coral); border-color: var(--coral); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-900);
  color: rgba(255,255,255,0.8);
  padding-top: var(--space-2xl);
}
.site-footer__grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
  padding-bottom: var(--space-xl);
}
@media (min-width: 620px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .site-footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; } }
.site-footer__brand p { margin-top: var(--space-sm); font-size: 0.95rem; max-width: 34ch; color: rgba(255,255,255,0.7); }
.site-footer__brand .social-links { margin-top: var(--space-md); }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-sm);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer__col p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.site-footer__col .btn { margin-top: var(--space-md); }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Misc ---------- */
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: var(--space-md); }
.stack-lg > * + * { margin-top: var(--space-lg); }

.callout {
  border-left: 3px solid var(--coral);
  background: var(--sand-100);
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.callout p { color: var(--ink-soft); }
.callout p + p { margin-top: 0.5rem; }

.fine { font-size: 0.85rem; color: var(--ink-faint); }

/* Fade-in on scroll. Content is ALWAYS visible by default; the hidden
   start-state is only applied once JS has confirmed it can reveal it. */
.reveal { opacity: 1; transform: none; }
html.reveal-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
html.reveal-on .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-on .reveal { opacity: 1; transform: none; transition: none; }
}
