/* ============================================================
   AD MARE — STYLESHEET (Mobile-First)
   ============================================================ */

/* ---- Variables ---- */
:root {
  --color-navy:       #0d2137;
  --color-navy-mid:   #14304f;
  --color-ocean:      #1a5276;
  --color-teal:       #1a7a7a;
  --color-accent:     #e07b39;
  --color-accent-lt:  #f0a06a;
  --color-gold:       #c9a84c;
  --color-bg:         #f7f3ee;
  --color-bg-alt:     #eef2f5;
  --color-text:       #1a1a1a;
  --color-text-muted: #5a6472;
  --color-white:      #ffffff;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(13,33,55,0.10);
  --shadow-lg:  0 8px 40px rgba(13,33,55,0.16);

  --nav-height:  60px;
  --max-width:   1160px;
  --section-gap: 3.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button {
  cursor: pointer; border: none; background: none; font-family: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ---- Utilities ---- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin-inline: auto;
}
.section { padding-block: var(--section-gap); }
.centered { text-align: center; }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
p { color: var(--color-text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.section-intro {
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.75em;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(224,123,57,0.2);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c86a2d;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(224,123,57,0.28);
}
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.78);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8,32,48,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
  box-shadow: inset 0 0 0 0 var(--color-navy);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(13,33,55,0.18);
}
.btn-full { width: 100%; justify-content: center; }

/* Click ripple (spawned by JS) */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  transform: scale(0);
  animation: ripple-burst 1s ease-out forwards;
  z-index: 1;
}
@keyframes ripple-burst {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================================
   NAV — mobile hamburger by default
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-navy);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.logo-anchor { font-size: 1.1rem; }

