/* ============================================================
   CLAM CASTLE — style.css
   Color Palette: Deep navy, teal/seafoam, warm amber/gold
   Typography: Playfair Display + Cormorant Garamond + Barlow Condensed
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #152237;
  --navy-light: #1e3350;
  --teal:       #1a7a6e;
  --teal-light: #22a093;
  --seafoam:    #D80518;
  --amber:      #d4872a;
  --gold:       #f5c842;
  --cream:      #f5f0e8;
  --white:      #ffffff;
  --text-light: #c8d8e8;
  --text-muted: #7a9ab0;
  --yellow:     #efee22;
  --border:     rgba(77, 191, 176, 0.2);
  --black:      #000000;

  --font-display: "Poppins", sans-serif;
  --font-body:    "Poppins", sans-serif;
  --font-ui:      "Poppins", sans-serif;

  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--yellow);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Typography ── */
.section-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.75rem;
  font-weight: bold;
}

.section-label.yellow {
  color: var(--yellow);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: bold;
}

.section-desc {
  color: var(--black);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: bold;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.25rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 122, 110, 0.45);
}

.btn-outline {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid rgba(245, 240, 232, 0.4);
}
.btn-outline:hover {
  /* background: rgba(245, 240, 232, 0.1); */
  /* border-color: var(--cream); */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 122, 110, 0.45);
}

.btn-primary-explore {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--yellow);
}
.btn-primary-directions, .btn-primary-send-message {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
}

.btn-primary-explore:hover, .btn-primary-directions:hover, .btn-primary-send-message:hover {
  /* background: var(--yellow);
  border-color: var(--yellow); */
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 122, 110, 0.45);
}

/* ── Reveal Animations ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo .logo-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seafoam);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.9rem;
  transition: color var(--transition), background var(--transition);
  margin-left: 0.5rem;
}
.nav-link:hover { color: var(--yellow); }


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--yellow) 0%, #0a2540 40%, #0d3d3a 100%);
}

/* Animated wave background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: -5%;
  left: -10%;
  width: 120%;
  border-radius: 50% 50% 0 0;
  opacity: 0.08;
}
.wave1 {
  height: 200px;
  background: var(--yellow);
  animation: waveRise 8s ease-in-out infinite alternate;
}
.wave2 {
  height: 160px;
  bottom: -8%;
  background: var(--seafoam);
  opacity: 0.06;
  animation: waveRise 10s ease-in-out infinite alternate-reverse;
}
.wave3 {
  height: 120px;
  bottom: 0;
  background: var(--yellow);
  opacity: 0.12;
  animation: waveRise 6s ease-in-out infinite alternate;
}

@keyframes waveRise {
  0%   { transform: translateX(0) scaleY(1); }
  100% { transform: translateX(-40px) scaleY(1.15); }
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 191, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 191, 176, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
  animation: heroFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  animation: heroFadeUp 1.1s 0.1s both;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  margin-top: 5rem;
  color: var(--white);
  animation: heroFadeUp 1.1s 0.2s both;
}

.title-line { display: block; }
.title-line.accent { color: var(--seafoam); font-style: italic; }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  animation: heroFadeUp 1.1s 0.3s both;
  font-weight: bold;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(212, 135, 42, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  animation: heroFadeUp 1.1s 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1.1s 0.5s both;
  margin-top: 30px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 2s 1.5s both;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ============================================================
   SEASON BANNER
   ============================================================ */
.season-banner {
  background: linear-gradient(90deg, #0f2e1e, #164d3a, #0f2e1e);
  border-top: 1px solid rgba(77, 191, 176, 0.2);
  border-bottom: 1px solid rgba(77, 191, 176, 0.2);
  padding: 0.9rem 0;
}

.season-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--seafoam);
}
.season-banner p {
  font-size: 1.3rem;
}
.season-inner strong { color: var(--gold);
font-weight: bold;
font-size: 1.4rem; }
.season-icon { font-size: 1.1rem; }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: 7rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  color: var(--black);
  margin-bottom: 1rem;
}
.intro-text strong { color: var(--seafoam);
font-weight: bold;
font-size: 1.2rem; }

.intro-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.stat-card.highlight {
  background: var(--navy);
  border-color: rgba(77, 191, 176, 0.35);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--seafoam);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  position: relative;
  padding: 7rem 0;
  background: var(--yellow);
  overflow: hidden;
  border-top: 1px solid var(--navy);
}

