/* ==========================================================================
   Oceanside Tree Service — shared stylesheet
   Sun-bleached Pacific coastal palette: pale sky, ocean blue, warm sand,
   eucalyptus. Mobile-first, zero external dependencies.
   ========================================================================== */

:root {
  --ocean-950: #0a2e3e;
  --ocean-900: #0d3b4f;
  --ocean-800: #11506b;
  --ocean-700: #166685;
  --ocean-100: #dcedf4;
  --ocean-50: #eff7fa;
  --sky-100: #dff0f7;
  --sand-200: #efe6d4;
  --sand-100: #f7f1e6;
  --sand-50: #fbf8f1;
  --euc-800: #3d5a4b;
  --euc-600: #5f7f6d;
  --euc-100: #e4ece7;
  --coral-700: #a83f22;
  --coral-600: #c8502e;
  --ink: #21323b;
  --ink-mute: #51616b;
  --drift: #dcd4c4;
  --round: 12px;
  --float: 0 2px 12px rgba(13, 59, 79, 0.12);
  --shell-max: 71rem;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: Palatino, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand-50);
  /* clearance for the fixed mobile dock */
  padding-bottom: 4.5rem;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--ocean-700); }
a:hover, a:focus { color: var(--ocean-950); }

h1, h2, h3 {
  font-family: "Trebuchet MS", "Gill Sans", "Gill Sans MT", Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.16;
  color: var(--ocean-950);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.95rem); margin-top: 0; }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
li { margin-bottom: 0.35em; }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 1.1rem;
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ocean-950);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Topbar + menu
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--sand-50);
  border-bottom: 3px solid var(--ocean-800);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ocean-950);
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}

.logo svg {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--coral-600);
  color: #fff !important;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--float);
  min-height: 44px;
}

.call-pill:hover, .call-pill:focus { background: var(--coral-700); }

.call-pill svg { width: 1.1rem; height: 1.1rem; }

.call-pill .call-pill-num { display: none; }

.mainmenu { background: var(--ocean-900); }

.mainmenu ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.2rem;
}

.mainmenu li { margin: 0; }

.mainmenu a {
  display: inline-block;
  color: var(--ocean-100);
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 0.6rem;
  border-radius: 7px;
  min-height: 44px;
}

.mainmenu a:hover,
.mainmenu a:focus,
.mainmenu a[aria-current="page"] {
  background: var(--ocean-700);
  color: #fff;
}

/* Mobile menu: collapsed behind a CSS-only toggle from the start */
.menu-check { position: absolute; opacity: 0; pointer-events: none; }
.menu-btn { display: none; }

@media (max-width: 899px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ocean-950);
    border: 2px solid var(--ocean-800);
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
    cursor: pointer;
    user-select: none;
    margin-left: auto;
    margin-right: 0.6rem;
  }
  .mainmenu { display: none; }
  .menu-check:checked ~ .mainmenu { display: block; }
  .menu-check:checked ~ .topbar-row .menu-btn,
  .menu-check:checked ~ div .menu-btn { background: var(--ocean-800); color: #fff; }
}

/* --------------------------------------------------------------------------
   Splash hero — light, sun-bleached, dual conversion
   -------------------------------------------------------------------------- */
.splash {
  background: linear-gradient(165deg, var(--sky-100) 0%, var(--ocean-50) 45%, var(--sand-100) 100%);
  border-bottom: 1px solid var(--drift);
  padding: 2.25rem 0 2.5rem;
}

.splash h1 { color: var(--ocean-950); }

.splash .splash-sub {
  font-size: 1.15rem;
  max-width: 38rem;
  color: var(--ink-mute);
}

.splash-grid { display: grid; gap: 1.5rem; }

.splash-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.splash-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}

.splash-points svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--coral-600);
  color: #fff !important;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 1.4rem;
  border-radius: var(--round);
  box-shadow: 0 4px 14px rgba(168, 63, 34, 0.35);
  min-height: 56px;
}

.call-btn:hover, .call-btn:focus { background: var(--coral-700); }

