:root {
  --blue-950: #0a1628;
  --blue-900: #122640;
  --blue-800: #1a4a7a;
  --blue-700: #2563a8;
  --blue-600: #3b82c4;
  --blue-500: #5ba0dc;
  --blue-400: #7ec0ef;
  --blue-300: #b8daf5;
  --blue-200: #d6ebfb;
  --blue-100: #edf6fd;
  --blue-50: #f7fbff;

  --sky-950: var(--blue-950);
  --sky-900: var(--blue-900);
  --sky-800: var(--blue-800);
  --sky-700: var(--blue-700);
  --sky-600: var(--blue-600);
  --sky-500: var(--blue-500);
  --sky-400: var(--blue-400);
  --sky-300: var(--blue-300);
  --sky-200: var(--blue-200);
  --sky-100: var(--blue-100);
  --sky-50: var(--blue-50);

  --forest: var(--blue-900);
  --forest-mid: var(--blue-700);
  --forest-light: var(--blue-600);
  --gold: #c9924b;
  --gold-bright: #e4bc7a;
  --cream: var(--blue-100);
  --cream-dark: var(--blue-200);
  --ink: #122640;
  --muted: #5b7a96;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-strong: var(--blue-50);
  --primary-rgb: 26, 74, 122;
  --red: #b42318;
  --shadow: 0 20px 50px rgba(10, 22, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --panel-radius: 28px;
  --panel-border: rgba(var(--primary-rgb), 0.1);
  --panel-shadow: 0 18px 50px rgba(10, 22, 40, 0.09);
  --header-h: 124px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .gallery-card,
  .gallery-card-inner,
  .gallery-card img,
  .gallery-card-shine {
    transform: none !important;
    transition: none !important;
  }

  .back-to-top {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--blue-100) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--blue-900);
  color: var(--white);
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.footer-accessibility {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-accessibility:hover,
.footer-accessibility:focus-visible {
  color: var(--gold-bright);
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.page-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--forest);
}

.section-heading p,
.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--forest-mid);
  transition: color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
  color: var(--blue-700);
  transform: translateX(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(201, 146, 75, 0.28);
}

.site-header .header-cta.btn-gold {
  background: linear-gradient(135deg, var(--white), var(--blue-50));
  color: var(--blue-800);
  box-shadow: 0 6px 18px rgba(10, 22, 40, 0.14);
}

.site-header .header-cta.btn-gold:hover {
  background: linear-gradient(135deg, var(--blue-50), var(--white));
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
}

.btn-ghost--light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-dark {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 38, 64, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 24px rgba(10, 22, 40, 0.16);
}

.header-inner {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-block: 0.35rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 110px;
  max-width: min(400px, 60vw);
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.header-cta {
  min-height: 44px;
  padding-inline: 1.1rem;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  backface-visibility: hidden;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.1), rgba(10, 22, 40, 0.68) 72%),
    linear-gradient(90deg, rgba(18, 38, 64, 0.42), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 4rem;
  color: var(--white);
}

