/* ============================================================
   Deep Blue Sea — Helmsley
   style.css  |  Mobile-first, no framework, no preprocessor
   Brand blue: #004b97  |  Gold: #c9a84c
   ============================================================ */

/* ── Custom properties ─────────────────────────────────────── */
:root {
  --blue:       #004b97;   /* exact brand blue from source */
  --blue-dark:  #003570;
  --blue-mid:   #0060be;
  --blue-light: #e4eef8;
  --gold:       #c9a84c;
  --gold-dark:  #a87e2a;
  --gold-light: #e0c070;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --text:       #1a1a1a;
  --text-muted: #5a6a7a;
  --border:     #d0dcea;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(0,0,0,.09);
  --shadow-lg: 0 6px 28px rgba(0,0,0,.14);

  --max-w: 1120px;
  --gap:   clamp(2rem, 5vw, 3.5rem);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.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;
}
.section { padding-block: var(--gap); }
.section--blue  { background: var(--blue);      color: var(--white); }
.section--dark  { background: var(--blue-dark); color: var(--white); }
.section--light { background: var(--off-white); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 7vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); }

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .4rem;
}
.section--dark .section-eyebrow,
.section--blue .section-eyebrow { color: var(--gold-light); }

.section-title { color: var(--blue-dark); margin-bottom: .75rem; text-align: center; }
.section--dark .section-title,
.section--blue .section-title   { color: var(--white); }

.lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 60ch;
}
.section--dark .lead,
.section--blue .lead { color: rgba(255,255,255,.78); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.75rem;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: background .18s, color .18s, border-color .18s, transform .1s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: scale(.97); }

.btn-gold         { background: var(--gold);  color: var(--blue-dark); border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-light); border-color: var(--gold-light); }

.btn-gold-outline       { background: transparent; color: var(--gold);  border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold);  color: var(--blue-dark); }

.btn-blue         { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-blue:hover   { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-blue-outline       { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-blue-outline:hover { background: var(--blue); color: var(--white); }

.btn-white-outline       { background: transparent; color: var(--white); border-color: rgba(255,255,255,.8); }
.btn-white-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

.btn-lg { padding: .9rem 2.25rem; font-size: 1.05rem; }

/* ── Site Header ── white nav + blue wave ────────────────────── */
/*
   Structure: sticky <header> contains:
     1. white .header-nav (logo, links, CTA)
     2. .header-wave-area (blue wavy strip between nav and hero)
*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: none;
}

/* White nav bar */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 1rem;
}
@media (min-width: 768px) {
  .header-inner { height: 130px; }
}

/* Blue wave strip below nav (visible on md+) */
.header-wave-area {
  background: var(--blue);
  line-height: 0;
  overflow: hidden;
  /* Hidden on mobile to save viewport space */
  display: none;
}
@media (min-width: 768px) {
  .header-wave-area { display: block; }
}
.header-wave-area svg {
  display: block;
  width: 100%;
  height: 15px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 72px;
  mix-blend-mode: multiply;
  width: auto;
}
@media (min-width: 768px) {
  .logo__img { height: 120px; }
}

/* Primary nav (desktop) */
.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 2.25rem; }
.primary-nav a {
  color: var(--blue-dark);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-block: .25rem;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
  border-bottom-color: var(--gold);
}

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

/* Hamburger — hidden (no nav links, button is always visible) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  color: var(--blue);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.nav-toggle span {
  display: block; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue);
  padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.88);
  padding: .7rem 0;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] { color: var(--gold-light); }
.mobile-menu .btn { margin-top: 1rem; justify-content: center; }

@media (min-width: 768px) {
  .primary-nav { display: block; }
  .nav-order   { display: inline-flex; }
  .nav-toggle  { display: none; }
  .mobile-menu { display: none !important; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  text-align: center;
  /* overflow hidden removed — wave divider is absolutely positioned */
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
/* Gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,53,112,.6) 0%,
    rgba(0,53,112,.28) 45%,
    rgba(0,53,112,.65) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-block: clamp(3rem, 8vw, 5rem);
  padding-inline: 1rem;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.hero__eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .6rem;
}
.hero h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero .lead {
  color: rgba(255,255,255,.88);
  max-width: none;
  margin-bottom: 1.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* Service badges */
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-badge {
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.service-badge--gold {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}

/*
   Wave divider — sits at BOTTOM of hero.
   White wave shape that transitions hero image → white cards.
   SVG path taken directly from the Deep Blue reference site.
*/
.hero__wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}
.hero__wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
@media (min-width: 768px) {
  .hero__wave-divider svg { height: 90px; }
}

/* ── Info cards grid (3 col) ─────────────────────────────────── */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 600px)  { .info-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .info-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.info-block__head {
  padding: .8rem 1.25rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.info-block__head h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-body);
}
.info-block__body {
  padding: 1.25rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Push the CTA button to the bottom of each card */
.info-block__body > .btn { margin-top: auto; }
.info-block address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.info-block__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}
.info-block__phone:hover { color: var(--gold-dark); }
.info-block__phone svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* Facilities list */
.facilities-list {
  display: flex; flex-direction: column; gap: .55rem;
}
.facilities-list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; color: var(--text-muted);
}
.facilities-list svg {
  width: 16px; height: 16px;
  stroke: var(--blue); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Hours blocks ────────────────────────────────────────────── */
.hours-blocks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 600px) { .hours-blocks-grid { grid-template-columns: repeat(2, 1fr); } }

