:root {
  color-scheme: light;

  --brand-primary:    #16234F;
  --brand-accent:     #DF643A;
  --brand-neutral:    #16181C;
  --brand-bg:         #F8F7F9;
  --brand-on-primary: #ffffff;

  --brand-navy:       #16234F;
  --brand-navy-deep:  #0E1733;
  --brand-flame:      #DF643A;
  --brand-amber:      #F7911E;
  --brand-red:        #ED1C24;
  --brand-ink:        #16181C;
  --brand-surface:    #F8F7F9;

  --color-primary:       var(--brand-navy);
  --color-primary-hover: #0E1733;
  --color-accent:        var(--brand-flame);

  --color-accent-text:    #c04720;  /* 4.72:1 on #F8F7F9, 5.04:1 on #fff, white on it 5.04:1 */
  --color-accent-on-dark: #F7911E;  /* 7.59:1 on #0E1733, 6.50:1 on #16234F */
  --focus-ring:           #16234F;  /* 14.17:1 on #F8F7F9 */
  --focus-ring-on-dark:   #F7911E;

  --color-text:       var(--brand-ink);
  --color-text-muted: #5C5A6B;      /* 6.28:1 on #F8F7F9, 6.71:1 on #fff */
  --color-bg:         var(--brand-surface);
  --color-bg-alt:     #ffffff;
  --color-border:     #888594;      /* 3.37:1 on #F8F7F9 - UI boundary, 1.4.11 */
  --color-rule:       #E2E0E7;

  --grad-brand: linear-gradient(180deg, var(--brand-amber) 0%, var(--brand-red) 100%);
  --grad-brand-h: linear-gradient(90deg, var(--brand-amber) 0%, var(--brand-red) 100%);

  --font-sans:    "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;

  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem;  --sp-10: 2.5rem;
  --sp-12: 3rem;  --sp-16: 4rem;  --sp-20: 5rem; --sp-24: 6rem;
  --content-max: 74rem;
  --reading-max: 40rem;
  --radius-sm: 2px;
  --radius-md: 3px;
  --notch: 22px;

  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 600ms;
  --ease:     cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: .005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.25rem, 4.2vw + .6rem, 3.75rem); }
h2 { font-size: clamp(1.75rem, 2.6vw + .7rem, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1vw + .9rem, 1.5rem); }
h4 { font-size: 1.125rem; }

.h-xl { font-size: clamp(2.75rem, 6vw + .5rem, 4.75rem); }

p { max-width: var(--reading-max); }
h1 + p, h2 + p, h3 + p, h1 + .lead, h2 + .lead { margin-top: var(--sp-5); }
h3 + p { margin-top: var(--sp-3); }
p + p { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-2); }
.prose ul { margin: var(--sp-4) 0; padding-left: var(--sp-6); }
.prose li + li { margin-top: var(--sp-2); }

