/* ============================================================
   Pelican Pool Care — demonstration build (fictional company)
   Identity: "your weekend back." Resort-calm lagoon teal on shell
   white, coral highlights, Outfit + Nunito Sans, pill shapes,
   wave dividers, the doorstep report. Sarasota, est. 2016.
   ============================================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/outfit-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/nunito-var.woff2') format('woff2');
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/nunito-italic.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  --lagoon: #0d3c4b;       /* deep teal ink; headings, dark surfaces */
  --lagoon-deep: #092b37;
  --lagoon-line: #23566a;
  --aqua: #1c99ae;         /* big accents, water */
  --aqua-deep: #0e6175;    /* text-bearing on shell; 5.6:1 */
  --aqua-darker: #0a4e5e;
  --aqua-tint: #7fd0dd;    /* aqua on lagoon surfaces */
  --shell: #f9f6ef;        /* page background — warm shell white */
  --foam: #e9f3f2;         /* alt sections — pale water tint */
  --card: #ffffff;
  --line: #dbe3dd;
  --line-strong: #c3d0cb;
  --coral: #e2685c;        /* small warm accents */
  --coral-deep: #b23d31;   /* text-bearing coral; 5.5:1 on shell */
  --ink: #123a47;
  --body-c: #33505a;       /* 8.0:1 vs shell */
  --muted: #587076;        /* 4.9:1 vs shell */
  --shell-on-lagoon: #dcebe9;
  --muted-on-lagoon: #9fbcc2;

  --font-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Outfit', 'Avenir Next', 'Helvetica Neue', sans-serif;

  --container: 71rem;
  --pad-x: clamp(1.1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 8px rgba(13, 60, 75, 0.05), 0 16px 40px rgba(13, 60, 75, 0.08);
}

/* ---------- Base ---------- */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--body-c);
  background: var(--shell);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.55em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.1rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
}

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

a {
  color: var(--aqua-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--aqua-darker);
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

strong {
  color: var(--ink);
}

:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--shell),
    0 0 0 5px var(--aqua-deep);
  border-radius: var(--radius);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--lagoon);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.section--foam {
  background: var(--foam);
}

.section--lagoon {
  background: var(--lagoon);
  color: var(--shell-on-lagoon);
}

.section--lagoon h2,
.section--lagoon h3 {
  color: #fff;
}

.section--lagoon strong {
  color: #fff;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

/* little wave squiggle before eyebrows */
.eyebrow::before {
  content: '';
  width: 1.7rem;
  height: 0.55rem;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 9'%3E%3Cpath d='M1 5c3-4 6-4 9 0s6 4 9 0 5-3 8 0' fill='none' stroke='%231c99ae' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section--lagoon .eyebrow {
  color: var(--aqua-tint);
}

.lede {
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  max-width: 43rem;
}

/* ---------- Wave divider ---------- */

.wave {
  display: block;
  width: 100%;
  height: clamp(2rem, 4.5vw, 3.5rem);
}

/* ---------- Buttons (pills) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn .icon {
  flex: none;
}

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

.btn--call:hover {
  background: var(--coral-deep);
  color: #fff;
}

.btn--xl {
  font-size: 1.18rem;
  padding: 1.1rem 1.9rem;
}

.btn--ghost {
  background: transparent;
  color: var(--lagoon);
  border-color: var(--lagoon);
}

.btn--ghost:hover {
  background: var(--lagoon);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ---------- Icons ---------- */

.icon {
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.12em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.util-strip {
  background: var(--lagoon-deep);
  color: var(--shell-on-lagoon);
  font-size: 0.88rem;
}

.util-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}

.util-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.util-strip a:hover {
  text-decoration: underline;
}

.util-note {
  margin: 0;
}

@media (max-width: 47.9rem) {
  .util-note {
    display: none;
  }

  .util-strip .inner {
    justify-content: center;
  }
}

.site-header {
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 0.85rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.wm-bird {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
}

.wm-text {
  line-height: 1;
}

.wm-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
}

.wm-sub {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-top: 0.3rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.8rem);
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--aqua-darker);
}

.main-nav a[aria-current='page'] {
  color: var(--aqua-darker);
  border-bottom-color: var(--aqua);
}

.header-call {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--lagoon);
  color: var(--lagoon);
  border-radius: 999px;
  padding: 0.5rem 0.66rem;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 1.3rem;
  height: 1.3rem;
}

@media (max-width: 63.9rem) {
  .header-call .btn-label {
    display: none;
  }
}