/* Mobile nav drawer */
.nav-links {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-navy);
  padding: 0.75rem 1.25rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-links.open { display: flex; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-links a:hover,
.nav-links a:active { color: var(--color-white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  justify-content: center;
  margin-top: 0.25rem;
}
.nav-cta:hover { background: #c9692a !important; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(13,33,55,0.88) 0%, rgba(26,82,118,0.78) 60%, rgba(13,33,55,0.92) 100%),
    url('images/hero.jpg') center/cover no-repeat;
  background-color: var(--color-navy);
  padding-top: var(--nav-height);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,122,122,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem;
}
.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4em 1.1em;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 9vw, 5.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title em {
  color: var(--color-accent-lt);
  font-style: italic;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-cta-group .btn {
  width: 100%;
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */
.announcement {
  background: linear-gradient(90deg, var(--color-teal), var(--color-ocean));
  color: var(--color-white);
  padding-block: 0.9rem;
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.announcement-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-text { font-size: 0.9rem; color: var(--color-white); margin: 0; line-height: 1.55; }
.announcement-text strong { font-weight: 700; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
/* Image first on mobile */
.about-image { order: -1; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }
.about-text .btn { margin-top: 0.75rem; }
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--color-navy-mid);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder::after {
  content: "Photo coming soon";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   MENU
   ============================================================ */
.menu-section { background: var(--color-bg-alt); }
.menu-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.menu-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.menu-card-img-wrap {
  margin: -1.5rem -1.25rem 1.25rem;
  height: 200px;
  overflow: hidden;
}
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.06); }
.menu-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.menu-card h3 { color: var(--color-navy); margin-bottom: 0.5rem; }
.menu-social-note {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}
.menu-social-note p { margin: 0; font-size: 0.95rem; }
.menu-social-note a { color: var(--color-ocean); font-weight: 600; }
.menu-social-note a:hover { color: var(--color-accent); }

/* ============================================================
   PHOTOS — 2-col mobile (all 8 shown)
   ============================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.photo-cell {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-navy-mid);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-cell:hover img { transform: scale(1.05); }
/* First photo wider on mobile */
.photo-cell:nth-child(1) { grid-column: span 2; aspect-ratio: 16 / 8; }
.photo-placeholder::after {
  content: "📸";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 2rem;
  opacity: 0.25;
}
.photo-instagram { text-align: center; }
.photo-instagram a { color: var(--color-ocean); font-weight: 600; }
.photo-instagram a:hover { color: var(--color-accent); }

/* ============================================================
   VISIT
   ============================================================ */
.visit-section { padding-block: 0; }
.visit-bg {
  background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  padding-block: var(--section-gap);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.visit-info .section-label { color: var(--color-gold); }
.visit-info h2 { color: var(--color-white); }
.visit-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.visit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.visit-detail strong { color: var(--color-white); }
.visit-detail div { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }
.visit-detail a { color: var(--color-accent-lt); font-weight: 600; }
.visit-detail a:hover { color: var(--color-gold); }
.visit-map { padding-top: 0; }
/* Responsive map */
.visit-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 0;
  border-radius: var(--radius);
  display: block;
}
.map-fallback { margin-top: 0.75rem; text-align: right; }
.map-fallback a { color: var(--color-accent-lt); font-size: 0.875rem; font-weight: 600; }
.map-fallback a:hover { color: var(--color-gold); }

/* ============================================================
   HOURS
   ============================================================ */
.hours-section {
  background: var(--color-bg-alt);
  padding-top: var(--section-gap);
  padding-bottom: calc(var(--section-gap) + 8rem);
}
.hours-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.hours-note-box {
  margin-top: 2rem;
  background: var(--color-white);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem;
  text-align: left;
  box-shadow: var(--shadow);
}
.hours-note-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.hours-note-box strong em { color: var(--color-navy); font-style: italic; }
.hours-note-box a { color: var(--color-ocean); font-weight: 600; }
.hours-note-box a:hover { color: var(--color-accent); }

/* ============================================================
   CATERING
   ============================================================ */
.catering-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.catering-text p { margin-bottom: 1rem; }
.catering-text .btn { margin-top: 0.5rem; }

/* ============================================================
   SWAG
   ============================================================ */
.swag-section { background: var(--color-bg-alt); }
.swag-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin-inline: auto;
}
.swag-image {
  aspect-ratio: 4 / 3;
  background: var(--color-navy-mid);
  overflow: hidden;
}
.swag-image img { width: 100%; height: 100%; object-fit: cover; }
.swag-details { padding: 1.5rem; }
.swag-price {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-navy);
  margin-block: 0.75rem;
}
.swag-price span { font-size: 0.85rem; font-family: var(--font-sans); font-weight: 400; color: var(--color-text-muted); }
.swag-note { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--color-navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-intro .section-label { color: var(--color-gold); }
.contact-intro h2 { color: var(--color-white); }
.contact-intro p { color: rgba(255,255,255,0.65); }
.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.65em 1em;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: all 0.2s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.social-link:hover { color: var(--color-white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }

/* Form */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}
.required { color: var(--color-accent); }
.form-field input,
.form-field textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid #d8dce0;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-ocean);
  box-shadow: 0 0 0 3px rgba(26,82,118,0.12);
}
.form-field input.error,
.form-field textarea.error { border-color: #d9534f; }
.form-status {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  text-align: center;
  min-height: 1.2em;
}
.form-direct-email {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--color-text-muted);
}
.form-direct-email a {
  color: var(--color-ocean);
  font-weight: 600;
}
.form-direct-email a:hover { color: var(--color-accent); }
.form-status.success { color: #2e7d32; }
.form-status.error   { color: #c62828; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #081624;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 2.5rem;
}
.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
}
.footer-banner-img {
  max-height: 70px;
  width: auto;
  display: block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 0.4rem; margin-bottom: 0; }
.footer-nav {
  display: flex;
  gap: 0 1.25rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-right: 0.25rem;
}
.footer-nav a:hover { color: var(--color-white); }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer-social a:hover { color: var(--color-white); border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding-block: 1.25rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ============================================================
   SECTION WAVE DIVIDERS
   ============================================================ */
.section-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.section-wave svg { width: 100%; display: block; }
.about.section   { position: relative; }
.menu-section    { position: relative; }
.photos-section  { position: relative; }
.hours-section   { position: relative; }
.visit-bg        { position: relative; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — LARGE PHONE / SMALL TABLET (600px+)
   ============================================================ */
@media (min-width: 600px) {
  :root { --section-gap: 4.5rem; }

  /* Hero — side-by-side CTAs */
  .hero-cta-group { flex-direction: row; }
  .hero-cta-group .btn { width: auto; }

  /* Menu — 2 columns */
  .menu-cards { grid-template-columns: repeat(2, 1fr); }

  /* Form — 2-column name/email row */
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contact-form { padding: 2rem; }
}

/* ============================================================
   RESPONSIVE — TABLET / DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
  :root {
    --section-gap: 6rem;
    --nav-height: 70px;
  }

  /* Nav — desktop links */
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  .nav-links a {
    font-size: 0.875rem;
    padding: 0.4em 0.85em;
    border-radius: 50px;
    min-height: auto;
    display: inline-flex;
  }
  .nav-cta { padding: 0.4em 1.1em !important; margin-top: 0; justify-content: center; }

  /* Transparent nav over hero, navy when scrolled */
  .site-header { background: transparent; }
  .site-header.scrolled { background: var(--color-navy); }

  .nav-logo-img { height: 60px; }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-image { order: 0; }

  /* Catering */
  .catering-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }

  /* Visit */
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .visit-map iframe { aspect-ratio: auto; height: 380px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; }
  .contact-form { padding: 2.5rem; }

  /* Swag */
  .swag-card { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .swag-details { padding: 2rem 2rem 2rem 0; }

  /* Menu — auto-fit up to 4 columns */
  .menu-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .menu-card { padding: 2rem 1.75rem; }
  .menu-card-img-wrap { margin: -2rem -1.75rem 1.5rem; height: 170px; }

  /* Photo grid — artsy 3-col × 4-row editorial layout */
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 220px);
    gap: 0.75rem;
  }
  .photo-cell { aspect-ratio: auto; }
  .photo-cell:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .photo-cell:nth-child(2) { grid-column: 3;     grid-row: 1; }
  .photo-cell:nth-child(3) { grid-column: 3;     grid-row: 2; }
  .photo-cell:nth-child(4) { grid-column: 1;     grid-row: 3; }
  .photo-cell:nth-child(5) { grid-column: 2;     grid-row: 3; }
  .photo-cell:nth-child(6) { grid-column: 3;     grid-row: 3 / 5; aspect-ratio: auto; }
  .photo-cell:nth-child(7) { grid-column: 1;     grid-row: 4; }
  .photo-cell:nth-child(8) { grid-column: 2;     grid-row: 4; }

  /* Footer — horizontal */
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 3rem;
  }
  .footer-banner-img { max-height: 80px; }
}

/* ---- Back to top ---- */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white) !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  box-shadow: 0 2px 12px rgba(13,33,55,0.22);
}
.back-to-top svg {
  display: block;
  flex-shrink: 0;
  stroke: var(--color-white);
}
.back-to-top.visible {
  opacity: 0.7;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  opacity: 1;
  background: var(--color-ocean);
  outline: none;
}