.menu-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(26, 122, 110, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 135, 42, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
  background-color: var(--navy);
}
.tab-btn:hover, .tab-btn.active {
  color: var(--white);
  background: var(--navy-light);
  border-color: var(--yellow);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.menu-item:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.menu-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.menu-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.menu-item-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 7rem 0;
  /* background-color: var(--cream); */
  border-top: 1px solid var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.g-tall {
  grid-column: 1;
  grid-row: 1 / span 3;
}

.gallery-item.g-wide {
  grid-column: 2 / span 2;
  grid-row: 2 / span 2;
}

.right-top {
  grid-column: 4;
  grid-row: 2;
}

.right-middle {
  grid-column: 4;
  grid-row: 3;
}

.right-bottom {
  grid-column: 4;
  grid-row: 4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================================
   DINING SECTION
   ============================================================ */
.dining-section {
  background: var(--navy);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--navy);
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Image card base */
.dining-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 28px rgba(0,0,0,0.25);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.dining-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.38);
}

/* Always-visible dark base gradient so image is visible */
.dining-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.72) 0%,
    rgba(10, 15, 25, 0.18) 50%,
    rgba(10, 15, 25, 0.08) 100%
  );
  transition: background 0.4s ease;
}
.dining-card:hover .dining-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 15, 25, 0.88) 0%,
    rgba(10, 15, 25, 0.60) 60%,
    rgba(10, 15, 25, 0.30) 100%
  );
}

/* Content: hidden below, slides up on hover */
.dining-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  text-align: center;
  gap: 0.5rem;
}

.dining-icon {
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.dining-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  /* Title always subtly visible at bottom */
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.dining-card-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
  max-width: 260px;
}

/* Hover: reveal icon + description, push title up */
.dining-card:hover .dining-icon {
  opacity: 1;
  transform: translateY(0);
}
.dining-card:hover .dining-card-content h3 {
  transform: translateY(-4px);
}
.dining-card:hover .dining-card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  border-top: 1px solid var(--navy);
}

.about-bg-accent {
  position: absolute;
  top: 0; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 122, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }

.about-image-block { position: relative; }

.about-img-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--yellow);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
}
.badge-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
}

.est{
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.about-text strong { color: var(--seafoam);
font-weight: bold;
font-size: 1.2rem; }

.about-quote {
  margin-top: 2rem;
  border-left: 3px solid var(--yellow);
  padding: 1rem 1.5rem;
  background: rgba(26, 122, 110, 0.08);
  border-radius: 0 6px 6px 0;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--black);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    padding: 7rem 0;
position: relative;
  padding: 7rem 0;
  background:
    linear-gradient(
      160deg,
      rgba(245, 200, 66, 0.6) 0%,   /* soft yellow overlay */
      rgba(245, 200, 66, 0.2) 20%,
      transparent 35%
    ),
    linear-gradient(
      160deg,
      var(--navy) 0%,
      #0a2540 40%,
      #0d3d3a 100%
    );  
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 191, 176, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 191, 176, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}
.contact-item p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
}
.contact-item a {
  color: var(--text-light);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--seafoam); }
.contact-item em { color: var(--text-muted); font-size: 0.9rem; }

/* Contact Form */
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(26, 122, 110, 0.2);
}

.form-success {
  display: none;
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--seafoam);
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080f18;
  position: relative;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-waves {
  position: absolute;
  top: -30px;
  left: 0; right: 0;
  height: 30px;
  overflow: hidden;
}

.f-wave {
  position: absolute;
  top: 0; left: -5%;
  width: 110%;
  height: 60px;
  background: #080f18;
  border-radius: 50% 50% 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
}
.footer-brand p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--seafoam); }

