:root {
  --navy: #0a1628;
  --ocean: #0d2b45;
  --ocean-soft: #123a5a;
  --sand: #f2ead8;
  --sand-soft: #f7f1e4;
  --white: #faf8f4;
  --paper: #fffdf8;
  --gold: #c9a84c;
  --gold-deep: #a78329;
  --muted: #637083;
  --muted-dark: #445167;
  --line: rgba(10, 22, 40, 0.13);
  --line-strong: rgba(10, 22, 40, 0.24);
  --gold-line: rgba(201, 168, 76, 0.34);
  --white-soft: rgba(250, 248, 244, 0.86);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 74rem;
  --container-wide: 88rem;
  --header-height: 5rem;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-pad: clamp(4.25rem, 8vw, 7rem);
  --radius-sm: 0.45rem;
  --radius-md: 0.9rem;
  --radius-lg: 1.75rem;
  --shadow-soft: 0 1.35rem 3rem rgba(10, 22, 40, 0.10);
  --shadow-card: 0 0.9rem 2.2rem rgba(10, 22, 40, 0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--navy);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(201, 168, 76, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 12%, rgba(13, 43, 69, 0.10), transparent 26rem),
    linear-gradient(180deg, var(--white) 0%, var(--sand-soft) 48%, var(--white) 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.78;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--sand-soft);
}

::-webkit-scrollbar-thumb {
  background: rgba(10, 22, 40, 0.30);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
summary {
  touch-action: manipulation;
}

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

img {
  height: auto;
}

button {
  border: 0;
}

[hidden] {
  display: none !important;
}

[data-section] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--white);
  transition: background-color 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), backdrop-filter 0.24s var(--ease);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(10, 22, 40, 0.94);
  border-bottom-color: rgba(201, 168, 76, 0.20);
  box-shadow: 0 1.2rem 2.5rem rgba(10, 22, 40, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand,
.brand__text,
.site-nav-links,
.link-card > *,
.split > *,
.feature-link > *,
.local-section > *,
.faq-section > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  width: 4rem;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 0.4rem 0.9rem rgba(10, 22, 40, 0.12));
}

.brand__text {
  display: grid;
  gap: 0.22rem;
}

.brand__name {
  overflow: hidden;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2.1vw, 1.55rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__tagline {
  overflow: hidden;
  color: rgba(201, 168, 76, 0.94);
  font-size: 0.62rem;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.22em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.35vw, 2rem);
}

.nav-link {
  padding: 0.7rem 0;
  color: rgba(250, 248, 244, 0.78);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.18s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.32);
  color: var(--white);
}

.nav-toggle__box {
  position: relative;
  display: block;
  width: 1.6rem;
  height: 1.05rem;
}

.nav-toggle__box span,
.nav-toggle__box::before,
.nav-toggle__box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: top 0.24s var(--ease), transform 0.24s var(--ease), opacity 0.18s;
}

.nav-toggle__box::before {
  top: 0;
}

.nav-toggle__box span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle__box::after {
  top: calc(100% - 2px);
}

.site-header.menu-open .nav-toggle__box::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.site-header.menu-open .nav-toggle__box span {
  opacity: 0;
}

.site-header.menu-open .nav-toggle__box::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.section-rail {
  position: fixed;
  right: clamp(1rem, 2vw, 1.8rem);
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 0.7rem;
  transform: translateY(-50%);
}

.rail-dot {
  position: relative;
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid rgba(10, 22, 40, 0.28);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.82);
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.rail-dot.active,
.rail-dot:hover,
.rail-dot:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.25);
}

.rail-dot span {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: max-content;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.92);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(0.35rem, -50%);
  transition: opacity 0.18s, transform 0.18s;
}

.rail-dot:hover span,
.rail-dot:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.hero {
  position: relative;
  min-height: clamp(40rem, 92svh, 60rem);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: clip;
  padding-block: 0;
  background: var(--navy);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(242, 234, 216, 0.06), transparent 26%),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(250, 248, 244, 0.035) 2px, rgba(250, 248, 244, 0.035) 3px);
}

.hero__media,
.hero__picture,
.hero__picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: 0;
  overflow: hidden;
}