.hero-content h1 {
  margin: 0 0 1rem;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.hero-lead {
  max-width: 58ch;
  margin: 0 0 1.75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero .eyebrow {
  color: var(--gold-bright);
}

/* Info bar */
.info-bar {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
  overflow: hidden;
}

.info-bar-grid div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.65rem;
  border-right: 1px solid rgba(var(--primary-rgb), 0.1);
}

.info-bar-grid div:last-child {
  border-right: 0;
}

.info-bar-grid strong {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.info-bar-grid span,
.info-bar-grid a {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-bar-grid .sep {
  margin-inline: 0.45rem;
  color: var(--cream-dark);
}

/* Sections */
.page-section {
  padding: 4.5rem 0;
}

.page-section--alt {
  background: var(--blue-100);
  border-block: 1px solid rgba(var(--primary-rgb), 0.08);
}

.section-panel {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.section-panel--stack .section-heading {
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.section-panel--stack #home-bento,
.section-panel--stack .bento-grid {
  margin-top: 2rem;
}

.panel-block {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.panel-block--map {
  padding: 0;
  overflow: hidden;
}

.panel-block--dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.panel-block--media {
  padding: 0.65rem;
}

.panel-block--media img,
.panel-block--media .map-embed,
.panel-block--media iframe {
  border-radius: calc(var(--panel-radius) - 8px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--forest-mid);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--forest);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Waterfall stream: image + text alternating */
.content-stream {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stream-item {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 320px;
}

.stream-item--reverse .stream-media {
  order: 2;
}

.stream-item--solo {
  grid-template-columns: 1fr;
}

.stream-item--solo .stream-media {
  min-height: 280px;
}

.stream-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--panel-radius);
  min-height: 300px;
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.stream-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.stream-item:hover .stream-media img {
  transform: scale(1.06);
}

.stream-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.82);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stream-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2.2rem;
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.stream-copy h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  color: var(--forest);
}

.stream-copy p {
  margin: 0;
  color: var(--muted);
}

/* Bento showcase grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.bento-card {
  border-radius: var(--panel-radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.09);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.22);
  box-shadow: 0 24px 56px rgba(10, 22, 40, 0.14);
}

.bento-card--media {
  position: relative;
  padding: 0;
}

.bento-card--media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.bento-card--media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bento-card--media:hover img {
  transform: scale(1.06);
}

.bento-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-card--copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 3vw, 3rem);
  background: var(--surface);
}

.bento-card--copy h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.08;
  color: var(--forest);
}

.bento-card--copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Spotlight / about band */
.spotlight {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 146, 75, 0.12), transparent 42%),
    linear-gradient(135deg, var(--blue-900) 0%, var(--blue-950) 100%);
}

.spotlight-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.spotlight-copy {
  color: var(--white);
}

.spotlight-copy .eyebrow {
  color: var(--gold-bright);
}

.spotlight-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.02;
  color: var(--white);
}

.spotlight-lead {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.spotlight-hours {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  max-width: 420px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.spotlight-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.spotlight-media {
  position: relative;
  margin: 0;
  width: min(420px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 10px 28px rgba(10, 22, 40, 0.22),
    0 24px 52px rgba(26, 74, 122, 0.2),
    inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.1) contrast(1.05) brightness(1.02);
}

.home-intro {
  padding-top: 3.5rem;
}

.home-welcome {
  max-width: none;
  margin-inline: 0;
  text-align: center;
}

.home-welcome h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--forest);
}

.home-services {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--blue-700);
}

.home-highlight {
  margin: 0 auto 1.75rem;
  max-width: 640px;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--forest-mid);
}

.home-location-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.home-location-copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest);
}

.home-location-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: var(--panel-radius);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.find-us-block {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.find-us-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--forest);
}

.find-us-address {
  margin: 0 0 2rem;
  color: var(--forest-mid);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 500;
  line-height: 1.6;
}

.find-us-block .map-embed {
  margin: 0 0 2rem;
  min-height: clamp(320px, 45vw, 480px);
}

.find-us-block .map-embed iframe {
  min-height: clamp(320px, 45vw, 480px);
}

.find-us-actions {
  display: flex;
  justify-content: center;
}

.find-us-actions .btn {
  min-width: 240px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  border: 0;
}

.home-hours-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.06);
}

.home-hours-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
}

.home-hours-card .hours-list li {
  padding: 0.5rem 0;
}

.home-policies {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
  font-weight: 600;
  color: var(--forest-mid);
}

.home-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.home-payment span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-mid);
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 2rem;
  align-items: start;
}

.home-hours-card .footer-phone {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--forest-mid);
}

.home-hours-card .footer-phone a {
  color: inherit;
}

.section-heading--center {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
}

/* Gallery grid */
.section-panel--stack .gallery-grid {
  margin-top: 2rem;
}

.gallery-section {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(201, 146, 75, 0.08), transparent 65%),
    linear-gradient(180deg, #fdfcfa 0%, #f5f0e8 100%);
}

