/* ==========================================================================
   SORA SUSHI & SEAFOOD BUFFET — Main Stylesheet
   Modern luxury design · Ocean-blue brand palette · Natick, MA
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (from Sora logo) */
  --sora-blue: #1a9fd4;
  --sora-blue-deep: #0d7bb0;
  --navy-900: #071825;
  --navy-800: #0b2233;
  --navy-700: #10304a;
  --navy-600: #17415f;
  --gold: #c9a35c;
  --gold-light: #e0c48c;
  --ivory: #f7f4ee;
  --white: #ffffff;
  --text-dark: #21303c;
  --text-mid: #55676f;
  --text-light: #b8c8d2;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --shadow-soft: 0 18px 45px rgba(7, 24, 37, 0.14);
  --shadow-card: 0 10px 30px rgba(7, 24, 37, 0.35);
  --transition: 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--sora-blue-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sora-blue); }

ul { list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(201, 163, 92, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 163, 92, 0.5); color: var(--navy-900); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); color: var(--white); }

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}
.btn-navy:hover { background: var(--sora-blue-deep); color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(11, 34, 51, 0.35);
}
.btn-outline:hover { border-color: var(--sora-blue); color: var(--sora-blue-deep); }

.btn-sm { padding: 10px 20px; font-size: 0.72rem; }

.text-link {
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--sora-blue-deep);
  border-bottom: 1px solid rgba(26, 159, 212, 0.4);
  padding-bottom: 3px;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }

.center-cta { text-align: center; margin-top: 56px; }

/* ---------- Announcement Bar ---------- */
.announce-bar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700), var(--navy-900));
  color: var(--text-light);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.announce-bar a { color: var(--gold-light); font-weight: 500; }
.announce-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #3ddc84; margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 34, 51, 0.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(7, 24, 37, 0.1); background: rgba(247, 244, 238, 0.98); }

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo { height: 74px; width: auto; transition: height var(--transition); }
.site-header.scrolled .brand-logo { height: 58px; }

/* Header social icons */
.header-social { display: flex; align-items: center; gap: 6px; }
.header-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--navy-800);
  transition: all var(--transition);
}
.header-social a:hover {
  color: var(--white);
  background: var(--sora-blue-deep);
  border-color: var(--sora-blue-deep);
  transform: translateY(-2px);
}
.header-social svg { width: 25px; height: 25px; }
.header-social .show-mobile-inline { display: none; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--sora-blue-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy-800);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-900);
}

/* Hero slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img, .hero-slide video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide[data-type="image"].is-active img { animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

/* Hero loader (shown until first video can play) */
.hero-loader {
  position: absolute; inset: 0;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-900);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.hero-loader.hidden { opacity: 0; visibility: hidden; }
.hero-loader-ring {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(201, 163, 92, 0.25);
  border-top-color: var(--gold-light);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero slideshow dots */
.hero-slide-dots {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px;
  z-index: 4;
}
.hero-slide-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.hero-slide-dots button.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.35);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(7, 24, 37, 0.25) 0%, rgba(7, 24, 37, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 24, 37, 0.65) 0%, rgba(7, 24, 37, 0.25) 35%, rgba(7, 24, 37, 0.55) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 120px 24px 140px; }

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

/* Hero title line entrance */
.ht-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: htRise 1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s forwards;
}
.ht-line-2 { animation-delay: 0.5s; }
@keyframes htRise { to { opacity: 1; transform: translateY(0); } }

/* Scroll hint */
.hero-scroll-hint {
  margin: 44px auto 0;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}
.hero-scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold-light);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 38px;
  font-weight: 300;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}
.hero-badge {
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; flex-direction: column;
}
.hero-badge:last-child { border-right: none; }
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* seamless shadow-gradient fade between hero and next block */
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 140px;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0) 0%, var(--ivory) 100%);
  z-index: 3;
  pointer-events: none;
}

/* ---------- Sections (shared) ---------- */
.section { position: relative; padding: 110px 0; }

/* seamless shadow gradients between content blocks */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(7, 24, 37, 0.06) 0%, rgba(7, 24, 37, 0) 100%);
  pointer-events: none;
}
.dark-section::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sora-blue-deep);
  margin-bottom: 14px;
}
.section-kicker.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-800);
}

