/* Midbay Group — design system */
:root {
  --bs-primary: #c4893a;
  --bs-primary-rgb: 196, 137, 58;
  --ink: #0c1222;
  --ink-muted: #4a5568;
  --ocean: #0a4d68;
  --ocean-mid: #0f6b8a;
  --ocean-light: #62a4c4;
  --sand: #f4ebe3;
  --sand-deep: #e8d5c4;
  --sunset: #d4a056;
  --sunset-bright: #e8b86d;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #faf7f3;
  --line: rgba(12, 18, 34, 0.08);
  --shadow-sm: 0 4px 24px rgba(12, 18, 34, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 18, 34, 0.1);
  --shadow-lg: 0 24px 64px rgba(12, 18, 34, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-ui: "Syne", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-primary {
  color: var(--ocean-mid) !important;
}

.page-home > section.container {
  padding-bottom: 2.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--surface-solid);
  overflow-x: hidden;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ——— Navigation ——— */
.navbar {
  background: transparent;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    padding 0.35s var(--ease-out), backdrop-filter 0.4s;
  padding: 1.35rem 0;
}

.navbar.scrolled {
  background: rgba(250, 247, 243, 0.88);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.navbar-brand {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--surface-solid) !important;
  letter-spacing: -0.03em;
  transition: transform 0.3s var(--ease-out);
}

.navbar:not(.scrolled) .navbar-brand {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.navbar.scrolled .navbar-brand {
  color: var(--ocean) !important;
  text-shadow: none;
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.brand-text {
  color: var(--sunset-bright) !important;
  border-bottom: none;
  padding-bottom: 0;
}

.navbar.scrolled .brand-text {
  color: var(--sunset) !important;
}

.navbar .nav-link {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--ink-muted) !important;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--sunset), var(--sunset-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.45rem 0.65rem;
}

.navbar:not(.scrolled) .navbar-toggler {
  filter: invert(1);
}

.navbar.scrolled .navbar-toggler {
  border-color: var(--line);
}

@media (max-width: 991px) {
  .page-home .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 14, 26, 0.92);
    backdrop-filter: blur(10px);
  }

  .page-home .navbar.scrolled .navbar-collapse {
    background: rgba(250, 247, 243, 0.97);
    border-color: var(--line);
  }

  .page-home .navbar.scrolled .navbar-collapse .nav-link {
    color: var(--ink-muted) !important;
  }
}

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
  background: #030910;
  padding-bottom: 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      155deg,
      rgba(4, 18, 32, 0.72) 0%,
      rgba(8, 48, 72, 0.45) 38%,
      rgba(10, 28, 48, 0.55) 62%,
      rgba(6, 12, 24, 0.78) 100%
    ),
    url("front.jpg") center / cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.hero-aurora {
  position: absolute;
  inset: -35% -20%;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  background: conic-gradient(
    from 200deg at 70% 30%,
    rgba(212, 160, 86, 0.22) 0deg,
    transparent 55deg,
    rgba(98, 164, 196, 0.18) 120deg,
    transparent 200deg,
    rgba(232, 184, 109, 0.12) 280deg,
    transparent 360deg
  );
  animation: aurora-shift 28s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
  opacity: 0.85;
}

@keyframes aurora-shift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(18deg) scale(1.08);
  }
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora {
    animation: none;
    opacity: 0.5;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 46rem;
  padding-top: 4.5rem;
}

.hero-kicker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset-bright), var(--ocean-light));
  box-shadow: 0 0 20px rgba(232, 184, 109, 0.65);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.65rem, 7vw, 4.75rem);
  font-weight: 500;
  line-height: 1.02;
  color: #fff;
  text-shadow: 0 6px 60px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.35rem;
}