.gallery-section .section-panel {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(201, 146, 75, 0.12);
  box-shadow: 0 20px 60px rgba(60, 45, 30, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1200px;
}

.gallery-card {
  position: relative;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: zoom-in;
  border-radius: 20px;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -10px 12%;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(10, 22, 40, 0.28), transparent 72%);
  filter: blur(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.gallery-card-inner {
  position: relative;
  display: block;
  padding: 0.55rem;
  border-radius: 18px;
  background: linear-gradient(155deg, var(--white) 0%, var(--blue-50) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 6px rgba(10, 22, 40, 0.06),
    0 14px 32px rgba(10, 22, 40, 0.12),
    0 28px 56px rgba(26, 74, 122, 0.1);
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  overflow: hidden;
}

.gallery-card:hover {
  transform: translateY(-10px) rotateX(2deg);
}

.gallery-card:hover::after {
  opacity: 0.55;
  transform: scaleX(0.92);
}

.gallery-card:hover .gallery-card-inner {
  transform: translateZ(18px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 10px rgba(10, 22, 40, 0.08),
    0 22px 44px rgba(10, 22, 40, 0.16),
    0 36px 72px rgba(26, 74, 122, 0.18);
}

.gallery-card-media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 4px 14px rgba(10, 22, 40, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.gallery-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 38%,
    transparent 55%,
    rgba(10, 22, 40, 0.28) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-card-shine {
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 180%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.38) 50%,
    transparent 58%
  );
  transform: rotate(12deg) translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  pointer-events: none;
}

.gallery-card:hover .gallery-card-shine {
  transform: rotate(12deg) translateX(280%);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover .gallery-card-media::before {
  opacity: 0.85;
}

/* Legacy masonry alias — keep for any older markup */
.gallery-masonry {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-card.tall img {
  aspect-ratio: 3/5;
}

.gallery-card.wide img {
  aspect-ratio: 16/11;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  text-align: left;
}

.gallery-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(10, 22, 40, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  width: min(50vw, 640px);
  max-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  display: block;
  width: min(50vw, 640px);
  max-width: 100%;
  max-height: 55vh;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lightbox-close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
}

/* Menu page */
.menu-section {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(91, 160, 220, 0.1), transparent 70%),
    linear-gradient(180deg, var(--blue-100) 0%, var(--blue-200) 100%);
  border-block: 1px solid rgba(var(--primary-rgb), 0.08);
}

.menu-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.25rem;
  border-radius: var(--panel-radius);
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f4ec 100%);
  border: 1px solid rgba(201, 146, 75, 0.14);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
}

.menu-sidebar h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
}

#menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 70vh;
  overflow: auto;
}

.menu-nav-link {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-nav-link:hover,
.menu-nav-link.is-active {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--forest);
}

.menu-category {
  margin-bottom: 3rem;
  padding: 1.75rem 1.25rem;
  border-radius: var(--panel-radius);
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f4ec 100%);
  border: 1px solid rgba(201, 146, 75, 0.14);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
}

.menu-category .section-heading {
  max-width: none;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  text-align: left;
}

.menu-category-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: left;
}

.menu-category-desc strong {
  color: var(--ink);
  font-weight: 700;
}

.menu-price-labels {
  display: grid;
  grid-template-columns: 1.125rem minmax(0, 1fr) auto;
  column-gap: 0.45rem;
  align-items: end;
  margin-bottom: 0.65rem;
}

.menu-price-labels-row {
  grid-column: 3;
  display: inline-flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0.35rem;
}

.menu-price-label {
  min-width: 3.35rem;
  text-align: right;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-700);
  line-height: 1.2;
}

.menu-price-labels-row--1 .menu-price-label {
  min-width: auto;
}

.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.menu-item {
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(var(--primary-rgb), 0.14);
  text-align: left;
}

.menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.menu-item-head {
  display: grid;
  grid-template-columns: 1.125rem minmax(0, 1fr) auto;
  column-gap: 0.45rem;
  align-items: center;
  text-align: left;
}

.menu-item-marker {
  width: 1.125rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-item-name {
  margin: 0;
  min-width: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  line-height: 1.35;
}

.menu-price {
  font-weight: 700;
  color: var(--blue-700);
  text-align: right;
  white-space: nowrap;
}

.menu-price--dual {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.35rem;
}

.menu-price-part {
  min-width: 3.35rem;
  text-align: right;
}

.menu-price-sep {
  color: var(--muted);
  font-weight: 600;
}

.menu-desc {
  margin: 0.35rem 0 0;
  padding-left: calc(1.125rem + 0.45rem);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
}

.menu-item.is-spicy .menu-item-name,
.menu-item.is-spicy .menu-price,
.menu-item.is-spicy .menu-price-part {
  color: #d2232a;
}

.menu-spicy-icon {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 20px;
  object-fit: contain;
}

.menu-legend-spicy {
  color: #d2232a;
  font-weight: 600;
}

.menu-legend-spicy::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 20px;
  margin-right: 0.35rem;
  vertical-align: -0.2em;
  background: url("../images/pepper.svg") center / contain no-repeat;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-grid--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--panel-radius);
  background: var(--surface);
  border: 1px solid var(--panel-border);
  box-shadow: var(--panel-shadow);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
}

.hours-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li,
.contact-meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.contact-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-meta a {
  color: var(--forest-mid);
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 12px;
  background: var(--surface-strong);
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(var(--primary-rgb), 0.25);
  border-color: var(--blue-600);
}

.form-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Coupon */
.coupon-stage {
  display: grid;
  place-items: center;
  padding: 2rem 0 4rem;
}

.coupon-card {
  width: min(640px, 100%);
  padding: 2.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(197, 212, 222, 0.35), transparent 38%),
    linear-gradient(160deg, var(--blue-800), var(--blue-700));
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.coupon-card::before,
.coupon-card::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  top: 50%;
  transform: translateY(-50%);
}

.coupon-card::before {
  left: -14px;
}

.coupon-card::after {
  right: -14px;
}

.coupon-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
}

.coupon-value {
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--gold-bright);
}

.coupon-fine {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.coupon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, var(--blue-900), var(--blue-950));
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2rem;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  color: var(--blue-300);
}

.site-footer p {
  margin: 0 0 0.75rem;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-phone a {
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}

.footer-links a,
.site-footer .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.site-footer .text-link:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.back-to-top {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.35rem);
  bottom: clamp(0.85rem, 2vw, 1.35rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
  color: var(--white);
}

.back-to-top-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.back-to-top-label {
  line-height: 1;
}

@media (max-width: 768px) {
  .back-to-top {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 120;
    width: 3rem;
    height: 3rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.28);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .back-to-top-icon {
    font-size: 1.35rem;
    font-weight: 700;
  }

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

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Page hero compact */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  background: transparent;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--forest);
}

.page-hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
  }

  #menu-nav {
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid,
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 96px;
  }

  .brand-logo {
    height: 76px;
    max-width: min(280px, 62vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(18, 38, 64, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .header-cta {
    width: 100%;
  }

  .info-bar-grid {
    grid-template-columns: 1fr;
  }

  .info-bar-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  }

  .info-bar-grid div:last-child {
    border-bottom: 0;
  }

  .info-bar-grid,
  .contact-grid,
  .home-layout,
  .home-location,
  .bento-grid,
  .spotlight-inner {
    grid-template-columns: 1fr;
  }

  .spotlight-media {
    justify-self: center;
    width: min(320px, 88vw);
  }

  .stream-item,
  .cards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stream-item--reverse .stream-media {
    order: 0;
  }

  .gallery-grid,
  .gallery-masonry {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .hero-content {
    margin-bottom: 2.5rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .coupon-actions,
  .nav-toggle {
    display: none !important;
  }

  .coupon-card {
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
