/* ================================
   FORKS & GREEN — Main Stylesheet
   ================================ */

:root {
  --green: #3a5a40;
  --green-dark: #2d4630;
  --green-light: #6b9471;
  --green-pale: #e8f0ea;
  --cream: #faf7f2;
  --warm-white: #f5f0e8;
  --charcoal: #1c1c1c;
  --mid-grey: #6b6b6b;
  --light-grey: #d8d4cc;
  --gold: #b8956a;
  --gold-light: #d4a97a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green); }

.section-desc {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }
.section-header--light .section-title { color: #fff; }
.section-header--light .section-desc { color: rgba(255,255,255,0.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled state — solid cream bar, dark text */
.nav.scrolled {
  background: var(--cream) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.nav__logo a { display: flex; align-items: center; }

.nav__logo img {
  height: 46px;
  width: auto;
  padding: 6px 0;
  display: block;
}

/* Desktop nav links — white over hero */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links li a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease;
  position: relative;
}

.nav__links li a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__links li a:hover::after { width: 100%; }

/* Scrolled — switch links to dark */
.nav.scrolled .nav__links li a {
  color: var(--charcoal) !important;
}
.nav.scrolled .nav__links li a:hover {
  color: var(--green) !important;
}

.nav__cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 2px;
}
.nav__cta:hover { background: var(--green-dark) !important; }
.nav.scrolled .nav__cta { color: #fff !important; }
.nav__cta::after { display: none !important; }

/* Burger button */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  width: 40px;
  height: 40px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
/* Dark bars when nav is scrolled */
.nav.scrolled .nav__toggle span {
  background: var(--charcoal);
}
/* X animation when open */
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 20, 12, 0.62) 0%,
    rgba(10, 20, 12, 0.35) 60%,
    rgba(10, 20, 12, 0.55) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 780px;
  animation: heroFadeUp 1s ease 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold-light); }

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

.hero__dots {
  position: absolute;
  bottom: 36px; right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: #fff; border-color: #fff; }

/* ── BAND ── */
.band {
  background: var(--green);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.band__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: ticker 30s linear infinite;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.band__sep { color: var(--gold-light); font-size: 0.9rem; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MENU SECTION ── */
.menu {
  padding: 120px 0;
  background: var(--cream);
}

.menu__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.menu__card {
  background: #fff;
  border: 1px solid var(--light-grey);
  padding: 48px 36px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu__card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.menu__card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.menu__card:hover::before { transform: scaleX(1); }

.menu__card--featured {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.menu__card--featured::before { background: var(--gold); }
.menu__card--featured .menu__link { color: var(--gold-light); }
.menu__card--featured p { color: rgba(255,255,255,0.8); }

.menu__card-icon { font-size: 2rem; margin-bottom: 20px; }
.menu__card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.menu__card p { font-size: 0.95rem; color: var(--mid-grey); line-height: 1.7; margin-bottom: 20px; }
.menu__card--featured p { color: rgba(255,255,255,0.78); }

.menu__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  transition: gap var(--transition);
}
.menu__link:hover { text-decoration: underline; }

.menu__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu__highlight-img {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}
.menu__highlight-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.menu__highlight-img:hover img { transform: scale(1.06); }

/* ── BOOK ── */
.book {
  background: var(--warm-white);
  padding: 120px 0;
  border-top: 1px solid var(--light-grey);
}

.book__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.book__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
}

.book__text p {
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 36px;
}

.book__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 28px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--light-grey);
}

.book__info div strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.book__info div, .book__info a {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.book__info a:hover { color: var(--green); text-decoration: underline; }

/* ── Parking card in booking section — LOUD ── */
.book__info-parking {
  grid-column: 1 / -1;
  background: var(--green);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.book__parking-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem !important;
  font-weight: 400;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #fff !important;
  margin-bottom: 4px;
  line-height: 1.1;
}

.book__parking-body p {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 10px;
}

.book__parking-link,
.book__info .book__parking-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  border-bottom: 1.5px solid rgba(212,169,122,0.6);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
}
.book__parking-link:hover,
.book__info .book__parking-link:hover {
  color: #fff !important;
  border-color: #fff;
  text-decoration: none !important;
}

/* ── Parking section ── */
.parking {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--light-grey);
}

.parking__header {
  margin-bottom: 56px;
}

.parking__badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.parking__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.1;
}

.parking__sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 560px;
  line-height: 1.7;
}

.parking__map-hint {
  font-size: 0.85rem;
  color: var(--mid-grey);
  margin-bottom: 32px;
  font-style: italic;
}