.footer-copy {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  width: 100%;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   RESPONSIVE — single source of truth, mobile-first ordering
   ============================================================ */

/* ── 1024px: tablet landscape ── */
@media (max-width: 1024px) {
  .intro-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dining-grid  { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .about-image-block { max-width: 480px; margin: 0 auto; }
  .about-img-frame img { aspect-ratio: 4/3; }
  .menu-img-grid { gap: 1.5rem; }

  /* Home gallery: flatten to 2-col, full auto-placement */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.g-tall  { grid-column: auto; grid-row: auto; }
  .gallery-item.g-wide  { grid-column: auto; grid-row: auto; }
  .right-top            { grid-column: auto; grid-row: auto; }
  .right-middle         { grid-column: auto; grid-row: auto; }
  .right-bottom         { grid-column: auto; grid-row: auto; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .intro          { padding: 5rem 0; }
  .menu-section   { padding: 5rem 0 4rem !important; }
  .gallery-section { padding: 5rem 0; }
  .dining-section { padding: 4rem 0; }
  .about-section  { padding: 5rem 0; }
  .contact-section { padding: 5rem 0; }
}

/* ── 768px: tablet portrait / large phones ── */
@media (max-width: 768px) {
  /* ─ Navbar ─ */
  /* Raise navbar above everything so toggle button is always tappable */
  .navbar { z-index: 1100; }

  /* When menu is open, suppress the scrolled background so it doesn't
     show through the overlay or create a double-dark strip at the top */
  .navbar.scrolled.menu-open {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  /* Hamburger toggle sits above the overlay */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1200;
  }

  /* Full-viewport overlay — must be above .navbar (1100) */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 42, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    z-index: 1150;
  }
  .nav-links.open { display: flex; }

  /* Reset ALL nav-link desktop styles inside the overlay */
  .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 2.5rem;
    background-color: transparent !important;
    color: var(--white) !important;
    border-radius: var(--radius);
    width: auto;
    text-align: center;
    margin-left: 0 !important;
  }
  .nav-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
  }
  .nav-link.active-link {
    color: var(--seafoam) !important;
    background: transparent !important;
  }
  /* CTA "Visit Us" gets a yellow pill */
  .nav-link.nav-cta {
    background: var(--yellow) !important;
    color: var(--navy) !important;
    margin-left: 0 !important;
    padding: 0.75rem 2.5rem !important;
    border-radius: 100px !important;
  }
  .nav-link.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
  }
  .nav-logo-img { height: 42px; }

  /* ─ Hero ─ */
  .hero-title    { font-size: clamp(3.5rem, 15vw, 7rem); }
  .hero-eyebrow  { font-size: 0.9rem; letter-spacing: 0.2em; }
  .hero-tagline  { font-size: 1rem; }
  .hero-content  { padding: 1.25rem; }
  .hero-badge    { font-size: 0.72rem; padding: 0.35rem 1rem; }

  /* ─ Season banner ─ */
  .season-inner  { flex-direction: column; gap: 0.5rem; font-size: 0.88rem; }
  .season-icon   { display: none; }

  /* ─ Intro ─ */
  .intro         { padding: 4rem 0; }
  .intro-grid    { gap: 2.5rem; }
  .intro-cards   { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card     { padding: 1.5rem 1rem; }
  .stat-num      { font-size: 2rem; }

  /* ─ Home gallery ─ */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  /* ─ Dining ─ */
  .dining-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .dining-card   { height: 300px; }

  /* ─ About ─ */
  .about-section { padding: 4rem 0; }
  .about-grid    { gap: 2rem; }
  .about-img-frame img { aspect-ratio: 16/9; }
  .about-image-block   { max-width: 100%; }
  .about-img-badge     { width: 72px; height: 72px; bottom: -0.75rem; right: -0.75rem; }
  .badge-year          { font-size: 0.85rem; }

  /* ─ Contact ─ */
  .contact-section { padding: 4rem 0; }
  .contact-grid    { gap: 2rem; }
  .contact-card    { padding: 1.75rem; }
  .form-row        { grid-template-columns: 1fr; }

  /* ─ Menu ─ */
  .menu-img-grid  { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-lb-img    { max-width: 92vw; max-height: 80vh; }
  .menu-lb-inner  { gap: 0.6rem; }
  .menu-lb-prev, .menu-lb-next { width: 36px; height: 36px; font-size: 1.1rem; }
  .menu-img-actions { flex-direction: column; align-items: center; }

  /* ─ Footer ─ */
  .footer-links a { font-size: 0.75rem; padding: 0.35rem 0.6rem; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  html { font-size: 15px; }
  .container { padding: 0 1rem; }

  .hero-title    { font-size: clamp(3rem, 16vw, 5.5rem); line-height: 0.88; }
  .hero-actions  { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }

  .intro         { padding: 3.5rem 0; }
  .intro-cards   { gap: 0.6rem; }
  .stat-card     { padding: 1.25rem 0.75rem; }
  .stat-num      { font-size: 1.75rem; }
  .stat-label    { font-size: 0.65rem; }

  .section-title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .section-label { font-size: 0.9rem; }
  .section-desc  { font-size: 0.95rem; }

  .season-inner  { font-size: 0.82rem; padding: 0 1rem; }
  .season-inner strong { font-size: 1rem; }

  .gallery-section { padding: 3.5rem 0; }
  .gallery-grid  {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }

  .dining-grid   { max-width: 100%; }
  .dining-card   { height: 260px; }

  .about-section { padding: 3.5rem 0; }
  .about-quote blockquote { font-size: 0.95rem; }

  .contact-section { padding: 3.5rem 0; }
  .contact-card  { padding: 1.5rem 1.25rem; gap: 1.5rem; }
  .contact-form-wrap h3 { font-size: 1.25rem; }

  .menu-section  { padding: 3.5rem 0 3rem !important; }
  .menu-btn-view, .menu-btn-download { width: 100%; max-width: 220px; justify-content: center; }

  .site-footer   { padding: 2.5rem 0 1.5rem; }
  .footer-brand .logo-main { font-size: 1.6rem; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 0.875rem; }

  .hero-title    { font-size: clamp(2.75rem, 13vw, 5rem); line-height: 1; }
  .hero-eyebrow  { font-size: 0.78rem; letter-spacing: 0.15em; }
  .hero-badge    { font-size: 0.66rem; }
  .hero-scroll-hint { display: none; }

  .intro         { padding: 3rem 0; }

  /* Home gallery: single col on small phones */
  .gallery-grid  {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .dining-card   { height: 240px; }
  .dining-card-content { padding: 1.5rem 1.25rem; }
  .dining-card-content h3 { font-size: 1.2rem; }

  .about-img-badge { width: 64px; height: 64px; font-size: 0.5rem; bottom: -0.5rem; right: -0.5rem; }
  .badge-year    { font-size: 0.75rem; }

  .contact-card  { gap: 1.25rem; }
  .contact-icon  { font-size: 1.25rem; }

  .menu-lb-prev, .menu-lb-next { display: none; }
  .menu-lb-img   { max-width: 96vw; }
}

/* ── 380px: very small phones ── */
@media (max-width: 380px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }

  .hero-title    { font-size: clamp(2.5rem, 18vw, 4rem); }
  .hero-content  { padding: 1rem; }
  .hero-actions .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }

  .stat-card     { padding: 1rem 0.6rem; }
  .stat-num      { font-size: 1.5rem; }
  .nav-logo-img  { height: 36px; }

  .contact-card  { padding: 1.25rem 1rem; }
  .form-group input, .form-group textarea {
    font-size: 0.9rem;
    padding: 0.7rem 0.75rem;
  }

  .footer-brand .logo-main { font-size: 1.4rem; }
}
.connecticut-p{
    color: var(--black) !important;
    font-weight: bold !important;
}

.section-title-visit {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* .container-gallery{
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 20px;
    padding-top: 15px;
}

.section-title-gallery {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: bold;
} */

.menu-text{
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/clam-castle-banner-img.jpeg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.18; /* adjust this */
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.hero-bg,
.hero::before,
.hero-content,
.hero-scroll-hint {
  position: relative;
  z-index: 2;
}

.hero::after {
  z-index: 1;
}
/* ============================================================
   MENU IMAGE GRID + LIGHTBOX
   ============================================================ */
.menu-section {
  background: var(--navy) !important;
  padding: 7rem 0 5rem !important;
}
.menu-bg-texture {
  background-image:
    radial-gradient(circle at 85% 15%, rgba(239,238,34,0.06) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(239,238,34,0.04) 0%, transparent 40%) !important;
}
.menu-section .section-title { color: var(--white) !important; }
.menu-section .section-label { color: var(--yellow) !important; }
.menu-section .section-desc  { color: var(--text-muted) !important; font-weight: normal !important; }

/* 2-column grid */
.menu-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.menu-img-card {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(239,238,34,0.18);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  background: var(--navy-mid);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.menu-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border-color: rgba(239,238,34,0.5);
}

.menu-img-card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.menu-img-card:hover img { transform: scale(1.015); }

/* Buttons row */
.menu-img-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: rgba(0,0,0,0.35);
  justify-content: center;
}

.menu-btn-view,
.menu-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.menu-btn-view {
  background: var(--yellow);
  color: var(--navy);
}
.menu-btn-view:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(239,238,34,0.4);
}

.menu-btn-download {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.menu-btn-download:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(239,238,34,0.3);
}

/* Lightbox */
.menu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.menu-lightbox.open { display: flex; }

.menu-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.95);
  cursor: zoom-out;
  animation: mlbFadeIn 0.22s ease;
}
@keyframes mlbFadeIn { from { opacity:0; } to { opacity:1; } }