.title-rule { margin: 22px 0 26px; }
.title-rule.center { display: flex; justify-content: center; }
.title-rule span {
  display: block;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  position: relative;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-lede { color: var(--text-mid); font-size: 1.05rem; }

.dark-section { background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-900) 100%); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-kicker { color: var(--gold-light); }
.dark-section .section-lede { color: var(--text-light); }

/* ---------- Intro Section ---------- */
.intro-section { background: var(--ivory); overflow: hidden; }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-text p:not(.section-kicker) { color: var(--text-mid); margin-bottom: 18px; font-size: 1.02rem; }
.intro-text .text-link { display: inline-block; margin-top: 10px; }

.intro-media { position: relative; padding-bottom: 90px; }

.intro-photo-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-left: auto;
}
.intro-photo-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.intro-photo-main:hover img { transform: scale(1.045); }

.intro-photo-accent {
  position: absolute;
  bottom: 20px; left: 0;
  width: 58%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
}
.intro-photo-accent img { width: 100%; height: 100%; object-fit: cover; }

.intro-stamp {
  position: absolute;
  top: -18px; right: -14px;
  background: var(--navy-800);
  color: var(--gold-light);
  border-radius: 50%;
  width: 112px; height: 112px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 163, 92, 0.45);
}

/* ---------- Stations ---------- */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.station-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.station-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201, 163, 92, 0.4);
}

.station-media { position: relative; aspect-ratio: 10 / 10; overflow: hidden; }
.station-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.station-card:hover .station-media img { transform: scale(1.06); }
.station-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,37,0) 55%, rgba(7,24,37,0.55) 100%);
}

.station-num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  background: rgba(7, 24, 37, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 163, 92, 0.4);
  border-radius: 999px;
  padding: 4px 16px;
  letter-spacing: 0.2em;
  z-index: 1;
}

.station-body { padding: 28px 30px 32px; }
.station-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.station-body p { color: var(--text-light); font-size: 0.96rem; margin-bottom: 18px; }

.station-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.station-tags li {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 163, 92, 0.35);
  border-radius: 999px;
  padding: 4px 13px;
}

/* ---------- Parallax Band ---------- */
.parallax-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/interior-luxury.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,37,0.78) 0%, rgba(7,24,37,0.5) 50%, rgba(7,24,37,0.78) 100%);
}
.parallax-content { position: relative; z-index: 1; padding: 90px 24px; }
.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 30px;
}

/* ---------- Menu Preview ---------- */
.menu-section { background: var(--ivory); }

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.menu-col-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(11, 34, 51, 0.14);
  display: flex; align-items: center; gap: 10px;
}
.menu-ico { font-size: 1.3rem; }

.menu-list li { margin-bottom: 22px; }
.mi-head { display: flex; align-items: baseline; gap: 10px; }
.mi-name { font-weight: 500; font-size: 1.02rem; color: var(--text-dark); white-space: nowrap; }
.mi-dots { flex: 1; border-bottom: 1px dotted rgba(11, 34, 51, 0.3); transform: translateY(-4px); }
.mi-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sora-blue-deep);
  background: rgba(26, 159, 212, 0.1);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.mi-tag.chef { color: #9a6f22; background: rgba(201, 163, 92, 0.16); }
.menu-list p { font-size: 0.88rem; color: var(--text-mid); margin-top: 4px; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 44px 34px 38px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(201, 163, 92, 0.45); box-shadow: var(--shadow-card); }

.price-card.featured {
  background: linear-gradient(180deg, rgba(201, 163, 92, 0.12) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(201, 163, 92, 0.55);
}

.price-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-label {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
}
.price-time { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin: 6px 0 22px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 4.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.price-amount sup { font-size: 1.8rem; vertical-align: super; margin-right: 2px; }
.price-amount span { font-size: 2rem; }
.price-per { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-light); margin: 8px 0 24px; }

.price-list { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.price-list li { color: var(--text-light); font-size: 0.94rem; padding: 5px 0; }

.pricing-notes {
  margin-top: 46px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.pricing-notes p { margin-bottom: 8px; }
.pricing-notes a { color: var(--gold-light); }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--ivory); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: 0 8px 28px rgba(7, 24, 37, 0.08);
  border: 1px solid rgba(11, 34, 51, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.2em; margin-bottom: 16px; }
.review-card p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 20px;
}
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { font-size: 0.92rem; letter-spacing: 0.06em; color: var(--navy-800); }
.review-card footer span { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); }

/* ---------- Visit / Hours ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}

.visit-info .section-title { color: var(--white); }

.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 300;
  color: var(--text-light);
  font-size: 0.98rem;
}
.hours-table th { color: var(--white); font-weight: 500; letter-spacing: 0.06em; }
.hours-table td { text-align: right; }

.visit-note { font-size: 0.84rem; color: var(--text-light); margin-bottom: 26px; }

.visit-address { font-style: normal; margin-bottom: 30px; }
.visit-address p { color: var(--text-light); margin-bottom: 4px; }
.visit-address strong { color: var(--white); font-size: 1.08rem; }
.visit-address a { color: var(--gold-light); font-weight: 500; }

.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.visit-map iframe { min-height: 480px; filter: saturate(0.85); }

/* ---------- Footer ---------- */
.site-footer {
  background: #050f18;
  color: var(--text-light);
  padding: 80px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo { height: 64px; width: auto; margin-bottom: 20px; opacity: 0.95; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: 22px; }

.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201, 163, 92, 0.35);
  padding-bottom: 2px;
}
.footer-social a:hover { color: var(--white); border-color: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col li { padding: 5px 0; font-size: 0.92rem; }
.footer-col a { color: var(--text-light); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(184, 200, 210, 0.6);
}

/* ---------- Back to Top ---------- */
.back-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 92, 0.5);
  background: var(--navy-800);
  color: var(--gold-light);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 900;
}
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--sora-blue-deep); color: var(--white); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease var(--d, 0s), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0) translateX(0); }