.hero__picture img {
  object-fit: cover;
  object-position: center;
  transform: none;
  will-change: auto;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.08) 0%, rgba(10, 22, 40, 0.38) 48%, rgba(10, 22, 40, 0.90) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.84) 0%, rgba(10, 22, 40, 0.28) 56%, rgba(10, 22, 40, 0.52) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
  padding-block: calc(var(--header-height) + clamp(4rem, 9vh, 7rem)) clamp(4rem, 9vh, 6.5rem);
}

.hero__content {
  width: min(100%, 50rem);
}

.eyebrow,
.label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.label::before {
  content: "";
  width: 2rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.8;
}

.hero__title,
.section-copy h2,
.compare-shell h2,
.media-copy h2,
.cta-band h2,
.link-card h3,
.service-card h3,
.plan-row h3,
summary,
.area-grid span,
.stat-num,
.section-num {
  font-family: var(--font-display);
}

.hero__title {
  max-width: min(100%, 11.5ch);
  margin-top: 1.25rem;
  color: var(--white);
  font-size: clamp(4.2rem, 9.2vw, 8.35rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__title em,
.media-copy h2 em,
.cta-band h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  max-width: 43rem;
  margin-top: 1.5rem;
  color: rgba(250, 248, 244, 0.88);
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.1rem, 4vw, 3rem);
  margin-top: 2.6rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(201, 168, 76, 0.32);
}

.hero__stat {
  display: grid;
  gap: 0.35rem;
}

.stat-num {
  color: var(--gold);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  color: rgba(250, 248, 244, 0.68);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section,
main > section:not(.hero),
main > div.section {
  padding-block: var(--section-pad);
}

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

.section--sand {
  background:
    radial-gradient(circle at 14% 4%, rgba(201, 168, 76, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--sand-soft), var(--sand));
}

.section--deep {
  background:
    radial-gradient(circle at 85% 18%, rgba(201, 168, 76, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--navy), var(--ocean));
  color: var(--white);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.34) 26%, rgba(10, 22, 40, 0.10) 50%, rgba(201, 168, 76, 0.34) 74%, transparent);
}

.answer-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: var(--gold-line);
  box-shadow: var(--shadow-soft);
}

.answer-card {
  min-height: 15rem;
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
  background: rgba(255, 253, 248, 0.88);
}

.answer-card .label {
  margin-bottom: 1.15rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
}

.answer-card .label::before {
  display: none;
}

.answer-card p,
.section-copy p:not(.label),
.compare-shell > p:not(.label),
.media-copy p,
.service-card p,
.plan-row p,
details p,
.cta-band p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.split {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.section-copy {
  max-width: 41rem;
}

.section-num {
  display: block;
  margin-bottom: -1rem;
  color: rgba(201, 168, 76, 0.34);
  font-size: clamp(4.8rem, 10vw, 8.5rem);
  font-weight: 500;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
}

.section-copy h2,
.compare-shell h2,
.media-copy h2,
.cta-band h2 {
  margin-top: 0.7rem;
  color: var(--navy);
  font-size: clamp(2.8rem, 5.6vw, 5.35rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section-copy p:not(.label),
.compare-shell > p:not(.label),
.media-copy p,
.card p {
  margin-top: 1.2rem;
}

.section--deep .label,
.section--deep .section-num,
.section--deep .cta-band h2 em {
  color: var(--gold);
}

.section--deep .cta-band h2,
.section--deep .cta-band p {
  color: var(--white);
}

.link-stack,
.services-grid,
.plans-table,
.faq-list {
  display: grid;
}

.link-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.35rem, 2.8vw, 2.1rem) 0;
  border-top: 1px solid var(--line);
}

.link-card:last-child {
  border-bottom: 1px solid var(--line);
}

.link-card h3 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.98;
}

.link-card p {
  max-width: 34rem;
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.1rem;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.1;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
}

.button--primary {
  border-color: rgba(201, 168, 76, 0.86);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0.8rem 1.9rem rgba(201, 168, 76, 0.18);
}

.button--secondary {
  border-color: rgba(10, 22, 40, 0.22);
  background: rgba(255, 253, 248, 0.70);
  color: var(--navy);
}