a { color: var(--color-accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }
.prose a, p a { text-decoration: underline; text-underline-offset: 3px; }
.btn, .area, .brand, .nav-desktop a, .nav-mobile a, .marquee__item, .nearby a,
.prose .btn, .prose .btn:hover { text-decoration: none; }

:focus-visible { outline-color: var(--focus-ring); }
.on-dark :focus-visible { outline-color: var(--focus-ring-on-dark); }

.skip-link { background: var(--brand-navy-deep); color: #fff; }

.container { max-width: var(--content-max); margin-inline: auto; padding-inline: var(--sp-5); }
.container-narrow { max-width: 56rem; margin-inline: auto; padding-inline: var(--sp-5); }
section { padding-block: clamp(var(--sp-12), 7vw, var(--sp-24)); }
.sec-tight { padding-block: clamp(var(--sp-8), 4vw, var(--sp-12)); }

.sec-alt  { background: var(--color-bg-alt); }
.sec-dark, .on-dark, .hero, .phero, .napcard, .callout, .site-footer, .consent-banner {
  --color-text-muted: #C9C7D4;      /* 10.60:1 on #0E1733 - the token inverts on dark */
}

.sec-dark { background: var(--brand-navy-deep); color: #fff; }
.sec-dark h1, .sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark p { color: #E7E6EC; }
.sec-dark .eyebrow { color: var(--color-accent-on-dark); }

.eyebrow {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: .8125rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--color-accent-text);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: ""; width: 34px; height: 4px; flex: none;
  background: var(--grad-brand-h);
}
.eyebrow--center { justify-content: center; }

.lead { font-size: 1.1875rem; color: var(--color-text-muted); max-width: 46rem; }
.sec-dark .lead { color: #C9C7D4; }
.sec-head { margin-bottom: var(--sp-10); }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-head--center p { margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 500;
  background: var(--brand-navy-deep);
  border-bottom: 3px solid transparent;
  border-image: var(--grad-brand-h) 1;
}
.site-header__inner {
  max-width: var(--content-max); margin-inline: auto;
  padding: var(--sp-3) var(--sp-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
}
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); color: #fff; font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; }
.site-footer .brand__logo { height: 54px; }

.nav-desktop ul { display: flex; align-items: center; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.nav-desktop a {
  display: block; padding: var(--sp-2) var(--sp-3);
  font-family: var(--font-display); font-size: .9375rem; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; border-bottom: 3px solid transparent;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-desktop a:hover { text-decoration: none; border-bottom-color: var(--brand-flame); }
.nav-desktop a[aria-current="page"] { border-bottom-color: var(--brand-flame); color: var(--brand-amber); }
.nav-desktop a.cta {
  background: var(--brand-flame); color: #16181C; margin-left: var(--sp-3);
  padding-inline: var(--sp-5); border-bottom-color: transparent; font-weight: 600;
}
.nav-desktop a.cta:hover { background: var(--brand-amber); border-bottom-color: transparent; }

.nav-desktop .has-dropdown { position: relative; }
.nav-desktop .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 15rem;
  background: var(--brand-navy-deep); border: 1px solid rgba(255,255,255,.16);
  padding: var(--sp-2); display: none; flex-direction: column; gap: 0; z-index: 10;
}
.nav-desktop .has-dropdown:hover .dropdown,
.nav-desktop .has-dropdown:focus-within .dropdown { display: flex; }
.nav-desktop .dropdown a { border-bottom: 0; font-size: .875rem; padding: var(--sp-2) var(--sp-3); text-align: center; }
.nav-desktop .dropdown a:hover { background: rgba(255,255,255,.1); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: #fff; border-radius: var(--radius-sm); cursor: pointer;
}
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle  { display: inline-flex; }
}

.nav-mobile {
  padding: var(--sp-16) var(--sp-6) var(--sp-6);
  background: var(--brand-navy-deep);
  border-left: 3px solid var(--brand-flame);
  color: #fff;
  overflow-y: auto;
}
.nav-mobile__close {
  position: absolute; top: var(--sp-3); right: var(--sp-3);
  background: transparent; border: 1px solid rgba(255,255,255,.4); color: #fff;
  border-radius: var(--radius-sm); font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.nav-mobile ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-1); }
.nav-mobile a {
  display: block; padding: var(--sp-3) var(--sp-4); color: #fff;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
  border-left: 3px solid transparent;
}
.nav-mobile a:hover { text-decoration: none; background: rgba(255,255,255,.08); border-left-color: var(--brand-flame); }
.nav-mobile a[aria-current="page"] { border-left-color: var(--brand-flame); color: var(--brand-amber); }
.nav-mobile summary {
  padding: var(--sp-3) var(--sp-4); cursor: pointer; color: #fff;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em;
}
.nav-mobile details ul { padding-left: var(--sp-4); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--color-accent-text); color: #fff; }
.btn-primary:hover { background: #a83d18; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { background: rgba(22,35,79,.06); border-color: var(--brand-navy); }
.on-dark .btn-ghost, .sec-dark .btn-ghost, .hero .btn-ghost, .phero .btn-ghost,
.callout .btn-ghost, .napcard .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.6);
}
.on-dark .btn-ghost:hover, .sec-dark .btn-ghost:hover, .hero .btn-ghost:hover,
.phero .btn-ghost:hover, .callout .btn-ghost:hover, .napcard .btn-ghost:hover {
  background: rgba(255,255,255,.14); border-color: #fff;
}
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: 1.125rem; }
.btn-block { width: 100%; }

.btn-phone { gap: var(--sp-3); }
.btn-phone svg { width: 20px; height: 20px; flex: none; }

@media (max-width: 400px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; }
}

.actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-8); }
.actions--center { justify-content: center; }

.notch { position: relative; }
.notch::after {
  content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0;
  border-left: var(--notch) solid transparent;
  border-top: var(--notch) solid var(--notch-bg, var(--color-bg));
  pointer-events: none;
}
.sec-alt .notch { --notch-bg: var(--color-bg-alt); }
.sec-dark .notch { --notch-bg: var(--brand-navy-deep); }