.parking__map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--light-grey);
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.parking__maps-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.parking__maps-link:hover { opacity: 0.75; }
.parking__maps-link--paid { color: var(--charcoal); }

.parking__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.parking__card {
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.parking__card--free {
  background: var(--green);
  color: #fff;
}

.parking__card--paid {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  color: var(--charcoal);
}

.parking__card-top {
  margin-bottom: 16px;
}

.parking__tag {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.parking__tag--paid {
  background: var(--light-grey);
  color: var(--charcoal);
}

.parking__card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}
.parking__card--free h3 { color: #fff; }
.parking__card--paid h3 { color: var(--charcoal); }

.parking__rule {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.parking__card--paid .parking__rule {
  border-bottom-color: var(--light-grey);
}
.parking__card--free .parking__rule { color: rgba(255,255,255,0.9); }

.parking__caveat {
  background: rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.parking__card--paid .parking__caveat {
  background: rgba(0,0,0,0.04);
  color: var(--mid-grey);
}
.parking__card--free .parking__caveat { color: rgba(255,255,255,0.85); }
.parking__card--free .parking__caveat strong { color: #fff; }

.parking__caveat-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.7;
}

.parking__tip {
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: italic;
}
.parking__card--free .parking__tip { color: rgba(255,255,255,0.7); }
.parking__card--paid .parking__tip { color: var(--mid-grey); }

/* Responsive */
@media (max-width: 768px) {
  .parking__grid { grid-template-columns: 1fr; }
  .parking { padding: 72px 0; }
  .book__info-parking { flex-direction: column; align-items: flex-start; gap: 12px; }
  .book__parking-body strong { font-size: 1.3rem !important; }
}

@media (max-width: 480px) {
  .parking__card { padding: 28px 24px; }
}

.book__widget {
  background: #fff;
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
  border: 1px solid var(--light-grey);
}

.thefork-iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 600px;
}

/* Tablet */
@media only screen and (max-width: 768px) {
  .thefork-iframe { min-height: 900px; }
}
/* Small mobile */
@media only screen and (max-width: 516px) {
  .thefork-iframe { min-height: 1000px; }
}
/* Very small phones */
@media only screen and (max-width: 380px) {
  .thefork-iframe { min-height: 1100px; }
}

/* ── STORY ── */
.story {
  padding: 120px 0;
  background: var(--cream);
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__images {
  position: relative;
}

.story__img {
  border-radius: 4px;
  overflow: hidden;
}

.story__img--main {
  width: 85%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.story__img--secondary {
  position: absolute;
  bottom: -36px; right: 0;
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--cream);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.story__text p {
  color: var(--mid-grey);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.story__text p em { font-style: italic; color: var(--charcoal); font-family: var(--font-display); font-size: 1.15em; }

.story__text .btn { margin-top: 12px; }

/* ── REVIEWS ── */
.reviews {
  padding: 120px 0;
  background: var(--green-dark);
}

.reviews .section-label { color: var(--gold-light); }
.reviews .section-title { color: #fff; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 32px 28px;
  transition: var(--transition);
}
.review:hover { background: rgba(255,255,255,0.1); }

.review__stars {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review p {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.review span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.reviews__cta { text-align: center; }
.reviews .btn--outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.reviews .btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ── FIND US ── */
.find-us {
  padding: 120px 0;
  background: var(--cream);
}

.find-us__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.find-us__info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 40px;
}

.find-us__detail {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-grey);
}

.find-us__detail strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.find-us__detail p, .find-us__detail a {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.find-us__detail a:hover { color: var(--green); text-decoration: underline; }

.find-us__transport {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.find-us__transport div strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.find-us__transport div p {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.5;
}

.find-us__map {
  border-radius: 4px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid var(--light-grey);
}

/* ── FRANCHISE ── */
.franchise {
  background: var(--green-pale);
  padding: 80px 0;
  border-top: 1px solid rgba(58,90,64,0.15);
}

.franchise__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.franchise__inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.franchise__inner .section-label { margin-bottom: 8px; }

.franchise__inner p {
  color: var(--mid-grey);
  font-size: 0.97rem;
  max-width: 480px;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 80px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--gold-light); }

.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── BOOKING CONFIRMATION POPUP ── */
.booking-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.booking-popup.visible {
  display: flex;
}

.booking-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  cursor: pointer;
}

.booking-popup__box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: 8px;
  padding: 48px 40px 40px;
  max-width: 460px;
  width: calc(100% - 40px);
  text-align: center;
  animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.booking-popup__close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--mid-grey);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}
.booking-popup__close:hover { color: var(--charcoal); }

.booking-popup__icon {
  margin-bottom: 20px;
}

.booking-popup__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.booking-popup__message {
  font-size: 0.97rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 32px;
}

.booking-popup__btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.booking-popup__btn:hover { background: var(--green-dark); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
  .menu__cards { grid-template-columns: 1fr 1fr; }
  .menu__highlights { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .book__inner { gap: 48px; }
  .story__inner { gap: 48px; }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  /* Container */
  .container { padding: 0 18px; }

  /* ── Nav ── */
  .nav { padding: 0 18px; height: var(--nav-height); }
  .nav__logo img { height: 38px; padding: 4px 0; }

  .nav__toggle { display: flex; z-index: 10; }

  /* Always white on hero, charcoal when scrolled or menu open */
  .nav__toggle span { background: #fff; }
  .nav.scrolled .nav__toggle span { background: var(--charcoal); }
  .nav__toggle.active span { background: var(--charcoal); }

  .nav__links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  .nav__links.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 24px 24px;
  }
  .nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--light-grey);
  }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links li a {
    display: block;
    color: var(--charcoal) !important;
    font-size: 0.9rem;
    padding: 16px 0;
    letter-spacing: 0.08em;
  }
  .nav__links li a::after { display: none; }
  .nav__cta {
    display: block !important;
    background: var(--green) !important;
    color: #fff !important;
    margin-top: 12px;
    padding: 14px 0 !important;
    text-align: center;
    border-radius: 2px;
    width: 100%;
  }

  /* ── Hero ── */
  .hero { height: 100svh; min-height: 580px; }
  .hero__content { padding: 0 16px; }
  .hero__eyebrow { font-size: 0.65rem; margin-bottom: 14px; }
  .hero__title { font-size: clamp(2.6rem, 11vw, 4rem); margin-bottom: 16px; }
  .hero__sub { font-size: 0.95rem; margin-bottom: 32px; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero__scroll-hint { display: none; }
  .hero__dots { bottom: 24px; right: 20px; }

  /* ── Ticker band ── */
  .band { padding: 12px 0; }
  .band__track { font-size: 0.68rem; gap: 20px; }

  /* ── Section globals ── */
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .section-header { margin-bottom: 40px; }

  /* ── Menu ── */
  .menu { padding: 72px 0; }
  .menu__cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .menu__card { padding: 36px 28px; }
  .menu__highlights { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* ── Book ── */
  .book { padding: 72px 0; }
  .book__inner { grid-template-columns: 1fr; gap: 36px; }
  .book__text h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .book__text p { margin-bottom: 24px; }
  .book__info {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
  }
  .book__info div:not(.book__info-parking) {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-grey);
  }
  .book__info-parking {
    padding: 20px 24px;
    margin-top: 8px;
    border-bottom: none;
  }
  .book__info div:first-child { padding-top: 0; }
  .book__widget { border-radius: 4px; }
  .book__text .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Story ── */
  .story { padding: 72px 0; }
  .story__inner { grid-template-columns: 1fr; gap: 0; }
  .story__images { margin-bottom: 48px; }
  .story__img--main { width: 100%; aspect-ratio: 4/3; }
  .story__img--secondary {
    position: static;
    width: 55%;
    margin-top: -40px;
    margin-left: auto;
    border: 5px solid var(--cream);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .story__text .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Reviews ── */
  .reviews { padding: 72px 0; }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .review { padding: 28px 22px; }
  .reviews__cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Find Us ── */
  .find-us { padding: 72px 0; }
  .find-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .find-us__info h2 { font-size: clamp(2rem, 7vw, 2.6rem); margin-bottom: 28px; }
  .find-us__map { height: 300px; order: -1; /* map first on mobile */ }
  .find-us__transport { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
  .find-us__info .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Franchise ── */
  .franchise { padding: 60px 0; }
  .franchise__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .franchise__inner h2 { font-size: 1.8rem; }
  .franchise__inner .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Footer ── */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 36px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* Small phones: 480px and below */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: clamp(2.2rem, 12vw, 3rem); }
  .hero__sub { font-size: 0.9rem; }

  .menu__highlights { grid-template-columns: 1fr; }
  .menu__card { padding: 28px 20px; }
  .menu__card h3 { font-size: 1.5rem; }

  .find-us__transport { grid-template-columns: 1fr; }

  .book__info div { font-size: 0.92rem; }

  .review p { font-size: 1rem; }

  .franchise__inner h2 { font-size: 1.6rem; }

  /* Ensure all full-width buttons are comfortable tap targets */
  .btn { padding: 16px 28px; min-height: 52px; }
}