.hero-highlight {
  display: inline;
  background: linear-gradient(120deg, #fff 0%, var(--sunset-bright) 45%, #fde8c8 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  font-weight: 450;
}

.hero-deck {
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  max-width: 28rem;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.35s var(--ease-out);
}

.hero-scroll:hover {
  color: rgba(255, 255, 255, 0.95);
}

.hero-scroll-label {
  display: block;
}

.hero-scroll-line {
  width: 1px;
  height: 3.25rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line {
    animation: none;
  }
}

/* ——— Buttons ——— */
.btn {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    background 0.3s, border-color 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunset) 0%, #c4893a 100%);
  border: none;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(212, 160, 86, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 160, 86, 0.45);
  background: linear-gradient(135deg, var(--sunset-bright) 0%, var(--sunset) 100%);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

/* ——— Section chrome ——— */
.section-eyebrow {
  font-family: var(--font-ui);
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  margin-bottom: 0.75rem;
}

.section-head--features {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: clamp(1.95rem, 3.8vw, 2.75rem);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-head .lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ——— Experience pods ——— */
.experience-strip {
  counter-reset: midbay-pod;
  position: relative;
  z-index: 2;
}

.experience-strip::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0 auto 2.5rem;
  max-width: min(100%, 72rem);
}

.experience-pod {
  background: var(--surface);
  backdrop-filter: blur(10px) saturate(1.12);
  -webkit-backdrop-filter: blur(10px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: 2.35rem 1.85rem 2.25rem;
  margin-top: -5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  position: relative;
  z-index: 2;
  height: calc(100% - 0px);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.45s var(--ease-out);
}

.experience-pod::before {
  counter-increment: midbay-pod;
  content: "0" counter(midbay-pod);
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--ocean-light);
  opacity: 0.55;
}

.experience-pod:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(12, 18, 34, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.experience-pod .bi {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(98, 164, 196, 0.18), rgba(244, 235, 227, 0.9));
  border: 1px solid rgba(98, 164, 196, 0.25);
  box-shadow: 0 8px 28px rgba(10, 77, 104, 0.08);
  color: var(--ocean-mid) !important;
  opacity: 1;
  font-size: 2rem !important;
  line-height: 1 !important;
}

.experience-pod h3 {
  font-size: 1.32rem;
  margin: 1.15rem 0 0.75rem;
  font-weight: 550;
}

.experience-pod p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* ——— Menu preview ——— */
.menu-preview {
  background: linear-gradient(180deg, var(--sand) 0%, var(--surface-solid) 55%, #fff 100%);
  padding: 6.5rem 0 5.75rem;
  position: relative;
  overflow: hidden;
}

.menu-preview::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(98, 164, 196, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.menu-preview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(250, 247, 243, 0.98), transparent);
  pointer-events: none;
}

.menu-card {
  contain: layout style;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.45s var(--ease-out);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(98, 164, 196, 0.12);
}

.menu-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.menu-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 18, 34, 0.55) 0%, transparent 50%);
  opacity: 0.75;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.menu-card:hover .menu-card-media::after {
  opacity: 0.55;
}

.menu-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.75s var(--ease-out);
  display: block;
}

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