.section--deep .button--secondary {
  border-color: rgba(250, 248, 244, 0.38);
  background: rgba(250, 248, 244, 0.08);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #d4b85d;
  box-shadow: 0 1rem 2rem rgba(201, 168, 76, 0.26);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.service-card {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: clamp(1.2rem, 2.4vw, 1.85rem) 0;
  border-top: 1px solid var(--line);
}

.service-card:last-of-type {
  border-bottom: 1px solid var(--line);
}

.service-card .card-num {
  grid-row: 1 / span 2;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 0.92;
  opacity: 0.75;
}

.service-card h3 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.service-card p {
  grid-column: 2;
}

.qualification-banner {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.76);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  box-shadow: var(--shadow-card);
}

.qualification-banner::after {
  content: "→";
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.compare-shell {
  position: relative;
  overflow: hidden;
  max-width: var(--container-wide);
  padding: clamp(1.6rem, 4vw, 3.5rem);
  border: 1px solid rgba(201, 168, 76, 0.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 16% 4%, rgba(201, 168, 76, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(18, 58, 90, 0.42), transparent 26rem),
    linear-gradient(135deg, #07111e, #0a1628 58%, #0d2b45);
  color: var(--white);
  box-shadow: 0 2rem 4rem rgba(10, 22, 40, 0.26);
}

.compare-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(250, 248, 244, 0.08) 28%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(250, 248, 244, 0.06) 0 1px, transparent 1px 6.5rem);
  opacity: 0.42;
}

.compare-shell > * {
  position: relative;
  z-index: 1;
}

.compare-shell .label,
.compare-shell .section-num {
  color: rgba(201, 168, 76, 0.78);
}

.compare-shell .section-num {
  margin-bottom: 0.25rem;
  opacity: 0.72;
}

.compare-shell h2 {
  color: var(--white);
}

.compare-shell > p:not(.label) {
  max-width: 61rem;
  color: rgba(250, 248, 244, 0.76);
}

.compare-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
  margin-top: clamp(1.8rem, 4vw, 3rem);
}

.image-compare {
  --pos: 50%;
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  min-height: 24rem;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 244, 0.18);
  border-radius: var(--radius-md);
  background: #07111e;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.28);
  touch-action: pan-y;
  user-select: none;
}

.keyword-panel {
  max-width: none;
}

.image-compare img,
.image-compare picture {
  width: 100%;
  height: 100%;
}

.image-compare img {
  object-fit: cover;
}

.compare-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  will-change: clip-path;
}

.compare-before::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 68%, rgba(250, 248, 244, 0.16), transparent 8rem),
    linear-gradient(180deg, rgba(10, 22, 40, 0.12), rgba(10, 22, 40, 0.24));
  mix-blend-mode: screen;
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 4;
  width: 2px;
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.38);
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(250, 248, 244, 0.68);
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.84);
  color: var(--white);
  box-shadow: 0 1rem 2.2rem rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.compare-handle::before {
  content: "↔";
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.compare-label {
  position: absolute;
  top: 1rem;
  z-index: 3;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(250, 248, 244, 0.32);
  border-radius: 999px;
  background: rgba(7, 17, 30, 0.68);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.before-label {
  left: 1rem;
}

.after-label {
  right: 1rem;
}

.keyword-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.25rem, 2.8vw, 2rem);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-md);
  background: rgba(250, 248, 244, 0.08);
  backdrop-filter: blur(14px);
}

.keyword-panel p:not(.label) {
  color: rgba(250, 248, 244, 0.74);
}

.keyword-grid {
  display: grid;
  gap: 0.6rem;
}

.keyword-grid p {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(18rem, 0.48fr);
  gap: 0.35rem;
  align-items: center;
  margin: 0;
  padding: 0.85rem;
  border: 1px solid rgba(250, 248, 244, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(7, 17, 30, 0.38);
}

.keyword-grid strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.05;
}