.call-btn svg { width: 1.4rem; height: 1.4rem; }

.call-btn small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.92;
}

.after-call {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.5rem;
}

/* Lead form card */
.lead-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--drift);
  border-radius: var(--round);
  padding: 1.25rem;
  box-shadow: 0 8px 28px rgba(13, 59, 79, 0.16);
}

.lead-card h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }

.lead-card .lead-sub {
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-bottom: 0.9rem;
}

.lead-card label {
  display: block;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.lead-card input,
.lead-card select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.85rem;
  border: 2px solid var(--drift);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  min-height: 48px;
}

.lead-card input:focus,
.lead-card select:focus {
  outline: 3px solid var(--ocean-700);
  outline-offset: 1px;
  border-color: var(--euc-600);
}

.send-btn {
  width: 100%;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: var(--ocean-800);
  border: 0;
  border-radius: var(--round);
  padding: 0.9rem 1rem;
  cursor: pointer;
  min-height: 52px;
}

.send-btn:hover, .send-btn:focus { background: var(--ocean-950); }

.fineprint {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin: 0.6rem 0 0;
  text-align: center;
}

.sent-ok {
  background: var(--euc-100);
  border-left: 4px solid var(--euc-600);
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Assurance strip
   -------------------------------------------------------------------------- */
.assure {
  background: var(--euc-100);
  border-bottom: 1px solid var(--drift);
}

.assure ul {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.assure li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--euc-800);
  margin: 0;
}

.assure svg { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Panels (sections)
   -------------------------------------------------------------------------- */
.panel { padding: 2.5rem 0; }

.panel-tint {
  background: var(--sand-100);
  border-top: 1px solid var(--drift);
  border-bottom: 1px solid var(--drift);
}

.intro-copy { max-width: 46rem; }

.lede { font-size: 1.15rem; }

/* Service tiles */
.tile-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--drift);
  border-top: 4px solid var(--euc-600);
  border-radius: var(--round);
  padding: 1.25rem;
  box-shadow: var(--float);
}

.tile svg.tile-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.6rem;
}

.tile h3 { margin-bottom: 0.4rem; }

.tile h3 a { color: var(--ocean-950); text-decoration: none; }

.tile h3 a:hover, .tile h3 a:focus {
  text-decoration: underline;
  color: var(--ocean-700);
}

.tile p { flex: 1; font-size: 0.95rem; margin-bottom: 0.75rem; }

.tile-link {
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.tile-link:hover, .tile-link:focus { text-decoration: underline; }

/* Price table */
.scroll-x { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  background: #fff;
  box-shadow: var(--float);
  border-radius: var(--round);
  overflow: hidden;
}

.price-table caption {
  caption-side: bottom;
  font-size: 0.8rem;
  color: var(--ink-mute);
  padding: 0.5rem;
  text-align: left;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--drift);
}

.price-table thead th {
  background: var(--ocean-900);
  color: #fff;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-table tbody tr:nth-child(even) { background: var(--ocean-50); }

/* Q&A */
.qa {
  background: #fff;
  border: 1px solid var(--drift);
  border-radius: var(--round);
  margin-bottom: 0.75rem;
  box-shadow: var(--float);
}

.qa summary {
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ocean-950);
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style-position: inside;
}

.qa summary:hover { color: var(--ocean-700); }

.qa .qa-body { padding: 0 1.1rem 1rem; }

/* --------------------------------------------------------------------------
   Spoke page head
   -------------------------------------------------------------------------- */
.page-head {
  background: linear-gradient(165deg, var(--sky-100) 0%, var(--ocean-50) 55%, var(--sand-100) 100%);
  border-bottom: 1px solid var(--drift);
  padding: 2rem 0;
}

.page-head h1 { color: var(--ocean-950); margin-bottom: 0.35rem; }