.menu-card-body h4 {
  color: var(--ocean);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.menu-card-body .text-muted {
  color: var(--ink-muted) !important;
  font-size: 0.95rem;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
}

/* ——— Shop ——— */
.shop-section {
  background: linear-gradient(135deg, #e8f2f7 0%, var(--surface-solid) 50%, var(--sand) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.shop-content .lead {
  color: var(--ink-muted);
}

.shop-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 550;
  color: var(--ocean);
  letter-spacing: -0.02em;
}

.shop-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.category-item {
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  border: 1px solid var(--line);
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-item i {
  font-size: 1.35rem;
  color: var(--sunset);
}

.shop-image-wrapper {
  position: relative;
}

.shop-frame {
  padding: 14px;
  border-radius: calc(var(--radius-lg) + 10px);
  background: linear-gradient(145deg, rgba(98, 164, 196, 0.2), rgba(244, 235, 227, 0.65));
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.45s;
}

.shop-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.shop-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 32px rgba(12, 18, 34, 0.12);
  transition: transform 0.6s var(--ease-out);
}

.shop-frame:hover .shop-photo {
  transform: scale(1.02);
}

/* ——— Kids menu ——— */
.kids-menu {
  background: linear-gradient(145deg, #1a0f2e 0%, #2d1b4e 40%, #1e3a5f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kids-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 80%, rgba(212, 160, 86, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(98, 164, 196, 0.2) 0%, transparent 45%);
  pointer-events: none;
}

.kids-menu h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.kids-intro {
  color: rgba(255, 228, 210, 0.95);
  font-size: 1.15rem;
  font-weight: 400;
  text-shadow: none;
  margin-bottom: 1.5rem;
}

.kids-menu .lead:not(.kids-intro) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.space-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.menu-item-space {
  background: rgba(255, 255, 255, 0.96);
  padding: 1.35rem 1.1rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.menu-item-space:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.menu-icon {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.menu-item-space h5 {
  color: var(--ocean);
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 1rem;
}

.menu-item-space p {
  color: #5c6578;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.menu-note {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.alien-mascot-container {
  position: relative;
  padding: 1rem;
}

.alien-mascot-container img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.space-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.space-element {
  position: absolute;
  font-size: 1.75rem;
  animation: float 4s infinite ease-in-out;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.star {
  top: 8%;
  right: 12%;
  animation-delay: 0s;
}
.rocket {
  top: 28%;
  left: 6%;
  animation-delay: 0.6s;
}
.planet {
  bottom: 18%;
  right: 10%;
  animation-delay: 1.1s;
}
.ufo {
  top: 16%;
  right: 28%;
  animation-delay: 1.6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 991px) {
  .space-menu-grid {
    grid-template-columns: 1fr;
  }
  .alien-mascot-container {
    margin-top: 2rem;
  }
}

/* ——— Journey ——— */
.our-journey {
  padding: 5rem 0 !important;
  background: var(--surface-solid);
  position: relative;
}

.our-journey .section-badge {
  margin-bottom: 0.75rem;
}

.journey-content h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.journey-content h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}

.wartime-history p,
.post-war-history p,
.journey-content > p {
  color: var(--ink-muted);
}

.historical-image-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid var(--line);
}

.historical-image {
  width: 100%;
  display: block;
}

.vintage-effect {
  filter: sepia(22%) contrast(1.02);
  transition: filter 0.5s var(--ease-out);
}

.vintage-effect:hover {
  filter: sepia(0%);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(transparent, rgba(12, 18, 34, 0.82));
  color: #fff;
  font-size: 0.85rem;
}

.zoom-indicator {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ocean);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.history-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .history-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.milestone {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.65rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.milestone:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.milestone .year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ocean);
}

.milestone .event {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.timeline-photos {
  padding: 0.5rem 0;
}

.timeline-photo.main-photo {
  position: relative;
  margin-bottom: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.vintage-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: sepia(25%);
  transition: filter 0.5s var(--ease-out), transform 0.65s var(--ease-out);
}

.main-photo:hover .vintage-photo {
  filter: sepia(0%);
  transform: scale(1.03);
}

.timeline-photo .photo-overlay {
  opacity: 1;
  padding: 1.5rem;
}

.year-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.zoom-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
}

.modern-photos h4 {
  font-size: 1.35rem;
  color: var(--ocean);
  margin-bottom: 1.25rem;
}

.modern-photos-grid .row {
  margin: 0 -8px;
}

.modern-photos-grid [class*="col-"] {
  padding: 0 8px;
}

.modern-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.modern-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.modern-photo {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.modern-photo-card:hover .modern-photo {
  transform: scale(1.06);
}

.modern-photo-card .photo-overlay {
  opacity: 0;
  padding: 1rem;
}

.modern-photo-card:hover .photo-overlay {
  opacity: 1;
}

@media (min-width: 768px) {
  .modern-photo {
    height: 180px;
  }
}

.ice-cream-badge span {
  display: inline-block;
  background: rgba(232, 213, 196, 0.6);
  color: var(--ocean);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  border: 1px solid var(--line);
}

/* ——— Features ——— */
.features-highlight {
  background: linear-gradient(180deg, #e8f0f4 0%, var(--surface-solid) 100%);
  position: relative;
  overflow: hidden;
}

.feature-card {
  contain: layout style;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

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

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-mid), var(--sunset));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, rgba(98, 164, 196, 0.2), rgba(232, 213, 196, 0.5));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(98, 164, 196, 0.25);
}

.feature-icon-wrap i {
  font-size: 1.65rem;
  color: var(--ocean);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--ocean);
}

.feature-card p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.time-badge,
.price-range,
.categories,
.ice-cream-varieties {
  background: rgba(232, 213, 196, 0.45);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ocean);
  display: inline-block;
  font-weight: 600;
  border: 1px solid var(--line);
}

.categories span {
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin: 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-mid);
}

.price-range span {
  margin: 0 0.15rem;
  font-weight: 700;
}

.price-range .faded {
  opacity: 0.28;
}

.section-badge {
  font-family: var(--font-ui);
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 6px 24px rgba(10, 77, 104, 0.25);
  border: none;
}