.menu-lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: mlbPop 0.32s cubic-bezier(0.34,1.42,0.64,1);
}
@keyframes mlbPop {
  from { transform: scale(0.84); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.menu-lb-img-wrap { display: flex; align-items: center; justify-content: center; }

.menu-lb-img {
  display: block;
  max-width: 80vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  border: 2px solid rgba(239,238,34,0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-lb-prev, .menu-lb-next, .menu-lb-close {
  background: rgba(239,238,34,0.12);
  color: var(--yellow);
  border: 1px solid rgba(239,238,34,0.35);
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.menu-lb-prev:hover, .menu-lb-next:hover, .menu-lb-close:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: scale(1.1);
}
.menu-lb-close {
  position: absolute;
  top: -56px; right: 0;
  font-size: 1rem;
}
.menu-lb-counter {
  position: absolute;
  bottom: -2rem;
  left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239,238,34,0.55);
  white-space: nowrap;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.88;
  transform: scale(1.03);
}

/* ============================================================
   CLAM CASTLE — about.css
   ============================================================ */

/* ── About Hero Photo Layer ── */
.about-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('../images/clam-castle1.jpeg');
    background-size: cover;
    background-position: center top;
    opacity: 0.45;
    z-index: 0;
}

.about-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.30) 45%,
        rgba(10, 22, 40, 0.70) 100%
    );
    z-index: 1;
}