@media (max-width: 55rem) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    padding-block: 0.6rem;
    gap: 0.75rem;
  }

  .wm-name {
    font-size: 1.22rem;
  }

  .wm-bird {
    width: 2.1rem;
    height: 2.1rem;
  }

  .header-call {
    padding: 0.72rem 0.9rem;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--shell);
    border-bottom: 4px solid var(--aqua);
    box-shadow: 0 18px 30px rgba(13, 60, 75, 0.16);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0 0.6rem;
  }

  .main-nav a {
    display: block;
    padding: 0.8rem var(--pad-x);
    font-size: 1.12rem;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .main-nav a[aria-current='page'] {
    border-left-color: var(--aqua);
    background: var(--foam);
  }
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: var(--lagoon-deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
  min-height: clamp(30rem, 62vh, 40rem);
  padding-block: clamp(2.5rem, 6vw, 5.25rem);
}

/* the copy sits above the photo layer */
.hero-grid > *:first-child {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua-tint);
  margin: 0 0 1rem;
}

.hero h1 {
  margin-bottom: 0.4em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(5, 26, 34, 0.45);
}

.hero h1 .accent {
  color: var(--aqua-tint);
}

.hero-lede {
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  max-width: 32em;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.93);
  text-shadow: 0 1px 10px rgba(5, 26, 34, 0.5);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.hero .btn--ghost:hover {
  background: #fff;
  color: var(--lagoon);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.hero-hours {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.hero-hours .icon {
  color: var(--aqua-tint);
}

/* .hero-media is used twice on this page: the hero background and the
   doorstep-report figure. This shared rule is the report's styling; every
   hero-specific rule below stays scoped to .hero so it can't leak. */
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 0;
  box-shadow: none;
  /* mirrored so the tech sits on the right, clear of the copy */
  transform: scaleX(-1);
}

/* scrim: heavy under the copy on the left, light over the water */
.hero .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 43, 55, 0.93) 0%,
      rgba(9, 43, 55, 0.80) 40%,
      rgba(9, 43, 55, 0.42) 70%,
      rgba(9, 43, 55, 0.24) 100%
    ),
    linear-gradient(0deg, rgba(9, 43, 55, 0.55) 0%, transparent 32%);
}

/* coral route-day sticker — above the scrim inside the media layer */
.route-sticker {
  position: absolute;
  z-index: 2;
  right: clamp(0.9rem, 3vw, 2rem);
  bottom: clamp(0.9rem, 3vw, 2rem);
  background: var(--coral);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(178, 61, 49, 0.35);
  transform: rotate(2deg);
}

.route-sticker .rs-big {
  display: block;
  font-size: 1.05rem;
}

@media (max-width: 55rem) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.25rem 3rem;
  }

  .route-sticker {
    right: 0.4rem;
  }
}

/* ---------- Plan cards ---------- */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.25rem;
  align-items: stretch;
}

@media (max-width: 55rem) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan--star {
  border: 2px solid var(--aqua);
}

.plan-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 {
  margin-bottom: 0.15em;
}

.plan-price {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--aqua-deep);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.plan-price .pp-big {
  font-size: 1.9rem;
  color: var(--ink);
}

.plan ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.98rem;
}

.plan li .icon {
  color: var(--aqua-deep);
  flex: none;
  width: 0.95em;
  height: 0.95em;
}

.plan .btn {
  align-self: start;
}

.plan-note {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 46em;
}

/* ---------- Doorstep report motif ---------- */

.report-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 55rem) {
  .report-grid {
    grid-template-columns: 1fr;
  }
}

.report-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 24rem;
  overflow: hidden;
  margin-top: 1.5rem;
}

.report-head {
  background: var(--lagoon);
  color: #fff;
  padding: 0.85rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.report-head p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
}

.report-head .rh-time {
  font-size: 0.78rem;
  color: var(--aqua-tint);
  font-family: var(--font-body);
}

.report-body {
  padding: 1.15rem 1.3rem 1.3rem;
}

.report-body p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.report-chems {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.report-chems li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.3rem;
}

.report-chems .rc-label {
  color: var(--muted);
}

.report-chems .rc-val {
  font-weight: 800;
  color: var(--ink);
}

.report-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.94rem;
}

.report-checks li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
}

.report-checks .icon {
  color: var(--aqua-deep);
  flex: none;
  width: 0.9em;
  height: 0.9em;
}

.report-sign {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Call band ---------- */

.call-band {
  background: var(--lagoon);
  color: var(--shell-on-lagoon);
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
}

.call-band h2 {
  color: #fff;
  margin-bottom: 0.2em;
}

.band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
}

.band-line {
  margin: 0;
  font-size: 1.08rem;
  max-width: 38em;
}

.band-cta {
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.band-hours {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted-on-lagoon);
}

/* ---------- Reviews ---------- */

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-block: 1.9rem 1.4rem;
}

@media (max-width: 55rem) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.review-card .stars {
  color: var(--coral);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.01rem;
}

.review-card blockquote p {
  margin: 0;
}