.section-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10, 77, 104, 0.32);
  color: #fff !important;
}

.section-padding {
  padding: 4rem 0;
}

.menu-preview,
.shop-section,
.kids-menu {
  padding: 5rem 0 !important;
}

section:not(:last-of-type) {
  border-bottom: none;
}

/* ——— Footer ——— */
footer,
.site-footer {
  background: linear-gradient(180deg, #050a14 0%, #020509 100%) !important;
  padding: 4.5rem 0 3.25rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 160, 86, 0.55),
    rgba(98, 164, 196, 0.45),
    rgba(212, 160, 86, 0.35),
    transparent
  );
  opacity: 0.85;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.02em;
}

footer h5,
.site-footer h5 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.48);
}

footer p,
.site-footer p,
footer a,
.site-footer a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.95rem;
}

footer a:hover,
.site-footer a:hover {
  color: var(--sunset-bright) !important;
}

footer .btn-outline-light,
.site-footer .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff !important;
  font-size: 0.7rem;
}

footer .btn-outline-light:hover,
.site-footer .btn-outline-light:hover {
  background: rgba(212, 160, 86, 0.2);
  border-color: var(--sunset);
  color: #fff !important;
}

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

.btn:focus-visible {
  outline-offset: 4px;
}

.opening-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

.site-footer .opening-note {
  color: rgba(255, 255, 255, 0.42) !important;
  opacity: 1;
}

/* ——— Modal ——— */
.modal-content {
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header .btn-close {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 0.65rem;
  margin: 0.5rem;
}

/* ——— MENU PAGE ——— */
body.page-menu {
  background: var(--surface-solid);
}

.page-menu .navbar {
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 0.9rem 0;
}

.page-menu .navbar-brand {
  color: var(--ocean) !important;
  text-shadow: none;
}

.page-menu .brand-text {
  color: var(--sunset) !important;
}

.page-menu .nav-link {
  color: var(--ink-muted) !important;
}

.page-menu .nav-link::after {
  background: linear-gradient(90deg, var(--ocean-mid), var(--sunset));
}

.page-menu .navbar-toggler {
  filter: none;
  border-color: var(--line);
}

@media (max-width: 991px) {
  .page-menu .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
  }
}

.page-menu .hero + .container {
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.hero--subpage {
  min-height: 52vh;
  min-height: 52dvh;
  padding-bottom: 3rem;
}

.page-menu .hero--subpage .hero-text {
  padding-top: 5.5rem;
}

.page-menu .hero::before {
  background:
    linear-gradient(165deg, rgba(6, 32, 48, 0.58) 0%, rgba(10, 77, 104, 0.38) 50%, rgba(12, 18, 34, 0.62) 100%),
    url("front.jpg") center / cover no-repeat;
}

.page-menu .menu-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  border: 1px solid var(--line);
  top: 88px;
}

.page-menu .menu-nav .nav {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.page-menu .menu-nav .nav-link {
  font-family: var(--font-ui);
  color: var(--ink-muted);
  padding: 0.65rem 1rem !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-menu .menu-nav .nav-link:hover,
.page-menu .menu-nav .nav-link.active {
  background: linear-gradient(135deg, rgba(10, 107, 138, 0.12), rgba(212, 160, 86, 0.15));
  color: var(--ocean);
  transform: translateY(-1px);
}

.page-menu .menu-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.page-menu .menu-section h2 {
  font-family: var(--font-display);
  color: var(--ocean);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgba(212, 160, 86, 0.35);
}

.page-menu .menu-item {
  background: var(--surface-solid);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.page-menu .menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(98, 164, 196, 0.35);
}

.page-menu .menu-item h5 {
  font-family: var(--font-body);
  color: var(--ocean);
  font-weight: 700;
  font-size: 1.02rem;
}

.page-menu .menu-item .description {
  color: var(--ink-muted);
}

.page-menu .dietary-info span {
  background: rgba(232, 213, 196, 0.55);
  color: var(--ocean-mid);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-menu .menu-footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(232, 240, 244, 0.9), rgba(244, 235, 227, 0.8));
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--line);
}

@media (max-width: 768px) {
  .experience-pod {
    margin-top: 1.5rem;
  }
  .hero-text {
    padding-top: 2rem;
  }
  .history-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
