/* ============================================================
   COSTA DEL SOL — Spanish Tapas Bar & Restaurant, Horley
   Design system + layout. Vanilla CSS, mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --red-900: #5e0f0a;
  --red-800: #7a160f;
  --red-700: #8c1c13;   /* primary */
  --red-600: #a52218;
  --red-500: #c0392b;
  --terracotta: #d1603a;
  --orange: #e08a3c;
  --gold: #c8a047;
  --gold-soft: #e3c77e;

  --cream: #fbf6ec;
  --cream-2: #f5ecdc;
  --sand: #efe3cf;
  --ink: #2a1410;
  --ink-soft: #5b4038;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--cream);
  --text: var(--ink);
  --muted: var(--ink-soft);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 16px rgba(60, 12, 6, 0.08);
  --shadow-md: 0 18px 40px -18px rgba(60, 12, 6, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(60, 12, 6, 0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--red-700); color: #fff; padding: 0.6rem 1rem; border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-600);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-soft); }

.section__head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title--light { color: var(--cream); }
.section__intro { margin-top: 1.1rem; color: var(--muted); font-size: 1.075rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--red-700);
  letter-spacing: 0.01em;
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red-700);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--red-900);
  transform: scaleX(0); transform-origin: left; border-radius: inherit;
  transition: transform 0.45s var(--ease);
}
.btn:hover::after { transform: scaleX(1); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--red-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--ghost { background: rgba(140,28,19,0.08); color: var(--red-700); }
.btn--ghost::after { background: rgba(140,28,19,0.16); }
.btn--ghost:hover { transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); }
.btn--outline-light::after { background: #fff; }
.btn--outline-light:hover { color: var(--red-800); transform: translateY(-3px); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-900), var(--red-700) 55%, var(--red-800));
  color: #fbe9d9;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 0.8rem; padding: 0.5rem 0; flex-wrap: wrap; }
.topbar__item { white-space: nowrap; }
.topbar__link { font-weight: 700; color: #fff; transition: color 0.2s; }
.topbar__link:hover { color: var(--gold-soft); }
.topbar__dot { color: var(--gold); }
@media (max-width: 620px) { .topbar__dot:nth-of-type(1), .topbar__item:nth-of-type(2) { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding-block: 0.6rem;
  background: transparent;
}
.header.is-scrolled {
  background: rgba(251,246,236,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(140,28,19,0.08), var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--red-700); }
.brand__mark { display: grid; place-items: center; color: var(--red-700); transition: transform 0.5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-12deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); letter-spacing: 0.01em; }
.brand__sub { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--red-600); font-weight: 600; margin-top: 2px; }

/* header transparent-on-hero state (light text) */
.header:not(.is-scrolled) .brand__name { color: #fff; }
.header:not(.is-scrolled) .brand__mark,
.header:not(.is-scrolled) .brand { color: #fff; }
.header:not(.is-scrolled) .brand__sub { color: var(--gold-soft); }
.header:not(.is-scrolled) .nav a { color: rgba(255,255,255,0.9); }
.header:not(.is-scrolled) .header__call { background: rgba(255,255,255,0.14); color: #fff; }

.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); position: relative; padding: 0.4rem 0;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--red-600); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--red-700); }
.header:not(.is-scrolled) .nav a:hover { color: #fff; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 0.6rem; }

@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
}

/* Nav toggle (hamburger) */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s;
}
.header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.nav-open .nav-toggle span { background: #fff !important; }
@media (max-width: 900px) { .nav-toggle { display: block; } }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: linear-gradient(160deg, var(--red-800), var(--red-900));
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at calc(100% - 34px) 34px);
  transition: clip-path 0.6s var(--ease);
  pointer-events: none;
}
body.nav-open .mobile-nav { clip-path: circle(150% at calc(100% - 34px) 34px); pointer-events: auto; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; width: min(84vw, 340px); }
.mobile-nav nav a:not(.btn) { font-family: var(--font-display); font-size: 2rem; color: #fff; font-weight: 500; }
.mobile-nav .btn { margin-top: 0.4rem; }
.mobile-nav .btn--ghost { background: rgba(255,255,255,0.12); color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; margin-top: -84px; padding-top: 84px; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__img {
  width: 100%; height: 118%; object-fit: cover; object-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(46,8,4,0.55) 0%, rgba(46,8,4,0.25) 35%, rgba(46,8,4,0.55) 75%, rgba(46,8,4,0.9) 100%),
    radial-gradient(120% 80% at 20% 30%, rgba(140,28,19,0.35), transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; color: #fff; max-width: 860px; padding-block: 5rem; }
.hero__eyebrow {
  font-size: 0.8rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-soft); margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
}
.hero__title span { display: block; }
.hero__title--accent {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-soft), var(--orange) 40%, var(--gold) 90%);
  -webkit-background-clip: text; background-clip: text;
  font-style: italic;
}
.hero__lede { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 40ch; color: rgba(255,255,255,0.9); margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem; color: rgba(255,255,255,0.82);
}
.hero__trust strong { color: var(--gold-soft); font-weight: 700; }