.review-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.review-name {
  font-weight: 800;
  color: var(--ink);
}

.review-town {
  color: var(--muted);
}

.review-job {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  background: var(--foam);
}

.review-reply {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--foam);
  border-left: 3px solid var(--aqua);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.review-reply p {
  margin: 0;
}

.review-reply .rr-name {
  display: block;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Reviews page summary */
.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow-card);
  margin-block: 2rem 2.5rem;
}

.rating-big {
  text-align: center;
  padding-right: clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid var(--line);
}

.rating-big .r-num {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  line-height: 1;
  color: var(--ink);
  display: block;
}

.rating-big .stars {
  color: var(--coral);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  display: block;
  margin: 0.4rem 0 0.3rem;
}

.rating-big .r-count {
  font-size: 0.9rem;
  color: var(--muted);
}

.rating-bars {
  display: grid;
  gap: 0.45rem;
}

.rbar {
  display: grid;
  grid-template-columns: 3.2rem 1fr 2.6rem;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.rbar .rb-label {
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.rbar .rb-track {
  display: block;
  height: 0.6rem;
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.rbar .rb-fill {
  display: block;
  height: 100%;
  background: var(--aqua);
  border-radius: 999px;
}

.rbar .rb-count {
  color: var(--muted);
  text-align: right;
}

@media (max-width: 47.9rem) {
  .rating-summary {
    grid-template-columns: 1fr;
  }

  .rating-big {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.25rem;
  }
}

.mention-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0 0 2.5rem;
}

.mention-chips li {
  border: 1px solid var(--line-strong);
  background: var(--card);
  border-radius: 999px;
  padding: 0.42rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.mention-chips .mc-count {
  color: var(--aqua-deep);
  font-weight: 800;
}

/* ---------- Masthead ---------- */

.masthead {
  padding-block: clamp(2.5rem, 5.5vw, 4rem) clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(55rem 22rem at 90% -25%, rgba(28, 153, 174, 0.12), transparent 60%),
    var(--shell);
}

.masthead h1 {
  margin-bottom: 0.35em;
}

.masthead .lede {
  margin-bottom: 0;
}

/* ---------- Services page ---------- */

.svc-nav {
  position: sticky;
  top: var(--header-h, 4.5rem);
  z-index: 80;
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-nav::-webkit-scrollbar {
  display: none;
}

.svc-nav ul {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  margin: 0 auto;
  padding: 0.55rem var(--pad-x);
  max-width: var(--container);
}

.svc-nav a {
  display: block;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
}

.svc-nav a:hover {
  border-color: var(--line-strong);
  background: var(--card);
  color: var(--aqua-darker);
}

.svc-section {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  scroll-margin-top: calc(var(--header-h, 4.5rem) + 3.6rem);
}

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

.svc-head {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
  margin-bottom: 1.75rem;
}

.svc-head.flip .svc-copy {
  order: 2;
}

@media (max-width: 55rem) {
  .svc-head {
    grid-template-columns: 1fr;
  }

  .svc-head.flip .svc-copy {
    order: 0;
  }

  .svc-head .photo-round {
    max-width: 28rem;
  }
}

.photo-round {
  position: relative;
}

.photo-round img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(13, 60, 75, 0.85);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.svc-lists {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 55rem) {
  .svc-lists {
    grid-template-columns: 1fr;
  }
}

.covers h3,
.gtk h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.covers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}

.covers li {
  break-inside: avoid;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

@media (max-width: 47.9rem) {
  .covers ul {
    columns: 1;
  }
}

.gtk {
  background: var(--foam);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.45rem;
}

.gtk p {
  margin-bottom: 0.7em;
  font-size: 0.98rem;
}

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

/* ---------- About ---------- */

.owner-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 2fr) 3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 55rem) {
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .owner-grid .photo-round {
    max-width: 22rem;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

@media (max-width: 55rem) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--aqua);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
}

.value-card h3 {
  margin-bottom: 0.4em;
}

.value-card p {
  margin: 0;
  font-size: 1rem;
}

.crew-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-top: 2px solid var(--lagoon);
}

.crew-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) 1fr;
  gap: 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.crew-list .c-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.crew-list .c-role {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin-top: 0.25rem;
}

.crew-list p {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 47.9rem) {
  .crew-list li {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* ---------- Service areas ---------- */

.area-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 55rem) {
  .area-cols {
    grid-template-columns: 1fr;
  }
}

.area-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 2px solid var(--lagoon);
}

.area-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.area-list .a-town {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}

.area-list .a-note {
  font-size: 0.92rem;
  color: var(--muted);
  text-align: right;
}

.town-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.town-chips li {
  background: var(--lagoon-deep);
  border: 1px solid var(--lagoon-line);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 55rem) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-facts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.contact-facts li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.contact-facts .icon {
  color: var(--aqua-deep);
  flex: none;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
}