.hero {
  position: relative;
  background: var(--brand-navy-deep);
  color: #fff;
  overflow: hidden;
  padding: 0;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(14,23,51,.96) 0%, rgba(14,23,51,.90) 34%, rgba(14,23,51,.55) 56%, rgba(14,23,51,.18) 78%),
    linear-gradient(0deg, rgba(14,23,51,.55) 0%, rgba(14,23,51,0) 42%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--content-max); margin-inline: auto;
  padding: clamp(var(--sp-16), 9vw, var(--sp-24)) var(--sp-5);
  min-height: clamp(30rem, 68vh, 44rem);
  display: flex; flex-direction: column; justify-content: center;
}
.hero__copy { max-width: 40rem; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .lead { color: #D7D5E0; margin-top: var(--sp-5); }
.hero .eyebrow { color: var(--color-accent-on-dark); }

.hero__chip {
  display: inline-flex; align-items: baseline; gap: var(--sp-3);
  margin-top: var(--sp-8); padding: var(--sp-3) var(--sp-5);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.24);
  border-left: 4px solid var(--brand-flame);
}
.hero__chip b {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--color-accent-on-dark); letter-spacing: .01em;
}
.hero__chip span { font-size: .9375rem; color: #D7D5E0; }

.hero__strip {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(9,15,34,.94);
}
.hero__strip ul {
  max-width: var(--content-max); margin-inline: auto; padding: var(--sp-4) var(--sp-5);
  list-style: none; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: var(--sp-4) var(--sp-6);
}
@media (max-width: 860px) { .hero__strip ul { justify-content: center; } }
.hero__strip li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--font-display); font-size: .875rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
}
.hero__strip svg { width: 18px; height: 18px; flex: none; color: var(--brand-amber); }

.sizer { display: grid; gap: var(--sp-8); grid-template-columns: 1fr; }
.sizer__side { display: contents; }
.sizer__panels  { order: 2; }
.sizer__actions { order: 3; margin-top: 0; }
@media (min-width: 1080px) {
  .sizer { grid-template-columns: 25rem 1fr; gap: var(--sp-8); align-items: start; }
  .sizer__side { display: block; position: sticky; top: 6.5rem; }
  .sizer__panels { order: 0; }
  .sizer__actions { margin-top: var(--sp-6); }
}

.sizer__tabs { display: flex; flex-direction: row; flex-wrap: wrap; gap: var(--sp-3); }
.sizer__tabs > * { flex: 1 1 16rem; }
@media (max-width: 720px) { .sizer__tabs > * { flex: 1 1 100%; } }
@media (min-width: 1080px) {
  .sizer__tabs { flex-direction: column; flex-wrap: nowrap; }
  .sizer__tabs > * { flex: 0 0 auto; }
}
.sizer__tab {
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: var(--sp-4); width: 100%; text-align: left; cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border); border-left: 5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.sizer__tab:hover { transform: translateX(3px); border-left-color: var(--brand-flame); }
.sizer__tab[aria-selected="true"] {
  border-color: var(--brand-navy); border-left-color: transparent;
  box-shadow: 0 6px 22px rgba(22,35,79,.16);
  background: #fff;
}
.sizer__tab[aria-selected="true"]::before {
  content: ""; position: absolute; left: -5px; top: -1px; bottom: -1px; width: 5px;
  background: var(--grad-brand);
}
.sizer__can { width: 46px; flex: none; }
.sizer__can rect { fill: #C9C7D4; transition: fill var(--dur-base) var(--ease); }
.sizer__tab[aria-selected="true"] .sizer__can rect { fill: var(--brand-flame); }
.sizer__tab h3 { margin: 0; font-size: 1.375rem; line-height: 1; }
.sizer__tab small { display: block; font-family: var(--font-sans); font-size: .875rem;
  text-transform: none; letter-spacing: 0; color: var(--color-text-muted); margin-top: 2px; }
.sizer__price { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-accent-text); }