.keyword-grid span {
  grid-column: 1;
  color: rgba(250, 248, 244, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keyword-grid em {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
  justify-self: end;
  max-width: 24rem;
  color: rgba(250, 248, 244, 0.68);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.55vw, 1.75rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.08;
  text-align: right;
}

.plan-row strong {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.plan-row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.2rem, 2.5vw, 1.9rem) 0;
  border-top: 1px solid var(--line);
}

.plan-row:last-child {
  border-bottom: 1px solid var(--line);
}

.plan-row h3 {
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1;
}

.plan-row span {
  display: block;
  margin-top: 0.45rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.45;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.plan-cta {
  margin-top: 1.8rem;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1.6rem, 5vw, 4rem);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(242, 234, 216, 0.78)),
    var(--sand-soft);
  box-shadow: var(--shadow-soft);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.area-grid span {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--radius-md);
  background: rgba(250, 248, 244, 0.76);
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.area-grid .wide {
  grid-column: 1 / -1;
}

.feature-link {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.feature-link--text {
  grid-template-columns: minmax(0, 1fr);
}

.feature-link--text .media-copy {
  max-width: 64rem;
}

.feature-link figure {
  overflow: hidden;
  aspect-ratio: 11 / 9;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow-soft);
}

.feature-link picture,
.feature-link img {
  width: 100%;
  height: 100%;
}

.feature-link img {
  object-fit: cover;
}

.media-copy h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.media-copy .button {
  margin-top: 1.8rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

details {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 0;
  color: var(--navy);
  cursor: pointer;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 48rem;
  padding: 0 0 1.4rem;
}

.text-link {
  color: var(--ocean);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-deep);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(1.6rem, 5vw, 4rem);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: var(--radius-lg);
  background: rgba(250, 248, 244, 0.06);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.24);
  background: var(--navy);
  color: rgba(250, 248, 244, 0.72);
}

.site-footer__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.site-footer .brand__name {
  color: var(--white);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.1rem;
}

.site-footer__links a {
  color: rgba(250, 248, 244, 0.68);
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold);
}

.footer-last-updated {
  margin-top: 1.5rem;
  color: rgba(250, 248, 244, 0.58);
  font-size: 0.72rem;
}