/* Single-block variant — centred, capped width */
.hours-blocks-grid--single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-inline: auto;
}

.hours-block {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hours-block__head {
  background: rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: .8rem 1.25rem;
}
.hours-block__head h3 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-body);
}
.hours-block__body { padding: 1.25rem; }

.hours-list {
  font-size: .88rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding-block: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.85);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 600; color: var(--white); }
.hours-list .closed { color: rgba(255,255,255,.35); font-weight: 400; }

/* ── Intro / About ───────────────────────────────────────────── */
.intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.intro__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro__img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── Photo story strip — 3 panels ───────────────────────────── */
.section--photo-strip { padding-block: 0; }
.photo-strip { display: grid; grid-template-columns: 1fr; }
@media (min-width: 600px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }

.photo-strip__item { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.photo-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .45s ease;
}
.photo-strip__item:hover img { transform: scale(1.04); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: .6rem; }
.cta-banner .lead { margin-inline: auto; }
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ── Page header (inner pages) ───────────────────────────────── */
.page-header {
  background: var(--blue);
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
}
.page-header h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.page-header .lead { color: rgba(255,255,255,.8); margin-inline: auto; }

.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin-inline: .4rem; }

/* ── Find Us page ────────────────────────────────────────────── */
.find-us-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .find-us-grid { grid-template-columns: 1fr 1.6fr; align-items: start; }
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-card__head { background: var(--blue); color: var(--white); padding: 1.5rem; }
.info-card__head h2 { font-size: 1.35rem; margin-bottom: .2rem; }
.info-card__head p  { font-size: .88rem; color: rgba(255,255,255,.7); }
.info-card__body    { padding: 1.5rem; }

.detail-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-block: 1rem; border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-row__icon {
  flex-shrink: 0;
  width: 2.4rem; height: 2.4rem;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.detail-row__icon svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.detail-row__label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .2rem;
}
.detail-row__value { font-size: .92rem; line-height: 1.6; }
.detail-row__value a { color: var(--blue); text-decoration: underline; }
.detail-row__value a:hover { color: var(--gold-dark); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .5rem 0; vertical-align: top; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table .closed { color: var(--text-muted); font-weight: 400; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--blue-light);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; background: var(--blue-light);
  color: var(--text-muted); font-size: .95rem;
  text-align: center; padding: 2rem;
}
.map-placeholder__icon { font-size: 3rem; }

.access-note {
  margin-top: 1.5rem;
  background: var(--blue-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .9rem;
}
.access-note strong { display: block; margin-bottom: .25rem; color: var(--blue-dark); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,.7);
  padding-block: clamp(2rem, 5vw, 3rem) 1.25rem;
}
.footer-grid {
  display: grid; gap: 2rem; margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: .75rem; }
.footer-brand .logo__img { height: 56px; }
.footer-brand p { font-size: .875rem; line-height: 1.6; max-width: 28ch; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: .875rem; line-height: 1.9; }

/* Social icons row */
.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: .75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  transition: background .18s, color .18s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--blue-dark);
}
.footer-social svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Menu section ────────────────────────────────────────────── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.menu-tab {
  padding: .6rem 1.4rem;
  border-radius: 99px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.menu-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.menu-tab.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  column-gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px dashed var(--border);
}
.menu-item__name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.menu-item__desc {
  grid-column: 1;
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: .15rem;
}
.menu-item__price {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  white-space: nowrap;
}
.menu-badge {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--gold-light);
  color: var(--blue-dark);
}

/* ── Cookie banner ───────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--blue-dark);
  color: var(--white);
  border-top: 3px solid var(--gold);
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-banner__text {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

/* ── Focus styles ────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius);
}