.sizer__panel { display: none; }
.sizer__panel.is-active { display: block; animation: sizer-in var(--dur-base) var(--ease-out); }
@keyframes sizer-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.sizer__card {
  background: #fff; border: 1px solid var(--color-rule);
  padding: var(--sp-8); --notch-bg: var(--color-bg);
}
.sizer__card h3 { font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem); }
.sizer__figure { margin: var(--sp-6) 0; }
.sizer__figure img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  max-height: 300px; border-radius: var(--radius-md);
}
.sizer__specs {
  list-style: none; margin: var(--sp-6) 0 0; padding: 0;
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--color-rule); background: #fff;
}
.sizer__specs li {
  flex: 1 1 0; min-width: 7rem; padding: var(--sp-4); margin: 0;
  border-left: 1px solid var(--color-rule);
}
.sizer__specs li + li { margin-top: 0; }
.sizer__specs li:first-child { border-left: 0; }
.prose .sizer__specs { padding-left: 0; }
@media (max-width: 560px) {
  .sizer__specs li { flex: 1 1 100%; border-left: 0; border-top: 1px solid var(--color-rule); }
  .sizer__specs li:first-child { border-top: 0; }
}
.sizer__specs svg {
  width: 22px; height: 22px; color: var(--brand-flame);
  margin-bottom: var(--sp-2);
}
.sizer__specs dt { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-text-muted); font-weight: 600; }
.sizer__specs dd { font-family: var(--font-display); font-size: 1.25rem; margin: 2px 0 0; }
.sizer__fits { margin-top: var(--sp-6); }
.sizer__fits ul { list-style: none; padding: 0; margin: var(--sp-3) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: flex-start; }
.sizer__fits ul li + li { margin-top: 0; }
.sizer__fits li {
  font-size: .875rem; padding: var(--sp-1) var(--sp-3);
  background: rgba(223,100,58,.12); border: 1px solid rgba(223,100,58,.4);
  border-radius: 999px;
}

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }

.card {
  background: var(--color-bg-alt); border: 1px solid var(--color-rule);
  padding: var(--sp-6); --notch-bg: var(--color-bg);
}
.sec-alt .card { background: var(--color-bg); --notch-bg: var(--color-bg-alt); }
.card__icon { width: 44px; height: 44px; color: var(--brand-flame); margin-bottom: var(--sp-4); }
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--color-text-muted); font-size: .9688rem; }

.split { display: grid; gap: var(--sp-10); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
  .split--40 { grid-template-columns: 2fr 3fr; }
  .split--60 { grid-template-columns: 3fr 2fr; }
  .split--flip > *:first-child { order: 2; }
  .split--40.split--flip { grid-template-columns: 3fr 2fr; }
  .split--60.split--flip { grid-template-columns: 2fr 3fr; }
}
.split__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-md);
}

.overlap { position: relative; }
.overlap__media img { width: 100%; height: auto; border-radius: var(--radius-md); }
.overlap__quote {
  background: var(--brand-navy-deep); color: #fff;
  padding: var(--sp-6); border-left: 5px solid var(--brand-flame);
  margin-top: calc(var(--sp-10) * -1); margin-left: var(--sp-5); margin-right: var(--sp-5);
  position: relative; z-index: 2;
}
@media (min-width: 900px) {
  .overlap__quote { margin: -6rem 0 0 -3rem; max-width: 30rem; padding: var(--sp-8); }
}
.overlap__quote p { color: #E7E6EC; font-size: 1.0625rem; max-width: none; }
.overlap__quote cite { display: block; margin-top: var(--sp-4); font-style: normal;
  font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase;
  font-size: .8125rem; color: var(--brand-amber); }

.steps { counter-reset: step; display: grid; gap: var(--sp-6); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: var(--sp-8); } }
/* padding-top must clear the ::before numeral's 3rem/1.1 line box (52.8px) with
   room to spare, or the number crowds the h3 underneath it. */
.step { position: relative; padding-top: calc(var(--sp-16) + var(--sp-2)); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 3rem; line-height: 1.1;
  color: transparent; background: var(--grad-brand-h); background-clip: text;
  -webkit-background-clip: text;
}
.step::after {
  content: ""; position: absolute; top: 1.65rem; left: 4.75rem; right: 0; height: 2px;
  background: var(--color-rule);
}
@media (max-width: 859px) { .step::after { display: none; } }
.steps > .step:last-child::after { display: none; }
.step h3 { margin-bottom: var(--sp-3); }
.step p { color: var(--color-text-muted); }