.reveal-left { transform: translateX(-44px) translateY(0); }
.reveal-right { transform: translateX(44px) translateY(0); }

/* Floating decorative circles */
.floating-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26, 159, 212, 0.18);
}
.deco-1 {
  width: 320px; height: 320px;
  top: -80px; right: -100px;
  animation: floatY 9s ease-in-out infinite;
}
.deco-2 {
  width: 180px; height: 180px;
  bottom: 40px; left: -70px;
  border-color: rgba(201, 163, 92, 0.22);
  animation: floatY 7s ease-in-out infinite reverse;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }

/* Gold shimmer sweep on gold buttons */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.4s ease-in-out infinite;
}
@keyframes shimmer { 0% { left: -80%; } 55% { left: 130%; } 100% { left: 130%; } }

/* Station number badge subtle pulse */
.station-num { animation: numGlow 3s ease-in-out infinite; }
@keyframes numGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201, 163, 92, 0); }
  50% { box-shadow: 0 0 18px rgba(201, 163, 92, 0.45); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img, .ht-line, .btn-gold::after, .station-num, .deco-circle, .hero-scroll-hint span { animation: none !important; }
  .ht-line { opacity: 1; transform: none; }
  .parallax-band { background-attachment: scroll; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .stations-grid { gap: 24px; }
  .menu-columns { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 380px; }
  .parallax-band { background-attachment: scroll; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(78vw, 340px);
    height: 100vh;
    background: var(--navy-900);
    padding: 110px 40px 40px;
    transition: right 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 1001;
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 8px; }
  .main-nav a { color: var(--text-light); font-size: 1rem; display: block; padding: 12px 0; }
  .main-nav a.active, .main-nav a:hover { color: var(--gold-light); }
  .nav-toggle { display: flex; z-index: 1002; }
  .nav-toggle.open span { background: var(--white); }
  /* Mobile: hide reserve/phone buttons, show social icons + call icon */
  .hide-mobile { display: none; }
  .header-social .show-mobile-inline { display: inline-flex; }
  .header-social { gap: 4px; }
  .header-social a { width: 36px; height: 36px; }
  .hero-slide-dots { right: 14px; }

  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-photo-main { margin: 0 auto; }
  .stations-grid { grid-template-columns: 1fr; }
  .hero-badge { padding: 0 20px; margin-bottom: 14px; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .menu-columns { grid-template-columns: 1fr; }
  .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 84vh; }
  .hero-content { padding: 90px 20px 110px; }
  .hero-badges { border-top: none; padding-top: 6px; }
  .hero-badge { border-right: none; padding: 8px 14px; }
  .announce-bar { font-size: 0.68rem; }
  .brand-logo { height: 60px; }
  .site-header.scrolled .brand-logo { height: 50px; }
  .header-inner { padding: 10px 16px; gap: 10px; }
  .hero-scroll-hint { display: none; }
  .intro-stamp { width: 92px; height: 92px; top: -10px; right: 0; }
}