.form-card h3 {
  margin-bottom: 0.3em;
}

.form-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.field {
  margin-bottom: 1.05rem;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.field .opt {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--shell);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.7rem 0.95rem;
}

.field textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--aqua-deep);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 36rem) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.form-success {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--foam);
  padding: 1.5rem;
  text-align: center;
}

.form-success p {
  margin-bottom: 0;
}

/* ---------- Demo notice + footer ---------- */

.demo-notice {
  background: var(--foam);
  border-top: 1px solid var(--line);
  border-bottom: 4px solid var(--aqua);
  font-size: 0.94rem;
}

.demo-notice .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1.5rem;
  padding-block: 0.85rem;
}

.demo-notice p {
  margin: 0;
}

.site-footer {
  background: var(--lagoon-deep);
  color: var(--shell-on-lagoon);
  font-size: 0.98rem;
}

.site-footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-block: 2.75rem;
}

.site-footer .wordmark {
  color: #fff;
}

.site-footer .wm-sub {
  color: var(--aqua-tint);
}

.f-tag {
  margin-top: 1rem;
  max-width: 26rem;
}

.f-trust {
  margin-bottom: 0.5rem;
}

.f-trust strong {
  color: #fff;
}

.f-trust-note {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-on-lagoon);
}

.site-footer .brand .btn {
  margin-top: 0.75rem;
}

.col-h {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--aqua-tint);
  margin: 0 0 0.8rem;
}

.site-footer .col ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer .col a,
.site-footer .small a {
  color: #fff;
  text-decoration: none;
}

.site-footer .col a:hover,
.site-footer .small a:hover {
  text-decoration: underline;
}

.site-footer .small {
  font-size: 0.9rem;
  color: var(--muted-on-lagoon);
}

.site-footer .legal {
  border-top: 1px solid var(--lagoon-line);
  padding-block: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted-on-lagoon);
}

.site-footer .legal p {
  margin: 0;
}

@media (max-width: 63.9rem) {
  .site-footer .cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 47.9rem) {
  .site-footer .cols {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding-block: 2rem;
  }

  .f-tag,
  .f-hours-note {
    display: none;
  }

  .site-footer .col ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.1rem;
  }

  .col-h {
    margin-bottom: 0.45rem;
  }

  .site-footer .legal {
    padding-block: 0.85rem;
  }
}

/* ---------- Call dialog ---------- */

.call-dialog {
  border: 1px solid var(--line);
  border-top: 5px solid var(--aqua);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem 1.6rem;
  max-width: 26rem;
  width: calc(100% - 2.5rem);
  box-shadow: 0 30px 70px rgba(9, 43, 55, 0.5);
  text-align: center;
  background: var(--card);
}

.call-dialog::backdrop {
  background: rgba(9, 43, 55, 0.62);
}

.call-dialog .kicker {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin: 0 0 0.5rem;
}

.call-dialog h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.call-dialog .number {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  color: var(--lagoon);
  margin: 0 0 0.75rem;
}

.call-dialog .body {
  font-size: 0.97rem;
}

/* ---------- Reveal ---------- */

html.js .rise {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

html.js .rise.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Mobile hero: photo becomes the ground ---------- */

@media (max-width: 47.9rem) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: clamp(30rem, 74vh, 38rem);
    /* the copy keeps the inset; the photo already bleeds full width */
    padding: 0;
  }

  .hero .hero-media img {
    /* the tall crop shows ~36% of the frame — keep the tech and the
       water in it, not just the lanai roof */
    object-position: 30% center;
  }

  .hero .hero-media::after {
    background: linear-gradient(
      180deg,
      rgba(9, 43, 55, 0.36) 0%,
      rgba(9, 43, 55, 0.62) 38%,
      rgba(9, 43, 55, 0.88) 72%,
      rgba(9, 43, 55, 0.95) 100%
    );
  }

  /* the copy column */
  .hero-grid > *:first-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem var(--pad-x) 1.9rem;
  }

  /* colours are inherited from the base hero now that the photo
     is the background at every width — only sizing differs here */
  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 3.3rem);
  }

  .hero-lede {
    font-size: 1.06rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .hero-lede .lede-s[data-lede-desktop] {
    display: none;
  }

  .hero-actions {
    margin-block: 1.35rem 0.95rem;
    gap: 0.7rem;
  }

  .hero-actions .btn--call {
    flex: 1 1 100%;
    box-shadow: 0 10px 28px rgba(5, 26, 34, 0.42);
  }

  .hero-actions .btn--ghost {
    flex: 1 1 100%;
  }

  .hero-hours {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  /* the route sticker would crowd the copy on a phone */
  .route-sticker {
    display: none;
  }
}