.rating { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.rating__score { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: var(--brand-amber); }
.rating__stars { display: flex; gap: 3px; }
.rating__stars svg { width: 22px; height: 22px; color: var(--brand-amber); }
.rating__meta { font-size: .9375rem; color: #C9C7D4; }

.reviews { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.review {
  position: relative;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15);
  padding: var(--sp-6); display: flex; flex-direction: column;
}
.review::before {
  content: ""; position: absolute; inset: -1px -1px auto -1px; height: 3px;
  background: var(--grad-brand-h);
}
.review p { color: #E7E6EC; font-size: .9688rem; max-width: none; flex: 1; }
.review footer { margin-top: var(--sp-4); font-family: var(--font-display);
  letter-spacing: .08em; text-transform: uppercase; font-size: .8125rem; color: var(--brand-amber); }

.marquee { overflow: hidden; border-block: 1px solid var(--color-rule); background: var(--color-bg-alt); }
.marquee__track {
  display: flex; gap: var(--sp-8); width: max-content;
  padding-block: var(--sp-4);
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase;
  font-size: .9375rem; color: var(--color-text-muted); white-space: nowrap;
}
.marquee__item::before { content: ""; width: 7px; height: 7px; background: var(--brand-flame); flex: none; }

.areas { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.area {
  display: block; background: var(--color-bg-alt); border: 1px solid var(--color-rule);
  padding: var(--sp-6); color: var(--color-text); --notch-bg: var(--color-bg);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.sec-alt .area { background: var(--color-bg); --notch-bg: var(--color-bg-alt); }
.area:hover { text-decoration: none; transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(22,35,79,.14); border-color: var(--brand-navy); }
.area h3 { margin-bottom: var(--sp-2); }
.area p { font-size: .9375rem; color: var(--color-text-muted); }
.area__go { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-4);
  font-family: var(--font-display); letter-spacing: .08em; text-transform: uppercase;
  font-size: .8125rem; color: var(--color-accent-text); }
.area__go svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease); }
.area:hover .area__go svg { transform: translateX(4px); }

.faq { max-width: 52rem; }
.faq details {
  background: var(--color-bg-alt); border: 1px solid var(--color-rule);
  margin-bottom: var(--sp-3);
}
.faq details[open] { border-color: var(--brand-navy); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.125rem; letter-spacing: .02em;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 14px; height: 14px;
  border-right: 3px solid var(--color-accent-text); border-bottom: 3px solid var(--color-accent-text);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--dur-fast) var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__body { padding: 0 var(--sp-6) var(--sp-5); }
.faq__body p { color: var(--color-text-muted); max-width: none; }

.priceboard { border: 1px solid var(--color-rule); background: var(--color-bg-alt); }
.priceboard table { width: 100%; border-collapse: collapse; }
.priceboard caption { text-align: left; padding: var(--sp-5) var(--sp-6); font-family: var(--font-display);
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em; background: var(--brand-navy-deep); color: #fff; }
.priceboard th, .priceboard td { padding: var(--sp-4) var(--sp-6); text-align: left; border-top: 1px solid var(--color-rule); }
.priceboard thead th { font-family: var(--font-display); font-size: .8125rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-text-muted); border-top: 0; }
.priceboard tbody th { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; font-weight: 600; }
.priceboard td.is-price { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-accent-text); }
@media (max-width: 720px) {
  .priceboard thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .priceboard tbody tr { display: block; border-top: 1px solid var(--color-rule); padding: var(--sp-3) 0; }
  .priceboard tbody th, .priceboard td { display: block; border: 0; padding: var(--sp-1) var(--sp-6); }
  .priceboard td::before { content: attr(data-label) ": "; font-weight: 600; color: var(--color-text-muted); }
}

.terms { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .terms { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-8); } }
.terms li { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.terms svg { width: 24px; height: 24px; color: var(--brand-flame); margin-top: 3px; flex: none; }
.terms b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; }
.terms span { display: block; color: var(--color-text-muted); font-size: .9688rem; }

.no-list { list-style: none; padding: 0; margin: var(--sp-6) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.no-list li {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4); background: var(--color-bg-alt);
  border: 1px solid var(--color-border); font-size: .9375rem;
}
.no-list svg { width: 16px; height: 16px; color: var(--brand-red); flex: none; }