h1,
h2,
h3,
summary {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
li,
dd {
  overflow-wrap: break-word;
}

@supports (content-visibility: auto) {
  main > section:not(.hero),
  main > div.section {
    content-visibility: auto;
    contain-intrinsic-size: auto 54rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .js .reveal.in {
    opacity: 1;
    transform: none;
  }
}

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

@media (min-width: 1600px) {
  :root {
    --container: 80rem;
  }

  .hero {
    min-height: min(90svh, 62rem);
  }

  .hero__title {
    font-size: clamp(6rem, 7.8vw, 8.8rem);
  }
}

@media (min-width: 2200px) {
  :root {
    --container: 84rem;
  }

  .hero {
    min-height: min(86svh, 64rem);
  }

  .hero__title {
    font-size: clamp(6.5rem, 6.2vw, 9rem);
  }
}

@media (min-aspect-ratio: 16 / 9) and (min-width: 1200px) {
  .hero {
    min-height: min(88svh, 58rem);
  }

  .hero__inner {
    padding-bottom: clamp(3.2rem, 7vh, 5rem);
  }
}

@media (max-height: 740px) and (min-width: 901px) {
  .hero {
    min-height: 40rem;
  }

  .hero__title {
    font-size: clamp(4rem, 8vw, 6.9rem);
  }

  .hero__stats {
    margin-top: 1.6rem;
  }
}

@media (max-width: 1180px) {
  .section-rail {
    display: none;
  }
}

@media (max-width: 1100px) {
  .split,
  .local-section,
  .feature-link,
  .faq-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.6rem;
    --section-pad: clamp(4rem, 12vw, 6.2rem);
  }

  .site-header.scrolled,
  .site-header.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-links {
    position: fixed;
    inset: calc(var(--header-height) + env(safe-area-inset-top) + 0.55rem) var(--gutter) auto;
    z-index: 120;
    display: grid;
    gap: 0;
    max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.2rem);
    overflow: auto;
    padding: 0.65rem;
    border: 1px solid rgba(201, 168, 76, 0.26);
    border-radius: 1.15rem;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 1.4rem 3rem rgba(10, 22, 40, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.55rem);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    visibility: hidden;
  }

  .site-header.menu-open .site-nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-link {
    min-height: 3rem;
    display: flex;
    align-items: center;
    padding: 0.95rem 0.9rem;
    border-radius: 0.75rem;
    color: rgba(250, 248, 244, 0.86);
  }

  .nav-link.active,
  .nav-link[aria-current="page"],
  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(201, 168, 76, 0.10);
    color: var(--gold);
  }

  .hero {
    min-height: clamp(38rem, 94svh, 50rem);
  }

  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(10, 22, 40, 0.16) 0%, rgba(10, 22, 40, 0.48) 48%, rgba(10, 22, 40, 0.93) 100%),
      linear-gradient(90deg, rgba(10, 22, 40, 0.80) 0%, rgba(10, 22, 40, 0.34) 72%);
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3.75rem;
  }

  .hero__title {
    max-width: 9.8ch;
    font-size: clamp(3.75rem, 14.5vw, 6rem);
  }

  .hero__subtitle {
    font-size: clamp(1rem, 3.4vw, 1.18rem);
    line-height: 1.65;
  }

  .answer-band,
  .compare-stage {
    grid-template-columns: 1fr;
  }

  .image-compare {
    aspect-ratio: auto;
    min-height: 22rem;
  }

  .keyword-grid p {
    grid-template-columns: 1fr;
  }

  .keyword-grid em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    max-width: 100%;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    text-align: left;
  }

  .plan-row {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .plan-row p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  .link-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .link-card .button,
  .plan-cta .button,
  .media-copy .button,
  .button-row .button {
    width: 100%;
    white-space: normal;
  }

  .service-card {
    grid-template-columns: 2.45rem minmax(0, 1fr);
    gap: 1rem;
  }

  .service-card p {
    grid-column: 1 / -1;
  }

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

@media (max-width: 600px) {
  :root {
    --header-height: 4.25rem;
    --gutter: 1rem;
    --section-pad: clamp(3.7rem, 14vw, 5.2rem);
  }

  .brand {
    gap: 0.65rem;
  }

  .brand__mark {
    width: 2.8rem;
  }

  .brand__name {
    max-width: 11rem;
    font-size: clamp(1.08rem, 5vw, 1.3rem);
  }

  .brand__tagline {
    display: none;
  }

  .nav-toggle {
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero__inner {
    padding-top: calc(var(--header-height) + 2.4rem);
    padding-bottom: 3.25rem;
  }

  .eyebrow,
  .label {
    gap: 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .eyebrow::before,
  .label::before {
    width: 1.35rem;
  }

  .hero__title {
    max-width: 9ch;
    margin-top: 1rem;
    font-size: clamp(3.25rem, 16vw, 4.85rem);
    line-height: 0.96;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.1rem;
  }

  .section-num {
    margin-bottom: -0.65rem;
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .section-copy h2,
  .compare-shell h2,
  .media-copy h2,
  .cta-band h2 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    line-height: 1;
  }

  .answer-card,
  .compare-shell,
  .local-section,
  .cta-band {
    padding: 1.25rem;
  }

  .feature-link figure {
    aspect-ratio: 16 / 11;
    border-radius: 1.15rem;
  }

  .area-grid span {
    min-height: 4.2rem;
    padding: 0.85rem;
  }

  summary {
    padding: 1.1rem 0;
    font-size: clamp(1.2rem, 5.8vw, 1.55rem);
  }

  .site-footer__row {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(3rem, 15.2vw, 4rem);
  }

  .button {
    padding-inline: 1.05rem;
    letter-spacing: 0.11em;
  }

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

@media (hover: none) {
  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}

html:not(.js) .reveal,
.js .reveal.in {
  opacity: 1;
  transform: none;
}


/* Final gutter fix: keep hero content off phone edges and tame fullscreen spread. */
@media (max-width: 600px) {
  .hero__inner {
    padding-top: calc(var(--header-height) + 2.15rem);
    padding-bottom: 2.8rem;
  }

  .hero__subtitle {
    max-width: 34rem;
  }
}

@media (min-width: 1600px) {
  .hero__content {
    width: min(100%, 48rem);
  }
}

.compare-disclaimer{margin:1rem auto 0;max-width:62rem;color:rgba(10,22,40,.68);font-size:.9rem;line-height:1.6;text-align:center;}

/* Footer-only transparent Lite Yachting logo. Header brand remains unchanged. */
.site-footer .brand--footer{display:inline-flex;align-items:center;gap:0}
.site-footer .brand__footer-logo{display:block;width:min(16rem,80vw);max-width:100%;height:auto}
@media(max-width:860px){.site-footer .brand__footer-logo{width:min(14rem,82vw)}}