.page-head .splash-sub {
  color: var(--ink-mute);
  font-size: 1.1rem;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.page-head .call-btn { max-width: 26rem; }

/* Two-column content + rail */
.twocol { display: grid; gap: 2rem; }

.main-col h2 { margin-top: 1.75rem; }
.main-col h2:first-child { margin-top: 0; }
.main-col h3 { margin-top: 1.25rem; }

.rail .rail-card {
  background: #fff;
  border: 1px solid var(--drift);
  border-radius: var(--round);
  padding: 1.1rem;
  box-shadow: var(--float);
  margin-bottom: 1.25rem;
}

.rail h2 { font-size: 1.1rem; }

.rail ul { list-style: none; padding: 0; margin: 0; }

.rail li { margin: 0; border-bottom: 1px solid var(--drift); }

.rail li:last-child { border-bottom: 0; }

.rail li a {
  display: block;
  padding: 0.6rem 0.2rem;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.rail .rail-call {
  background: var(--ocean-900);
  border-color: var(--ocean-900);
  color: var(--ocean-100);
  text-align: center;
}

.rail .rail-call h2 { color: #fff; }

.rail .rail-call .call-btn { font-size: 1.1rem; margin-top: 0.5rem; }

/* --------------------------------------------------------------------------
   Callout notes
   -------------------------------------------------------------------------- */
.note {
  background: var(--ocean-50);
  border-left: 5px solid var(--ocean-700);
  border-radius: 0 var(--round) var(--round) 0;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}

.note-fire {
  background: #fdf1e8;
  border-left-color: var(--coral-600);
}

.note p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.band {
  background: var(--ocean-900);
  color: var(--ocean-100);
  text-align: center;
  padding: 2.25rem 0;
}

.band h2 { color: #fff; }

.band .call-btn { max-width: 24rem; margin: 1rem auto 0; }

.band p { max-width: 38rem; margin-left: auto; margin-right: auto; }

.band a { color: var(--ocean-100); }

/* --------------------------------------------------------------------------
   Footer — NAP-free by design (no street address)
   -------------------------------------------------------------------------- */
.foot {
  background: var(--ocean-950);
  color: #b9d2dd;
  padding: 2.25rem 0 1.5rem;
  font-size: 0.92rem;
}

.foot-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.foot h2 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.foot ul { list-style: none; padding: 0; margin: 0; }

.foot li { margin-bottom: 0.4rem; }

.foot a { color: var(--ocean-100); text-decoration: none; }

.foot a:hover, .foot a:focus { text-decoration: underline; color: #fff; }

.foot-call {
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff !important;
}

.foot-tail {
  border-top: 1px solid var(--ocean-800);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #8fb0bf;
}

/* --------------------------------------------------------------------------
   Sticky mobile dock
   -------------------------------------------------------------------------- */
.dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 50;
  box-shadow: 0 -3px 12px rgba(10, 46, 62, 0.3);
}

.dock a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 0.5rem;
  min-height: 56px;
}

.dock .dock-call { background: var(--coral-600); color: #fff; }

.dock .dock-quote { background: var(--ocean-800); color: #fff; }

.dock svg { width: 1.2rem; height: 1.2rem; }

/* --------------------------------------------------------------------------
   Larger screens
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .assure ul {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }

  .tile-grid { grid-template-columns: 1fr 1fr; }

  .call-pill .call-pill-num { display: inline; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }

  .dock { display: none; }

  .splash { padding: 3.5rem 0 4rem; }

  .splash-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 2.5rem;
  }

  .call-btn { max-width: 26rem; justify-content: flex-start; }

  .splash .after-call { text-align: left; }

  .tile-grid { grid-template-columns: repeat(3, 1fr); }

  .twocol { grid-template-columns: 2fr 1fr; }

  .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .mainmenu a { font-size: 0.95rem; padding: 0.65rem 0.7rem; }
}

/* Print: keep it readable */
@media print {
  .dock, .mainmenu { display: none; }
}

/* ==========================================================================
   DESIGN ELEVATION LAYER — golden-hour coastal
   Progressive enhancement only: every advanced feature is guarded by
   @supports / @media so older browsers get the clean base site.
   ========================================================================== */

:root {
  --gold-500: #d99a3d;
  --gold-200: #f2ddb4;
  --dusk-blue: #7fb4c9;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --float: 0 1px 2px rgba(13,59,79,.06), 0 6px 24px -8px rgba(13,59,79,.18);
  --float-hover: 0 2px 4px rgba(13,59,79,.08), 0 18px 44px -12px rgba(13,59,79,.28);
  --hairline: 1px solid rgba(13,59,79,.12);
}

/* MPA cross-fade between pages (Chromium; no-op elsewhere) */
@view-transition { navigation: auto; }

::selection { background: var(--gold-200); color: var(--ocean-950); }

h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

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

body { accent-color: var(--coral-600); }

/* --- Sticky glass topbar (desktop only — mobile keeps every pixel) ------- */
@media (min-width: 900px) {
  @supports (backdrop-filter: blur(1px)) {
    .topbar {
      position: sticky;
      top: 0;
      z-index: 60;
      background: color-mix(in srgb, var(--sand-50) 86%, transparent);
      backdrop-filter: blur(14px) saturate(1.4);
      -webkit-backdrop-filter: blur(14px) saturate(1.4);
    }
  }
}

/* --- Hero: layered golden-hour scene ------------------------------------ */
.splash {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(178deg,
      #fdfaf2 0%,
      #f6ecd8 18%,
      #f4e3c2 34%,
      #e8ddc8 46%,
      #cfe4ec 62%,
      #b9d8e5 78%,
      #a5cfdf 100%);
  padding-bottom: 3.4rem;
}

/* low golden sun */
.splash::before {
  content: "";
  position: absolute;
  right: 12%;
  top: 8%;
  width: clamp(160px, 24vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,244,214,.95) 0%,
    rgba(249,224,166,.75) 34%,
    rgba(242,213,140,.28) 58%,
    transparent 72%);
  pointer-events: none;
}

.splash .shell { position: relative; z-index: 2; }

.scene {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: clamp(90px, 14vw, 170px);
  display: block;
  pointer-events: none;
  z-index: 1;
}

.splash-grid { position: relative; }

/* hero typography */
.splash h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  letter-spacing: -0.015em;
}

.splash-eyebrow {
  font-family: "Trebuchet MS", "Gill Sans", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean-800);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.splash-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--coral-600));
}

/* --- Glass quote card ----------------------------------------------------- */
.lead-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--float-hover);
}

