/* ==========================================================================
   Calabash Seafood Hut — global stylesheet
   Design concept: "A Calabash landmark, cleaned up for the web."
   Palette sampled from the real blue-and-red storefront sign + blue awning.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue:        #16357e;   /* deep coastal / sign blue */
  --blue-bright: #1e46b8;   /* brighter awning blue for accents/links */
  --blue-dark:   #0f2657;   /* footer / deep bands */
  --red:         #d81f26;   /* sign red */
  --red-dark:    #b31a20;
  --cream:       #f6efe0;   /* warm neutral */
  --cream-2:     #efe6d2;
  --gold:        #e2a12c;   /* fry-basket golden accent, used sparingly */
  --white:       #ffffff;
  --ink:         #20302a;   /* near-black warm text */
  --ink-soft:    #4a5751;
  --line:        #d9cfba;   /* hairline on cream */

  --maxw: 1200px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(15, 38, 87, .08);
  --shadow-md: 0 10px 30px rgba(15, 38, 87, .14);

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

  --nav-h: 68px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-bright); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0 0 .4em; letter-spacing: .01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
p { margin: 0 0 1rem; }
.lead { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; }
.eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-weight: 600; font-size: .95rem; color: var(--red); margin: 0 0 .5rem; }
.eyebrow--light { color: var(--gold); }
.muted { color: var(--ink-soft); }
.wrap-narrow { max-width: 760px; margin-inline: auto; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Band backgrounds */
.band-cream { background: var(--cream); color: var(--ink); }
.band-white { background: var(--white); color: var(--ink); }
.band-blue  { background: var(--blue); color: #eaf0ff; }
.band-blue-dark { background: var(--blue-dark); color: #dfe7fb; }
.band-red   { background: var(--red); color: #fff; }
.band-blue h2, .band-blue-dark h2, .band-red h2 { color: #fff; }
.band-blue .eyebrow, .band-blue-dark .eyebrow, .band-red .eyebrow { color: var(--gold); }
.band-blue a, .band-blue-dark a, .band-red a { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff; --btn-bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  font-size: 1rem; line-height: 1;
  padding: .85em 1.5em; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid var(--btn-bd);
  text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--blue { --btn-bg: var(--blue); --btn-bd: var(--blue); }
.btn--gold { --btn-bg: var(--gold); --btn-bd: var(--gold); --btn-fg: #3a2a00; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.85); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--ghost-ink { --btn-bg: transparent; --btn-fg: var(--blue); --btn-bd: var(--blue); box-shadow: none; }
.btn--lg { font-size: 1.1rem; padding: 1em 1.8em; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--blue); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 8px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Alert bar ---------- */
.alert-bar {
  background: var(--gold); color: #3a2a00; font-weight: 600;
  text-align: center; padding: .6rem 2.5rem .6rem 1rem; position: relative;
  font-size: .98rem;
}
.alert-bar a { color: #3a2a00; text-decoration: underline; }
.alert-bar[hidden] { display: none; }
.alert-bar__close {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  background: none; border: 0; font-size: 1.4rem; line-height: 1; cursor: pointer; color: #3a2a00;
  padding: .2rem .5rem; border-radius: 6px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream); border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--blue); font-family: var(--font-display); font-weight: 700; line-height: .95; }
.brand img { height: 40px; width: auto; }
.brand__word { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; }
.brand__word small { display: block; font-size: .62rem; letter-spacing: .18em; color: var(--red); font-weight: 600; }
.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; align-items: center; }
.primary-nav a {
  display: inline-block; padding: .5rem .8rem; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .98rem;
  border-radius: 8px;
}
.primary-nav a:hover { background: var(--cream-2); color: var(--blue); }
.primary-nav a[aria-current="page"] { color: var(--red); }
.header-cta { display: flex; gap: .5rem; align-items: center; }
.header-cta .btn { padding: .6em 1.1em; font-size: .92rem; }

/* "More" dropdown */
.has-menu { position: relative; }
.has-menu > button {
  font: inherit; background: none; border: 0; cursor: pointer;
  padding: .5rem .8rem; color: var(--ink);
  font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .04em; font-size: .98rem;
  border-radius: 8px; display: inline-flex; align-items: center; gap: .3rem;
}
.has-menu > button:hover { background: var(--cream-2); color: var(--blue); }
.primary-nav .submenu {
  position: absolute; right: 0; top: calc(100% + .3rem); min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: .4rem; list-style: none; margin: 0; display: none; z-index: 120; flex-direction: column; gap: 0;
}
.has-menu[data-open="true"] .submenu { display: block; }
.submenu a { display: block; padding: .55rem .8rem; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 500; }
.submenu a:hover { background: var(--cream); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 2px solid var(--blue); color: var(--blue); border-radius: 8px; padding: .4rem .6rem; cursor: pointer; margin-left: auto; }
.nav-toggle svg { display: block; }

@media (max-width: 940px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .mobile-nav { display: block; }
}
.mobile-nav {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--cream); padding: 1.2rem clamp(1rem,4vw,2rem) 6rem; overflow-y: auto;
}
.mobile-nav ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.mobile-nav a { display: block; padding: .85rem .4rem; text-decoration: none; color: var(--ink); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: 1.2rem; border-bottom: 1px solid var(--line); }
.mobile-nav a[aria-current="page"] { color: var(--red); }
.mobile-nav .btn-row { margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; color: #fff; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,38,87,.25) 0%, rgba(15,38,87,.35) 45%, rgba(10,20,45,.86) 100%); }
.hero__inner { padding-block: clamp(2rem, 6vw, 4.5rem); width: 100%; text-align: center; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); max-width: 15ch; margin-inline: auto; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.4rem); max-width: 46ch; color: #f3f6ff; text-shadow: 0 1px 10px rgba(0,0,0,.4); margin-inline: auto; }
.hero .btn-row { margin-top: 1.6rem; justify-content: center; }
.hero__status { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; align-items: center; justify-content: center; font-size: 1rem; }
.hero__status .dot { font-weight: 700; }

/* Status pill (open/closed) */
.status-pill { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; padding: .35rem .85rem; border-radius: 999px; font-size: .9rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); }
.status-pill .dot { width: 10px; height: 10px; border-radius: 50%; background: #9aa; box-shadow: 0 0 0 3px rgba(255,255,255,.15); }
.status-pill.is-open .dot { background: #37d67a; }
.status-pill.is-closed .dot { background: #ff6b6b; }
.status-inline { font-weight: 600; }
.status-inline.is-open { color: #157a3e; }
.status-inline.is-closed { color: var(--red); }

/* ---------- Quick facts ---------- */
.quickfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.quickfact { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1rem; box-shadow: var(--shadow-sm); }
.quickfact .ico { font-size: 1.8rem; line-height: 1; }
.quickfact strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; margin-top: .4rem; color: var(--blue); }
.quickfact span { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Cards / favorites ---------- */
.card-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.food-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; flex-direction: column; }
.food-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.food-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.food-card:hover .food-card__img img { transform: scale(1.05); }
.food-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.food-card__body h3 { margin: 0; }
.food-card__price { font-family: var(--font-display); color: var(--red); font-weight: 600; font-variant-numeric: tabular-nums; }
.food-card__desc { font-size: .95rem; color: var(--ink-soft); margin: 0; }
.badge { display: inline-block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; font-weight: 600; padding: .18em .6em; border-radius: 999px; background: var(--gold); color: #3a2a00; }

/* ---------- Photo grid ---------- */
.photo-grid { display: grid; gap: .6rem; grid-template-columns: repeat(4, 1fr); }
.photo-grid a, .photo-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 10px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform .4s ease, filter .4s ease; }
.photo-grid a:hover img { transform: scale(1.06); filter: brightness(1.05); }
.photo-grid .tall { grid-row: span 2; }
.photo-grid .tall img { aspect-ratio: 1/2; }
@media (max-width: 760px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } .photo-grid .tall { grid-row: span 1; } .photo-grid .tall img { aspect-ratio: 1/1; } }

/* ---------- Split / story bands ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--media-right { direction: ltr; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1.1rem; }
.review-card blockquote { margin: .6rem 0; font-size: 1.02rem; }
.review-card cite { font-style: normal; font-weight: 600; color: var(--blue); font-size: .92rem; }
.review-card .src { color: var(--ink-soft); font-size: .82rem; }

/* ---------- "Before you visit" list ---------- */
.info-list { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); list-style: none; padding: 0; margin: 0; }
.info-list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.band-cream .info-list li, .band-white .info-list li { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.info-list strong { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; display: block; margin-bottom: .2rem; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours-table th, .hours-table td { text-align: left; padding: .55rem .4rem; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today { font-weight: 700; }
.hours-table tr.today td, .hours-table tr.today th { color: var(--blue); }
.band-blue .hours-table th, .band-blue .hours-table td, .band-blue-dark .hours-table th, .band-blue-dark .hours-table td { border-color: rgba(255,255,255,.2); }
.band-blue .hours-table tr.today td, .band-blue .hours-table tr.today th { color: #fff; }

/* ---------- Map / location ---------- */
.map-embed { border: 0; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.map-placeholder { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-placeholder button { position: absolute; inset: 0; margin: auto; width: max-content; height: max-content; }

/* ---------- Menu page ---------- */
.menu-nav { position: sticky; top: var(--nav-h); z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); }
.menu-nav ul { display: flex; gap: .4rem; overflow-x: auto; list-style: none; margin: 0; padding: .7rem clamp(1rem,4vw,2rem); scrollbar-width: thin; }
.menu-nav a { white-space: nowrap; text-decoration: none; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; color: var(--blue); border: 1px solid var(--line); background: #fff; padding: .4rem .85rem; border-radius: 999px; }
.menu-nav a:hover { background: var(--blue); color: #fff; }
.menu-section { scroll-margin-top: calc(var(--nav-h) + 60px); }
.menu-section h2 { color: var(--blue); border-bottom: 3px solid var(--red); padding-bottom: .2rem; display: inline-block; }
.menu-items { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .1rem; }
.menu-item { display: flex; align-items: baseline; gap: .8rem; padding: .6rem 0; border-bottom: 1px dotted var(--line); }
.menu-item__name { font-weight: 600; }
.menu-item__desc { color: var(--ink-soft); font-size: .93rem; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 1.5rem; }
.menu-item__price { font-family: var(--font-display); color: var(--red); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu-note { background: var(--cream); border-left: 4px solid var(--gold); padding: .7rem 1rem; border-radius: 0 8px 8px 0; font-size: .95rem; margin: .4rem 0 0; }
.menu-notices { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.menu-notices ul { margin: .4rem 0 0; padding-left: 1.1rem; }
.menu-notices li { margin-bottom: .35rem; font-size: .95rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; max-width: 640px; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: .85rem; color: var(--ink-soft); }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .6rem; }
.field--check input { width: auto; margin-top: .25rem; }
.field-error { color: var(--red); font-size: .88rem; min-height: 1em; }
.form-status { font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: .7rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 1rem 1.2rem; font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; color: var(--blue); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--red); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.2rem 1.2rem; }

/* ---------- Carousel (scroll-snap) ---------- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: .5rem; -webkit-overflow-scrolling: touch; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 auto; }
.carousel__slide { width: min(80vw, 520px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.carousel__slide img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(22,53,126,.85); color: #fff; border: 0; width: 46px; height: 46px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.carousel__btn:hover { background: var(--blue); }
.carousel__btn--prev { left: -6px; }
.carousel__btn--next { right: -6px; }
@media (max-width: 640px) { .carousel__btn { display: none; } }

/* ---------- Review carousel (real Google reviews) ---------- */
.carousel--reviews .carousel__track { align-items: stretch; }
.carousel--reviews .review-card { flex: 0 0 min(85vw, 380px); display: flex; flex-direction: column; scroll-snap-align: start; }
.carousel--reviews .review-card p { flex: 1 1 auto; }
.carousel--reviews .review-card cite { margin-top: .4rem; }

/* ---------- Google review CTA ---------- */
.greview-band .gstars { color: var(--gold); font-size: 1.5rem; letter-spacing: .18em; margin: 0 0 .3rem; }
.g-icon { width: 18px; height: 18px; vertical-align: -3px; margin-right: .5rem; }
.g-badge { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 600; }
.g-badge .stars { font-size: 1rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,18,40,.92); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox[data-open="true"] { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-md); }
.lightbox__cap { position: absolute; bottom: 1.2rem; left: 0; right: 0; text-align: center; color: #fff; font-size: .95rem; }
.lightbox__btn { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- Gallery filters ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 1.6rem; }
.filter-row button { font: inherit; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .04em; font-size: .9rem; padding: .45rem 1rem; border-radius: 999px; border: 2px solid var(--blue); background: #fff; color: var(--blue); cursor: pointer; }
.filter-row button[aria-pressed="true"] { background: var(--blue); color: #fff; }

/* ---------- Mobile action bar ---------- */
.action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: var(--blue); box-shadow: 0 -4px 16px rgba(0,0,0,.2); }
.action-bar ul { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; }
.action-bar a { display: flex; flex-direction: column; align-items: center; gap: .15rem; padding: .55rem .2rem calc(.55rem + env(safe-area-inset-bottom)); color: #fff; text-decoration: none; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .03em; font-size: .72rem; }
.action-bar a .ico { font-size: 1.25rem; line-height: 1; }
.action-bar a + a { border-left: 1px solid rgba(255,255,255,.18); }
@media (max-width: 940px) { .action-bar { display: block; } body { padding-bottom: 64px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-dark); color: #cdd8f2; padding-block: clamp(2.5rem, 5vw, 4rem) 2rem; }
.site-footer a { color: #eaf0ff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-grid h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; color: #fff; font-size: 1.05rem; margin-bottom: .8rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-brand img { height: 40px; margin-bottom: .9rem; background: var(--cream); padding: 8px 12px; border-radius: 10px; box-sizing: content-box; }
.footer-note { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2rem; padding-top: 1.2rem; font-size: .85rem; color: #9fb0d6; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: space-between; }
.social-icons { display: flex; gap: .6rem; }
.social-icons a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); }
.social-icons a:hover { background: var(--red); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--blue); color: #fff; padding-block: clamp(2.5rem, 6vw, 4rem); position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #dfe7fb; }
.breadcrumb { font-size: .85rem; margin-bottom: .6rem; color: #b9c6ee; }
.breadcrumb a { color: #dfe7fb; }
.breadcrumb span[aria-current] { color: #fff; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; color: var(--blue); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 1.4rem 0; }
.note-box { background: var(--cream); border-left: 4px solid var(--blue); padding: 1rem 1.2rem; border-radius: 0 8px 8px 0; margin: 1.4rem 0; }

/* Timeline */
.timeline { list-style: none; margin: 1.5rem 0 0; padding: 0; border-left: 3px solid var(--line); }
.timeline li { position: relative; padding: 0 0 1.6rem 1.6rem; }
.timeline li::before { content: ""; position: absolute; left: -9px; top: .3rem; width: 15px; height: 15px; border-radius: 50%; background: var(--red); border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.timeline strong { font-family: var(--font-display); color: var(--blue); font-size: 1.15rem; }

/* Data table for directions */
.dir-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.dir-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; box-shadow: var(--shadow-sm); }
.dir-card h3 { color: var(--blue); margin-bottom: .3rem; font-size: 1.2rem; }
.dir-card .dist { color: var(--red); font-family: var(--font-display); font-weight: 600; }