.hero.about-hero::before          { z-index: 2; }
.hero.about-hero .hero-bg         { z-index: 3; }
.hero.about-hero .hero-content    { z-index: 4; }
.hero.about-hero .hero-scroll-hint { z-index: 4; }


/* ============================================================
   ORIGIN — navy background
   ============================================================ */

.about-navy-wrap {
    background: var(--navy);
    padding: 5rem 0;
}

.about-origin-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-origin-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-origin-quote {
    margin-top: 2rem;
    border-left: 3px solid var(--yellow);
    padding: 1rem 1.5rem;
    background: rgba(239, 238, 34, 0.05);
    border-radius: 0 6px 6px 0;
}

.about-origin-quote blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.55;
}

/* Stats grid */
.about-origin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-stat-card {
    background: var(--navy-mid);
    border: 1px solid rgba(77, 191, 176, 0.18);
    border-radius: 8px;
    padding: 2rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform var(--transition), border-color var(--transition);
}
.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--yellow);
}
.about-stat-card.accent {
    border-color: rgba(77, 191, 176, 0.3);
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--seafoam);
    line-height: 1;
    display: block;
}
.about-stat-plus {
    font-size: 1.75rem;
}
.about-stat-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ============================================================
   STORY — yellow background
   ============================================================ */

.about-yellow-wrap {
    background: var(--yellow);
    padding: 5rem 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-img-block {
    position: relative;
}

.about-story-img-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.25);
}

.about-story-img-frame img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-story-img-frame:hover img {
    transform: scale(1.04);
}

.about-est-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--navy);
    border-radius: 50%;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    text-align: center;
    line-height: 1.2;
}
.est-label {
    font-family: var(--font-ui);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--seafoam);
}
.est-year {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--yellow);
}

.about-story-text .section-title {
    color: var(--navy);
}

.about-story-p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 600;
}
.about-story-p strong {
    color: var(--teal);
    font-weight: 700;
}


/* ============================================================
   VALUES — navy background
   ============================================================ */

.about-values-wrap {
    background: var(--navy);
    padding: 5rem 0;
}