@supports (backdrop-filter: blur(1px)) {
  .lead-card {
    background: rgba(255,255,255,.66);
    backdrop-filter: blur(18px) saturate(1.5);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
  }
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--round) var(--round) 0 0;
  background: linear-gradient(90deg, var(--gold-500), var(--coral-600) 55%, var(--ocean-700));
}

.lead-card input,
.lead-card select {
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.lead-card input:focus,
.lead-card select:focus {
  border-color: var(--ocean-700);
  box-shadow: 0 0 0 4px rgba(22,102,133,.16);
  outline: none;
}

/* --- Buttons: depth + touch feel ----------------------------------------- */
.call-btn, .send-btn, .dock-call {
  background-image: linear-gradient(180deg, #d65f3b, var(--coral-700));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 10px 24px -10px rgba(168,63,34,.65);
  transition: transform .16s var(--ease-out), box-shadow .16s var(--ease-out), filter .16s var(--ease-out);
}

.call-btn:hover, .send-btn:hover { transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 16px 32px -12px rgba(168,63,34,.7); }
.call-btn:active, .send-btn:active, .dock-call:active { transform: translateY(0) scale(.985); }

.call-pill { transition: transform .16s var(--ease-out), box-shadow .16s var(--ease-out); }
.call-pill:hover { transform: translateY(-1px); box-shadow: var(--float); }

/* --- Assurance strip: floating glass chips over the shoreline ------------ */
.assure {
  background: transparent;
  border-bottom: 0;
  margin-top: -2.4rem;
  position: relative;
  z-index: 3;
}

.assure ul {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: color-mix(in srgb, #ffffff 78%, var(--euc-100));
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--float);
}

@supports (backdrop-filter: blur(1px)) {
  .assure ul {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
  }
}

/* --- Section rhythm ------------------------------------------------------- */
.panel { padding: 3.2rem 0; }

.panel h2 {
  position: relative;
  padding-bottom: 0.55rem;
}

.panel h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2.6rem; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--coral-600));
}