.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 26px; height: 44px; border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px; display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll-line { width: 3px; height: 8px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--red-700); color: var(--cream);
  padding: 0.9rem 0; overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(255,255,255,0.12);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 2rem;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; font-weight: 500;
  animation: marquee 32s linear infinite;
}
.marquee__dot { color: var(--gold); font-size: 0.9rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.about__media { position: relative; }
.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.about__img-wrap:hover img { transform: scale(1.06); }
.about__img-wrap:first-child { aspect-ratio: 4/5; }
.about__img-wrap--float {
  position: absolute; bottom: -2.5rem; right: -2rem; width: 46%; aspect-ratio: 1/1;
  border: 6px solid var(--cream);
}
.about__badge {
  position: absolute; top: -1.6rem; left: -1.6rem;
  background: var(--red-700); color: var(--cream);
  width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; line-height: 1.15;
  box-shadow: var(--shadow-md); transform: rotate(-8deg);
  border: 2px solid var(--gold);
}
.about__badge-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold-soft); }
.about__badge-year { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }

.about__body p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }
.about__body .section__title { margin-bottom: 1.4rem; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.4rem; margin: 1.8rem 0; }
.about__facts li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.about__facts-icon { color: var(--gold); }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; margin-bottom: 3rem; }
  .about__facts { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: linear-gradient(180deg, var(--cream), var(--cream-2)); border-block: 1px solid var(--sand); padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 0.35rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; color: var(--red-700); line-height: 1; }
.stat__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--muted); }
@media (max-width: 620px) { .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg); }
.menu__tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-pill);
  padding: 0.4rem; width: fit-content; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-sm);
}
.menu__tab {
  padding: 0.7rem 1.4rem; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.92rem;
  color: var(--ink-soft); position: relative; transition: color 0.3s var(--ease);
}
.menu__tab::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--red-700); transform: scale(0.6); opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.menu__tab.is-active { color: #fff; }
.menu__tab.is-active::before { transform: scale(1); opacity: 1; }
.menu__tab:not(.is-active):hover { color: var(--red-700); }

.menu__panels { max-width: 860px; margin-inline: auto; }
.menu__panel { display: none; }
.menu__panel.is-active { display: block; animation: panelIn 0.5s var(--ease) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.menu__list { display: grid; gap: 0.4rem; }
.menu__item {
  padding: 1.05rem 1.2rem; border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}
.menu__item:hover { background: var(--white); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.menu__item-head { display: flex; align-items: baseline; gap: 0.6rem; }
.menu__name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.menu__dots { flex: 1; border-bottom: 2px dotted var(--sand); transform: translateY(-4px); }
.menu__price { font-weight: 700; color: var(--red-700); font-size: 1.05rem; white-space: nowrap; }
.menu__desc { display: block; color: var(--muted); font-size: 0.95rem; margin-top: 0.15rem; max-width: 52ch; }
.menu__tag {
  display: inline-block; margin-top: 0.5rem; font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 800; color: var(--red-700);
  background: rgba(200,160,71,0.18); padding: 0.2rem 0.6rem; border-radius: var(--radius-pill);
}

.menu__foot { text-align: center; margin-top: 3rem; }
.menu__foot p { color: var(--muted); font-style: italic; margin-bottom: 1.4rem; font-family: var(--font-display); font-size: 1.15rem; }
.menu__foot-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SIGNATURE DISHES
   ============================================================ */
.signature { background: linear-gradient(165deg, var(--red-800), var(--red-900)); color: var(--cream); position: relative; overflow: hidden; }
.signature::before {
  content: ""; position: absolute; inset: 0; opacity: 0.14; pointer-events: none;
  background-image: radial-gradient(circle at 15% 20%, var(--orange), transparent 40%), radial-gradient(circle at 85% 80%, var(--gold), transparent 45%);
}
.signature__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dish {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.dish:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(200,160,71,0.5); }
.dish__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.1); }
.dish__badge {
  position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2;
  background: var(--gold); color: var(--red-900); font-size: 0.66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}
.dish__body { padding: 1.4rem 1.4rem 1.6rem; }
.dish__name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin-bottom: 0.5rem; }
.dish__desc { font-size: 0.92rem; color: rgba(251,246,236,0.75); margin-bottom: 1rem; }
.dish__price { font-weight: 800; color: var(--gold-soft); font-size: 1.15rem; }
@media (max-width: 960px) { .signature__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .signature__grid { grid-template-columns: 1fr; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg); }
.reviews__rating { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.4rem; flex-wrap: wrap; justify-content: center; }
.reviews__stars { color: var(--gold); letter-spacing: 0.1em; font-size: 1.2rem; }
.reviews__score { color: var(--muted); font-size: 0.95rem; }
.reviews__score strong { color: var(--ink); font-size: 1.1rem; }
.reviews__glogo { display: inline-block; }

.reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 960px; margin-inline: auto; }
.review {
  background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.review__stars { color: var(--gold); letter-spacing: 0.08em; }
.review__src { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
.review__text { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin-bottom: 1.3rem; font-weight: 500; }
.review__by { display: flex; align-items: center; gap: 0.8rem; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c, var(--red-700)); color: #fff; font-weight: 800; font-size: 1.1rem;
  font-family: var(--font-display); flex-shrink: 0;
}
.review__by strong { display: block; font-size: 0.95rem; }
.review__meta { font-size: 0.78rem; color: var(--muted); }
.reviews__cta { text-align: center; margin-top: 3rem; }
@media (max-width: 720px) { .reviews__grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOOKING
   ============================================================ */
.book { position: relative; color: var(--cream); overflow: hidden; }
.book__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(46,8,4,0.86), rgba(46,8,4,0.92)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=80") center/cover fixed;
}
.book__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.book__lede { color: rgba(251,246,236,0.82); font-size: 1.1rem; margin: 1rem 0 1.8rem; max-width: 46ch; }
.book__perks { display: grid; gap: 0.7rem; margin-bottom: 2rem; }
.book__perks li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; }
.book__perks span { color: var(--gold); }
.book__call { display: flex; flex-direction: column; gap: 0.1rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.18); }
.book__call-label { font-size: 0.85rem; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.book__call-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; transition: color 0.25s; width: fit-content; }
.book__call-num:hover { color: var(--gold-soft); }

.book__form {
  background: rgba(251,246,236,0.98); color: var(--ink);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(200,160,71,0.4);
}
.book__form-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 1.4rem; color: var(--ink); }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.field input, .field select {
  font-family: inherit; font-size: 1rem; padding: 0.85rem 1rem;
  border: 1.5px solid var(--sand); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--red-600); box-shadow: 0 0 0 4px rgba(192,57,43,0.14); }
.field input.invalid, .field select.invalid { border-color: var(--red-500); box-shadow: 0 0 0 4px rgba(192,57,43,0.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.book__form .btn { margin-top: 0.5rem; }
.book__form-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 0.9rem; }
.book__form-note.success { color: #1f7a44; font-weight: 700; }

@media (max-width: 860px) { .book__grid { grid-template-columns: 1fr; } .book__bg { background-attachment: scroll; } }

/* ============================================================
   VISIT / LOCATION
   ============================================================ */
.visit { background: var(--bg); }
.visit__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.visit__info { display: grid; gap: 1rem; align-content: start; }
.visit__card { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease); }
.visit__card:hover { transform: translateY(-4px); }
.visit__card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; color: var(--ink); }
.visit__card p { color: var(--muted); }
.visit__hours { display: grid; gap: 0.4rem; }
.visit__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.95rem; color: var(--muted); }
.visit__hours li span:first-child { font-weight: 700; color: var(--ink); }
.visit__hours-note { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); font-style: italic; }
.visit__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.4rem; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; border: 1px solid var(--sand); }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; filter: saturate(1.05); }
@media (max-width: 860px) { .visit__grid { grid-template-columns: 1fr; } .visit__map { min-height: 320px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: linear-gradient(180deg, var(--red-900), #3d0806); color: rgba(251,246,236,0.8); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand__name--footer { font-size: 2rem; color: #fff; display: block; margin-bottom: 0.9rem; }
.footer__tag { max-width: 34ch; font-size: 0.95rem; line-height: 1.7; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer__social-link {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: #fff; transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__social-link:hover { background: var(--gold); color: var(--red-900); transform: translateY(-3px); }
.footer__title { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.1rem; font-weight: 800; }
.footer__col a, .footer__col p { display: block; color: rgba(251,246,236,0.78); font-size: 0.95rem; margin-bottom: 0.6rem; transition: color 0.25s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__hours { display: grid; gap: 0.5rem; }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.footer__hours li span:first-child { font-weight: 700; color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.4rem; font-size: 0.82rem; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__made span { color: var(--red-500); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  display: none; gap: 0.6rem; padding: 0.7rem;
  background: rgba(251,246,236,0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand); box-shadow: 0 -6px 20px rgba(60,12,6,0.1);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (max-width: 700px) { .mobile-cta { display: flex; } body { padding-bottom: 4.5rem; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: calc(var(--d, 0) * 90ms); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
[data-delay="1"] { --d: 1; } [data-delay="2"] { --d: 2; } [data-delay="3"] { --d: 3; }
[data-delay="4"] { --d: 4; } [data-delay="5"] { --d: 5; } [data-delay="6"] { --d: 6; }