.about-values-wrap .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.about-value-card {
    background: var(--navy-mid);
    border: 1px solid rgba(77, 191, 176, 0.15);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.about-value-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-value-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.about-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.about-value-card p {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}





/* ============================================================
   VISIT CTA — navy background
   ============================================================ */

.about-cta-wrap {
    background: var(--navy);
    padding: 5rem 0;
    border-top: 1px solid rgba(77, 191, 176, 0.12);
}

.about-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-cta-desc {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn-primary {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.about-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 238, 34, 0.35);
}

.about-btn-outline {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    background: transparent;
    color: var(--seafoam);
    border: 2px solid rgba(77, 191, 176, 0.4);
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.about-btn-outline:hover {
    background: rgba(77, 191, 176, 0.08);
    border-color: var(--seafoam);
    transform: translateY(-2px);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
    .about-origin-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-grid   { grid-template-columns: 1fr; gap: 3rem; }
    .about-values-grid  { grid-template-columns: repeat(2, 1fr); }



    .about-story-img-frame img { aspect-ratio: 16/9; }
    .about-story-img-block { max-width: 540px; margin: 0 auto; }

    .about-origin-stats { max-width: 480px; margin: 0 auto; width: 100%; }

    .about-navy-wrap    { padding: 4rem 0; }
    .about-yellow-wrap  { padding: 4rem 0; }
    .about-values-wrap  { padding: 4rem 0; }
    .about-cta-wrap     { padding: 4rem 0; }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .about-hero .hero-title   { font-size: clamp(3.5rem, 15vw, 6rem); }
    .about-hero .hero-eyebrow { font-size: 0.85rem; }

    .about-navy-wrap    { padding: 3rem 0; }
    .about-yellow-wrap  { padding: 3rem 0; }
    .about-values-wrap  { padding: 3rem 0; }
    .about-cta-wrap     { padding: 3rem 0; }

    .about-origin-text p    { font-size: 0.95rem; }
    .about-origin-quote blockquote { font-size: 0.95rem; }

    .about-stat-card    { padding: 1.5rem 1rem; }
    .about-stat-num     { font-size: 2rem; }

    .about-values-grid  { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .about-value-card   { padding: 1.5rem 1.25rem; }
    .about-value-icon   { font-size: 1.9rem; }


    .about-cta-btns     { flex-direction: column; align-items: center; }
    .about-btn-primary,
    .about-btn-outline  { width: 100%; max-width: 280px; text-align: center; }

    .about-est-badge    { width: 72px; height: 72px; bottom: -0.75rem; right: -0.75rem; }
    .est-year           { font-size: 0.85rem; }
}

/* ── 600px ── */
@media (max-width: 600px) {
    .about-hero .hero-title  { font-size: clamp(3rem, 16vw, 5rem); }
    .about-hero .hero-content { padding: 1.25rem; }

    .about-origin-grid  { gap: 2rem; }
    .about-story-grid   { gap: 2rem; }

    .about-origin-stats { grid-template-columns: 1fr 1fr; }
    .about-stat-num     { font-size: 1.75rem; }
    .about-stat-label   { font-size: 0.65rem; }

    .about-values-grid  { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .about-value-card   { padding: 1.25rem 1rem; gap: 0.5rem; }
    .about-value-card h3 { font-size: 1rem; }
    .about-value-card p  { font-size: 0.8rem; }



    .about-cta-title    { font-size: clamp(1.5rem, 5vw, 2.25rem); }
    .about-cta-desc     { font-size: 0.88rem; }

    .about-navy-wrap    { padding: 2.5rem 0; }
    .about-yellow-wrap  { padding: 2.5rem 0; }
    .about-values-wrap  { padding: 2.5rem 0; }
    .about-cta-wrap     { padding: 2.5rem 0; }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .about-hero .hero-title   { font-size: clamp(2.75rem, 17vw, 4.5rem); }
    .about-hero .hero-content { padding: 1rem; }

    .about-values-grid  { grid-template-columns: 1fr; }
    .about-value-card   { flex-direction: row; text-align: left; gap: 1rem; padding: 1.25rem; }
    .about-value-icon   { font-size: 1.75rem; flex-shrink: 0; }

    .about-est-badge    { width: 64px; height: 64px; bottom: -0.5rem; right: -0.5rem; }
    .est-year           { font-size: 0.75rem; }

    .about-origin-quote { padding: 0.75rem 1rem; }
    .about-origin-quote blockquote { font-size: 0.88rem; }

}

/* ── 380px ── */
@media (max-width: 380px) {
    .about-hero .hero-title { font-size: clamp(2.5rem, 18vw, 4rem); }

    .about-stat-card    { padding: 1.1rem 0.75rem; }
    .about-stat-num     { font-size: 1.5rem; }

    .about-value-card   { padding: 1rem; }
    .about-value-icon   { font-size: 1.5rem; }
}

/* ============================================================
   CLAM CASTLE — contact.css
   ============================================================ */

/* ── Contact Hero Photo Layer ── */
.contact-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('../images/clam-castle1.jpeg');
    background-size: cover;
    background-position: center top;
    opacity: 0.45;
    z-index: 0;
}

.contact-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.30) 45%,
        rgba(10, 22, 40, 0.70) 100%
    );
    z-index: 1;
}

.hero.contact-hero::before       { z-index: 2; }
.hero.contact-hero .hero-bg      { z-index: 3; }
.hero.contact-hero .hero-content { z-index: 4; }
.hero.contact-hero .hero-scroll-hint { z-index: 4; }


/* ============================================================
   INFO + MAP — navy background, compact row layout
   ============================================================ */

.contact-navy-wrap {
    background: var(--navy);
    padding: 4rem 0;
}

.contact-navy-wrap .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Two equal columns, more compact */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* ── Left: info card ── */
.contact-info-card {
    background: var(--navy-mid);
    border-radius: 8px;
    padding: 2rem 2rem;
    border: 1px solid rgba(77, 191, 176, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-block-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 0.4rem;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(77, 191, 176, 0.1);
}
.contact-info-row:last-child { border-bottom: none; }

.contact-info-icon {
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 1.2rem;
    text-align: center;
}

.contact-info-text {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}
.contact-info-text a {
    color: var(--white);
    transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--white); }

/* Hours — compact */
.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(77, 191, 176, 0.08);
    gap: 1rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day  { color: var(--cream); font-weight: 600; white-space: nowrap; }
.hours-list .time { color: var(--text-muted); text-align: right; }
.hours-list .closed { color: rgba(212, 135, 42, 0.85); font-weight: 600; }

/* Season notice */
.season-notice {
    background: linear-gradient(135deg, rgba(26,122,110,0.18), rgba(26,122,110,0.06));
    border: 1px solid rgba(77, 191, 176, 0.22);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--seafoam);
    letter-spacing: 0.03em;
    line-height: 1.5;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}
.season-notice-icon { font-size: 0.9rem; flex-shrink: 0; }
.season-notice strong { color: var(--gold); }

/* CTA buttons */
.contact-cta-group {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}
.contact-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}
.contact-cta-btn.primary {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}
.contact-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239,238,34,0.3);
}
.contact-cta-btn.outline {
    background: transparent;
    color: var(--seafoam);
    border-color: rgba(77,191,176,0.4);
}
.contact-cta-btn.outline:hover {
    background: rgba(77,191,176,0.08);
    border-color: var(--seafoam);
    transform: translateY(-2px);
}