/* --- Tiles: lift, glow, arrow slide -------------------------------------- */
.tile {
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out);
  box-shadow: 0 1px 3px rgba(13,59,79,.07);
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--float-hover);
  border-top-color: var(--gold-500);
}

.tile-icon { transition: transform .25s var(--ease-out); }
.tile:hover .tile-icon { transform: scale(1.12) rotate(-2deg); }

.tile-link { transition: gap .18s var(--ease-out); display: inline-flex; gap: .3rem; }
.tile:hover .tile-link { gap: .55rem; }

/* --- Price table ----------------------------------------------------------- */
.price-table {
  font-variant-numeric: tabular-nums;
  box-shadow: var(--float);
  border-radius: 10px;
  overflow: hidden;
}

.price-table tbody tr { transition: background .15s ease; }
.price-table tbody tr:hover { background: var(--ocean-50); }

/* --- FAQ: animated <details> (Chrome 129+; static elsewhere) -------------- */
.qa summary {
  transition: color .15s ease;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.qa summary::-webkit-details-marker { display: none; }

.qa summary::after {
  content: "";
  position: absolute;
  right: 0.4rem; top: 50%;
  width: 0.65rem; height: 0.65rem;
  border-right: 2.5px solid var(--coral-600);
  border-bottom: 2.5px solid var(--coral-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease-out);
}

.qa[open] summary::after { transform: translateY(-30%) rotate(225deg); }

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .qa::details-content {
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility .38s allow-discrete, block-size .38s var(--ease-out);
  }
  .qa[open]::details-content { block-size: auto; }
}

/* --- CTA band: dusk gradient ---------------------------------------------- */
.band {
  background:
    radial-gradient(120% 140% at 85% 0%, rgba(217,154,61,.28), transparent 46%),
    linear-gradient(165deg, var(--ocean-800), var(--ocean-950) 78%);
}

/* --- Sub-page heads: coastal gradient + soft wave edge -------------------- */
.page-head {
  position: relative;
  background:
    radial-gradient(110% 160% at 88% -10%, rgba(217,154,61,.30), transparent 50%),
    linear-gradient(172deg, #f6ecd8 0%, #dcedf4 55%, #bcdae7 100%);
  padding-bottom: 2.8rem;
}

.page-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 26px;
  background:
    radial-gradient(58% 100% at 25% 100%, var(--sand-50) 49%, transparent 51%),
    radial-gradient(58% 100% at 75% 100%, var(--sand-50) 49%, transparent 51%);
  pointer-events: none;
}

/* --- Mobile dock: glass ---------------------------------------------------- */
@supports (backdrop-filter: blur(1px)) {
  .dock {
    background: rgba(10,46,62,.82);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
  }
}
.dock { padding-bottom: env(safe-area-inset-bottom); }

/* --- Motion: scene life + scroll-driven reveals (opt-in only) -------------- */
@media (prefers-reduced-motion: no-preference) {
  .scene .palms {
    transform-origin: 50% 100%;
    animation: sway 7.5s var(--ease-out) infinite alternate;
  }
  .scene .palms-far {
    transform-origin: 50% 100%;
    animation: sway 9.5s var(--ease-out) infinite alternate-reverse;
  }
  @keyframes sway {
    from { transform: rotate(-0.7deg); }
    to   { transform: rotate(0.9deg); }
  }

  .splash::before { animation: sunbreathe 9s ease-in-out infinite alternate; }
  @keyframes sunbreathe {
    from { opacity: .85; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.06); }
  }

  /* scroll-driven entrances (Chromium; static elsewhere) */
  @supports (animation-timeline: view()) {
    .tile, .panel h2, .price-table, .qa, .rail-card {
      animation: rise-in both;
      animation-timeline: view();
      animation-range: entry 0% entry 42%;
    }
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
  }
}