.form { display: grid; gap: var(--sp-5); max-width: 42rem; }
.form-row { display: grid; gap: var(--sp-5); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form label { font-family: var(--font-display); font-size: .875rem; letter-spacing: .08em;
  text-transform: uppercase; display: block; margin-bottom: var(--sp-2); }
.form input, .form textarea, .form select {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  background: #fff; color: var(--color-text);
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--brand-navy); }
.form textarea { min-height: 9rem; resize: vertical; }
.form-help { font-size: .875rem; color: var(--color-text-muted); }
.form-status { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; }
.form-status.is-ok { color: #1B7A3D; }
.form-status.is-err { color: #B3261E; }
.hp { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }

.booking { border: 1px solid var(--color-rule); background: #fff; }
.booking__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-3) var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--brand-navy-deep); color: #fff;
}
.booking__head h2 { color: #fff; font-size: 1.25rem; margin: 0; }
.booking__head p { color: #C9C7D4; font-size: .875rem; margin: 0; max-width: 38ch; }
/* Docket sends no postMessage height, so the frame height is pinned per breakpoint.
   Values = measured form height + ~110px buffer, checked 2026-07-30 by loading the
   embed URL standalone at each band's real iframe width (1142 / 923 / 683 / 334-280):
   form measured 1831 / 1831 / 1931 / 2071-2091. Buffer absorbs minor Docket shifts;
   re-measure the same way if they change the form, and keep the buffer - clipping the
   Submit button is far worse than a little trailing whitespace. */
.booking { --book-h: 1900px; }
@media (max-width: 1000px) { .booking { --book-h: 1950px; } }
@media (max-width: 760px)  { .booking { --book-h: 2050px; } }
@media (max-width: 560px)  { .booking { --book-h: 2200px; } }

.booking__viewport {
  position: relative; overflow: hidden; height: var(--book-h);
  background: var(--color-bg);
}
.booking__viewport::before {
  content: "Loading the booking form...";
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: var(--sp-16);
  font-family: var(--font-display); letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.booking__frame {
  position: relative; z-index: 1;
  display: block; border: 0;
  width: 100%;
  height: calc(var(--book-h) + 20px);
}
.booking__fallback {
  padding: var(--sp-5); border-top: 1px solid var(--color-rule);
  font-size: .9375rem; color: var(--color-text-muted);
}

.napcard { background: var(--brand-navy-deep); color: #fff; padding: var(--sp-8); --notch-bg: var(--color-bg); }
.napcard h2, .napcard h3 { color: #fff; font-size: clamp(1.375rem, 1.2vw + 1rem, 1.75rem); }
.napcard dl { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
.napcard dt { font-family: var(--font-display); font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand-amber); }
.napcard dd { margin: var(--sp-1) 0 0; color: #E7E6EC; }
.napcard a { color: #fff; }
.napcard dd a { text-decoration: underline; text-underline-offset: 3px; }
.napcard .btn-primary { color: #fff; text-decoration: none; }

.callout {
  background: var(--brand-navy-deep); color: #fff;
  padding: var(--sp-10); text-align: center; --notch-bg: var(--color-bg);
}
.callout h2 { color: #fff; }
.callout p { color: #D7D5E0; margin-inline: auto; }

.local-note {
  display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); background: rgba(223,100,58,.09);
  border-left: 4px solid var(--brand-flame);
}
.local-note svg { width: 24px; height: 24px; color: var(--color-accent-text); flex: none; margin-top: 2px; }
.local-note p { margin: 0; max-width: none; font-size: .9688rem; }
.local-note a { color: #ac4d2d; }  /* 4.63:1 on the tinted note over seasalt */
.local-note b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; }

.site-footer { background: var(--brand-navy-deep); color: #fff; border-top: 0; padding-block: var(--sp-16) var(--sp-8); }
.site-footer__grid { max-width: var(--content-max); margin-inline: auto; padding-inline: var(--sp-5);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-8); }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--brand-amber); margin-bottom: var(--sp-4); font-family: var(--font-display); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.site-footer a { color: #D7D5E0; }
.site-footer a:hover { color: #fff; }
.site-footer__tagline, .site-footer__address { color: #C9C7D4; margin-top: var(--sp-4); font-style: normal; }
.site-footer__address a { color: #fff; font-family: var(--font-display); font-size: 1.125rem; letter-spacing: .03em; }
.site-footer__bottom {
  max-width: var(--content-max); margin: var(--sp-10) auto 0; padding: var(--sp-6) var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
  font-size: .875rem; color: #C9C7D4;
}
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 3px; color: #D7D5E0; }
.site-footer__credit { display: inline-flex; align-items: center; gap: 6px; }
.spark-mark {
  display: inline-block; width: 3.2em; height: 3.2em; vertical-align: middle;
  margin-left: -0.63em; margin-top: -0.8em; margin-bottom: -0.8em;
}
.site-footer ul.site-footer__social {
  flex-direction: row; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5);
}
.site-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); color: #fff;
}
.site-footer__social a:hover { background: var(--brand-flame); border-color: var(--brand-flame); }
.site-footer__social svg { width: 18px; height: 18px; }

.consent-banner {
  position: fixed; inset: auto 0 0 0; z-index: 900;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-4) var(--sp-6); padding: var(--sp-4) var(--sp-5);
  background: var(--brand-navy-deep); color: #fff;
  border-top: 3px solid var(--brand-flame);
}
.consent-banner[hidden] { display: none; }
.consent-banner__text { max-width: 60ch; font-size: .9rem; margin: 0; }
.consent-banner__text a { color: #fff; text-decoration: underline; }
.consent-banner__actions { display: flex; gap: var(--sp-3); }
.consent-banner .btn-primary { background: var(--brand-flame); color: #16181C; }
.consent-banner .btn-primary:hover { background: var(--brand-amber); }

.breadcrumbs { font-size: .875rem; color: var(--color-text-muted); padding-block: var(--sp-4); }
.breadcrumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2);
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: var(--sp-2); }
.breadcrumbs li + li::before {
  content: ""; width: 6px; height: 6px; flex: none;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
  transform: rotate(45deg); opacity: .6;
}
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-accent-text); text-decoration: none; }
.breadcrumbs [aria-current="page"] { font-weight: 600; }

.err { text-align: center; padding-block: var(--sp-24); }
.err__code {
  font-family: var(--font-display); font-size: clamp(4.5rem, 15vw, 9rem); line-height: 1;
  margin-bottom: var(--sp-5);
  color: transparent; background: var(--grad-brand-h); background-clip: text; -webkit-background-clip: text;
}

.radius { width: 100%; max-width: 34rem; margin-inline: auto; display: block; }
.radius .ring { fill: none; stroke: var(--color-rule); stroke-width: 1.5; }
.radius .ring-out { stroke: var(--brand-flame); stroke-dasharray: 5 4; stroke-width: 2; }
.radius .hub { fill: var(--color-accent-text); }
.radius .dot { fill: var(--brand-navy); }
.radius .lbl { font-family: var(--font-display); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; fill: var(--color-text); }
.radius .lbl-hub { fill: var(--color-accent-text); font-size: 12.5px; }
.radius .ring-lbl { font-family: var(--font-display); font-size: 9.5px; letter-spacing: .1em;
  fill: var(--color-text-muted); text-transform: uppercase; }

.phero {
  position: relative; background: var(--brand-navy-deep); color: #fff;
  padding-block: clamp(var(--sp-12), 6vw, var(--sp-20));
  border-bottom: 4px solid transparent; border-image: var(--grad-brand-h) 1;
}
.phero h1 { color: #fff; text-wrap: balance; }
.phero .lead { color: #D7D5E0; }
.phero .eyebrow { color: var(--color-accent-on-dark); }
.phero .breadcrumbs, .phero .breadcrumbs a { color: #C9C7D4; }
.phero .breadcrumbs { margin-bottom: var(--sp-6); }
.phero__grid { display: grid; gap: var(--sp-8); align-items: center; }
@media (min-width: 900px) { .phero__grid { grid-template-columns: 3fr 2fr; gap: var(--sp-12); } }
.phero__media img { width: 100%; height: auto; border-radius: var(--radius-md); }

.angles { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
@media (min-width: 700px) { .angles { grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-8); } }
.angles li { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: center; }
.angles svg { width: 26px; height: 26px; color: var(--brand-flame); flex: none; }

.nearby { list-style: none; padding: 0; margin: var(--sp-6) 0 0;
  display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.nearby a {
  display: inline-block; padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--color-border); background: var(--color-bg-alt);
  font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase;
  font-size: .875rem; color: var(--color-text);
}
.nearby a:hover { text-decoration: none; background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.sec-alt .nearby a { background: var(--color-bg); }

.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none;
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.js .reveal-d1.is-in { transition-delay: 80ms; }
.js .reveal-d2.is-in { transition-delay: 160ms; }
.js .reveal-d3.is-in { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .btn:hover, .area:hover { transform: none; }
}