/* ── Right: map fills full card height ── */
.contact-map-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.contact-map-frame {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(77,191,176,0.18);
    flex: 1;
    min-height: 360px;
}
.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-map-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.5;
}
.contact-map-address .pin { font-size: 0.9rem; flex-shrink: 0; }


/* ============================================================
   CONTACT FORM — yellow background, navy container
   ============================================================ */

.contact-form-section {
    background: var(--yellow);
    padding: 5rem 0 5rem;
}

/* Navy card wrapping the form */
.contact-form-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 3rem 3rem;
    border: 1px solid rgba(77, 191, 176, 0.18);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
    max-width: 760px;
    margin: 0 auto;
}

.contact-form-card .section-label { display: block; text-align: center; margin-bottom: 0.4rem; }

.contact-form-card .section-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.contact-form-card .section-desc {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: normal;
}

.cf-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cf-group label {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--seafoam);
}

.cf-group input,
.cf-group textarea,
.cf-group select {
    font-family: var(--font-ui);
    font-size: 0.92rem;
    color: var(--navy);
    background: rgba(245, 240, 232, 0.95);
    border: 2px solid rgba(77, 191, 176, 0.2);
    border-radius: 4px;
    padding: 0.7rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
    border-color: var(--seafoam);
    box-shadow: 0 0 0 3px rgba(77, 191, 176, 0.15);
}
.cf-group textarea { resize: vertical; min-height: 120px; }

.cf-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.cf-submit .btn-primary-send-message {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 3.5rem;
    background: var(--yellow);
    color: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.cf-submit .btn-primary-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239,238,34,0.35);
}

.cf-success {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--seafoam);
    opacity: 0;
    transition: opacity 0.4s ease;
    letter-spacing: 0.05em;
}
.cf-success.show { opacity: 1; }


/* ── Responsive ── */

/* ============================================================
   CONTACT PAGE — Responsive (single clean block)
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .contact-page-grid    { grid-template-columns: 1fr; gap: 1.75rem; }
  .contact-map-frame    { flex: none; min-height: 320px; }
  .contact-map-col      { height: auto; }
  .contact-info-card    { height: auto; }
  .contact-cta-group    { margin-top: 0; }
  .contact-navy-wrap    { padding: 3.5rem 0; }
  .contact-form-section { padding: 4rem 0; }
  .contact-form-card    { padding: 2.5rem 2rem; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .contact-hero .hero-title   { font-size: clamp(3.5rem, 15vw, 6rem); }
  .contact-hero .hero-eyebrow { font-size: 0.85rem; }

  .contact-navy-wrap    { padding: 3rem 0; }
  .contact-navy-wrap .section-header { margin-bottom: 2rem; }
  .contact-page-grid    { gap: 1.5rem; }
  .contact-info-card    { padding: 1.5rem; gap: 1.25rem; }
  .contact-info-block-label { font-size: 0.6rem; }
  .contact-info-text    { font-size: 0.82rem; }
  .hours-list li        { font-size: 0.78rem; }
  .contact-map-frame    { min-height: 260px; }
  .contact-map-address  { font-size: 0.7rem; }
  .contact-form-section { padding: 3rem 0; }
  .contact-form-card    { padding: 2rem 1.5rem; max-width: 100%; }
  .cf-row               { grid-template-columns: 1fr; gap: 0; }
  .season-notice        { font-size: 0.74rem; padding: 0.65rem 0.85rem; }
  .contact-cta-btn      { font-size: 0.7rem; padding: 0.65rem 0.75rem; }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .contact-hero .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .contact-info-card   { padding: 1.25rem; gap: 1rem; }
  .contact-cta-group   { flex-direction: column; }
  .contact-cta-btn     { width: 100%; }
  .contact-form-card   { padding: 1.75rem 1.25rem; }
  .cf-form             { gap: 0.9rem; }
  .cf-group label      { font-size: 0.62rem; }
  .cf-group input, .cf-group textarea, .cf-group select {
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
  }
  .cf-submit .btn-primary-send-message { padding: 0.85rem 2rem; width: 100%; max-width: 280px; }
  .contact-map-frame   { min-height: 220px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .contact-hero .hero-title   { font-size: clamp(2.75rem, 17vw, 4.5rem); }
  .contact-hero .hero-content { padding: 1rem; }
  .contact-navy-wrap   { padding: 2.5rem 0; }
  .contact-info-card   { padding: 1rem; }
  /* Hours: stack day/time vertically */
  .hours-list li       { align-items: flex-start; gap: 0.1rem; padding: 0.4rem 0; }
  .hours-list .time    { text-align: left; }
  .contact-info-row    { gap: 0.5rem; padding: 0.35rem 0; }
  .contact-info-icon   { font-size: 0.85rem; }
  .contact-map-frame   { min-height: 200px; }
  .contact-map-address { font-size: 0.65rem; }
  .season-notice       { flex-direction: column; gap: 0.35rem; }
  .season-notice-icon  { display: none; }
  .contact-form-section { padding: 2.5rem 0; }
  .contact-form-card   { padding: 1.5rem 1rem; }
  .contact-form-card .section-title { font-size: 1.5rem; }
  .contact-form-card .section-desc  { font-size: 0.9rem; }
}

/* ── 380px ── */
@media (max-width: 380px) {
  .contact-hero .hero-title { font-size: clamp(2.5rem, 18vw, 4rem); }
  .contact-info-card  { padding: 0.875rem; }
  .contact-form-card  { padding: 1.25rem 0.875rem; }
  .cf-group input, .cf-group textarea, .cf-group select {
    font-size: 0.85rem;
    padding: 0.55rem 0.75rem;
  }
}

/* ============================================================
   CLAM CASTLE — gallery.css
   ============================================================ */

/* ── Gallery Hero Photo Layer ── */
/* The .hero already owns ::before (grid texture) and the gradient bg.
   We use a dedicated .gallery-hero-photo div inside .hero-bg
   so we don't conflict with ::before or ::after. */

.gallery-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('../images/clam-castle1.jpeg');
    background-size: cover;
    background-position: center top;
    opacity: 0.45;
    z-index: 0;
}

/* Dark gradient scrim over the photo so text stays readable */
.gallery-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.30) 45%,
        rgba(10, 22, 40, 0.70) 100%
    );
    z-index: 1;
}

/* Grid texture already in ::before — just ensure it's above the photo */
.hero.gallery-hero::before { z-index: 2; }

/* Waves sit above photo + scrim */
.hero.gallery-hero .hero-bg { z-index: 3; }

/* Content on top of everything */
.hero.gallery-hero .hero-content { z-index: 4; }

/* Scroll hint on top too */
.hero.gallery-hero .hero-scroll-hint { z-index: 4; }


/* ── Full Gallery Section ── */
.gallery-page-section {
    background: var(--yellow);
    padding: 6rem 0 5rem;
}

.gallery-page-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* 3-column masonry-style grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: zoom-in;
}

.gallery-page-item.g-tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-page-item.g-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-page-item:hover img {
    transform: scale(1.07);
}

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.75) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-page-item:hover .gallery-page-overlay {
    opacity: 1;
}

.gallery-page-overlay span {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
}

.menu-page .img img {
  width: 100%;
  margin-bottom: 50px;
}

/* ── Responsive ── */

/* ============================================================
   GALLERY PAGE — Responsive (single clean block)
   ============================================================ */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .gallery-page-section { padding: 4.5rem 0 4rem; }
  .gallery-page-section .section-header { margin-bottom: 2.5rem; }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  /* Kill all span behaviour — every item becomes a plain square */
  .gallery-page-item,
  .gallery-page-item.g-tall,
  .gallery-page-item.g-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .gallery-hero .hero-title   { font-size: clamp(3.5rem, 15vw, 6rem); }
  .gallery-hero .hero-eyebrow { font-size: 0.85rem; }

  .gallery-page-section { padding: 3.5rem 0 3rem; }
  .gallery-page-section .section-header { margin-bottom: 2rem; }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .gallery-page-item,
  .gallery-page-item.g-tall,
  .gallery-page-item.g-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
  }

  .gallery-page-overlay span { font-size: 0.68rem; letter-spacing: 0.12em; }
  .gallery-page-overlay { padding: 0.85rem; }

  .menu-page .img img {
    margin-bottom: 20px;
  }
}

/* ── 600px ── */
@media (max-width: 600px) {
  .gallery-hero .hero-title   { font-size: clamp(3rem, 16vw, 5rem); }
  .gallery-hero .hero-content { padding: 1.25rem; }

  .gallery-page-section { padding: 3rem 0 2.5rem; }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery-page-item,
  .gallery-page-item.g-tall,
  .gallery-page-item.g-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
    border-radius: 4px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .gallery-hero .hero-title   { font-size: clamp(2.75rem, 17vw, 4.5rem); }
  .gallery-hero .hero-content { padding: 1rem; }

  .gallery-page-section { padding: 2.5rem 0 2rem; }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
}

/* ── 380px: single column ── */
@media (max-width: 380px) {
  .gallery-hero .hero-title { font-size: clamp(2.5rem, 18vw, 4rem); }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .gallery-page-item,
  .gallery-page-item.g-tall,
  .gallery-page-item.g-wide {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}