/* ==========================================================================
   CAFE ROMA — St Albans
   Editorial rebuild: ink + cream + antique gold
   ========================================================================== */

:root {
  --ink: #0b1426;
  --ink-2: #111c32;
  --ink-3: #1a2742;
  --paper: #f4ebe0;
  --paper-2: #ede3d4;
  --cream: #faf6ef;
  --gold: #c9a55a;
  --gold-soft: #d9b974;
  --gold-deep: #a8893f;
  --charcoal: #1a1d23;
  --muted: #6c6760;
  --muted-2: #8b8577;
  --off-white: #e8e4dd;
  --rule: rgba(11, 20, 38, 0.1);
  --rule-light: rgba(232, 228, 221, 0.15);

  --tri-green: #007042;
  --tri-red:   #bc2a2a;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w: 1240px;
  --pad: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 600ms;
}

/* Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

::selection { background: var(--gold); color: var(--ink); }

/* Type helpers
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.solo::before, .eyebrow.solo::after { display: none; }

.text-gold { color: var(--gold); }
.text-gold-deep { color: var(--gold-deep); }

.section-title {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  color: var(--charcoal);
}
.section-dark {
  background: var(--ink);
  color: var(--off-white);
}
.section-dark .section-subtitle { color: rgba(232, 228, 221, 0.65); }
.section-paper { background: var(--paper); }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-header .eyebrow { margin-bottom: 18px; }

/* Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* Buttons
   ========================================================================== */
.btn {
  --bg: var(--gold);
  --fg: var(--ink);
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bd);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -16px rgba(11, 20, 38, 0.45);
}
.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { --bg: var(--gold); --fg: var(--ink); --bd: var(--gold); }
.btn-primary:hover { --bg: var(--gold-soft); }

.btn-outline {
  --bg: transparent;
  --fg: var(--off-white);
  --bd: rgba(232, 228, 221, 0.4);
}
.btn-outline:hover { --bd: var(--off-white); background: rgba(232, 228, 221, 0.08); }

.btn-ink {
  --bg: var(--ink);
  --fg: var(--off-white);
  --bd: var(--ink);
}
.btn-ink:hover { --bg: var(--ink-3); }

.btn-ghost-dark {
  --bg: transparent;
  --fg: var(--charcoal);
  --bd: rgba(11, 20, 38, 0.2);
}
.btn-ghost-dark:hover { --bd: var(--charcoal); }

/* Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 300ms ease;
}
.nav.scrolled {
  background: rgba(11, 20, 38, 0.88);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(232, 228, 221, 0.08);
}
.nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--off-white);
  display: inline-block;
  line-height: 1;
}
.wordmark-text {
  display: block;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wordmark-flourish {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 3px;
  opacity: 0.9;
  transition: transform 420ms var(--ease), opacity 220ms ease;
}
.wordmark:hover .wordmark-flourish {
  transform: translateY(1px);
  opacity: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.75;
  position: relative;
  padding: 6px 0;
  transition: opacity 220ms ease, color 220ms ease;
}
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--gold); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  color: var(--off-white);
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 20px; height: 1.5px;
  background: currentColor;
  transition: transform 300ms var(--ease), opacity 220ms ease, top 300ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Hero
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--off-white);
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/exterior.jpg') center/cover no-repeat;
  background-color: var(--ink);
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-tint,
    linear-gradient(180deg, rgba(11,20,38,0.55) 0%, rgba(11,20,38,0.15) 30%, rgba(11,20,38,0.05) 50%, rgba(11,20,38,0.75) 88%, rgba(11,20,38,0.95) 100%)),
    radial-gradient(ellipse at 15% 20%, rgba(11,20,38,0.5) 0%, transparent 55%);
  z-index: 1;
  transition: background 2.4s ease;
}

/* Time-of-day atmosphere — swaps the hero's gradient tint based on current hour */
.hero.tod-dawn {
  --hero-tint: linear-gradient(180deg,
    rgba(255,170,110,0.35) 0%,
    rgba(210,110,130,0.22) 25%,
    rgba(90,70,120,0.35) 55%,
    rgba(11,20,38,0.8) 88%,
    rgba(11,20,38,0.96) 100%);
}
.hero.tod-morning {
  --hero-tint: linear-gradient(180deg,
    rgba(255,210,140,0.28) 0%,
    rgba(210,170,110,0.12) 30%,
    rgba(40,55,90,0.25) 55%,
    rgba(11,20,38,0.75) 88%,
    rgba(11,20,38,0.96) 100%);
}
.hero.tod-midday {
  --hero-tint: linear-gradient(180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(120,150,190,0.0) 35%,
    rgba(20,35,70,0.2) 55%,
    rgba(11,20,38,0.65) 88%,
    rgba(11,20,38,0.95) 100%);
}
.hero.tod-afternoon {
  --hero-tint: linear-gradient(180deg,
    rgba(255,195,120,0.22) 0%,
    rgba(220,150,100,0.12) 32%,
    rgba(60,50,80,0.3) 60%,
    rgba(11,20,38,0.78) 90%,
    rgba(11,20,38,0.96) 100%);
}
.hero.tod-evening {
  --hero-tint: linear-gradient(180deg,
    rgba(255,145,90,0.35) 0%,
    rgba(170,75,110,0.28) 28%,
    rgba(55,40,90,0.55) 60%,
    rgba(11,20,38,0.9) 90%,
    rgba(11,20,38,0.98) 100%);
}
.hero.tod-night {
  --hero-tint: linear-gradient(180deg,
    rgba(20,30,70,0.7) 0%,
    rgba(15,25,55,0.65) 35%,
    rgba(11,20,38,0.82) 70%,
    rgba(11,20,38,0.96) 95%);
}

/* Celestial orb — sun by day, moon by night */
.hero-orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 18%;
  right: 12%;
  z-index: 1;
  pointer-events: none;
  transition: all 2.4s ease;
  opacity: 0.85;
  filter: blur(0.5px);
}
.hero.tod-dawn .hero-orb {
  background: radial-gradient(circle, rgba(255,190,140,0.95) 0%, rgba(255,150,100,0.55) 40%, transparent 72%);
  top: 72%; right: 18%;
  box-shadow: 0 0 120px 40px rgba(255,160,110,0.4);
}
.hero.tod-morning .hero-orb {
  background: radial-gradient(circle, rgba(255,225,160,0.9) 0%, rgba(255,200,130,0.5) 40%, transparent 72%);
  top: 32%; right: 16%;
  box-shadow: 0 0 100px 30px rgba(255,210,140,0.35);
}
.hero.tod-midday .hero-orb {
  background: radial-gradient(circle, rgba(255,250,230,0.85) 0%, rgba(255,240,200,0.35) 45%, transparent 75%);
  top: 12%; right: 14%;
  box-shadow: 0 0 90px 22px rgba(255,245,210,0.3);
}
.hero.tod-afternoon .hero-orb {
  background: radial-gradient(circle, rgba(255,210,150,0.9) 0%, rgba(240,170,110,0.5) 42%, transparent 72%);
  top: 28%; right: 14%;
  box-shadow: 0 0 100px 28px rgba(250,190,130,0.35);
}
.hero.tod-evening .hero-orb {
  background: radial-gradient(circle, rgba(255,150,100,0.9) 0%, rgba(220,90,100,0.55) 42%, transparent 72%);
  top: 62%; right: 20%;
  box-shadow: 0 0 140px 45px rgba(240,120,90,0.45);
}
.hero.tod-night .hero-orb {
  background: radial-gradient(circle, rgba(235,230,210,0.85) 0%, rgba(210,200,180,0.3) 45%, transparent 72%);
  top: 18%; right: 15%;
  box-shadow: 0 0 70px 18px rgba(230,225,200,0.25);
}

/* Tiny badge showing current phase */
.hero-tod-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 228, 221, 0.7);
  border: 1px solid rgba(232, 228, 221, 0.18);
  border-radius: 999px;
  background: rgba(11, 20, 38, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-tod-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201, 165, 90, 0.6);
  animation: todPulse 2.4s ease-in-out infinite;
}
@keyframes todPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 180px var(--pad) 120px;
  width: 100%;
}
.hero-inner { max-width: 820px; }
.hero-eyebrow { color: var(--gold); }
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(52px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.hero-title .serif-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.hero-title .small {
  display: block;
  font-size: 0.3em;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(232, 228, 221, 0.75);
  margin-bottom: 18px;
  font-family: var(--font-body);
  text-transform: none;
}
.hero-lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: rgba(232, 228, 221, 0.85);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 228, 221, 0.6);
  z-index: 2;
}
.hero-rating { display: inline-flex; align-items: center; gap: 10px; }
.hero-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.hero-scroll { display: inline-flex; align-items: center; gap: 10px; }
.hero-scroll .line {
  width: 48px;
  height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::before {
  content: '';
  position: absolute;
  left: -50%; top: 0;
  width: 50%; height: 100%;
  background: var(--gold);
  animation: scrollSwipe 2.4s var(--ease) infinite;
}
@keyframes scrollSwipe {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.75;
}
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(201, 165, 90, 0.12);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  display: block;
}
.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.about-image { position: relative; }
.about-image .frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 60px -30px rgba(11, 20, 38, 0.35);
}
.about-image .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.about-image .frame:hover img { transform: scale(1.04); }
.about-image .est-chip {
  position: absolute;
  left: -28px; bottom: 32px;
  background: var(--ink);
  color: var(--off-white);
  padding: 22px 28px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 18px 40px -20px rgba(11, 20, 38, 0.6);
}
.est-chip .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.est-chip .year {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--off-white);
}
.about-image .tri {
  position: absolute;
  top: 24px; right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.about-image .tri i {
  display: block;
  width: 28px; height: 4px;
}
.about-image .tri i:nth-child(1) { background: var(--tri-green); }
.about-image .tri i:nth-child(2) { background: #f1f2f1; }
.about-image .tri i:nth-child(3) { background: var(--tri-red); }

/* Marquee gallery
   ========================================================================== */
.marquee {
  background: var(--ink);
  padding: clamp(40px, 6vw, 64px) 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}
.marquee-item:hover img { transform: scale(1.06); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* Verulamium — Roman interactive map
   ========================================================================== */
.verulamium {
  background: #e8d7b0;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(245, 233, 204, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 165, 90, 0.18) 0%, transparent 55%);
  padding: clamp(80px, 10vw, 120px) 0;
  color: #5a3e20;
  overflow: hidden;
}
.verulamium .section-title { color: #3d2817; }
.verulamium .section-subtitle { color: #8b5e3c; }
.verulamium .eyebrow { color: #8b5e3c; }

.map-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.map-scene {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -40px rgba(107, 68, 35, 0.4),
    inset 0 0 100px rgba(107, 68, 35, 0.08);
  background: #e8d7b0;
}
.roman-map {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-select: none;
}

/* Landmark hotspots */
.roman-map .hotspot {
  cursor: pointer;
  transition: filter 260ms ease, transform 320ms var(--ease);
  transform-origin: center center;
  transform-box: fill-box;
}
.roman-map .hotspot:hover { filter: brightness(1.08) drop-shadow(0 4px 8px rgba(107, 68, 35, 0.3)); }
.roman-map .street { pointer-events: none; }

/* Cafe Roma pulse */
@keyframes romaPulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(2.1); opacity: 0; }
  100% { opacity: 0; }
}
.pulse-ring {
  transform-origin: 600px 400px;
  transform-box: view-box;
  animation: romaPulse 2.6s ease-out infinite;
}
.pulse-ring-2 { animation-delay: 1.3s; }

@keyframes romaFillPulse {
  0%, 100% { opacity: 0.12; }
  50%      { opacity: 0.28; }
}
.pulse-fill {
  animation: romaFillPulse 2.6s ease-in-out infinite;
}

/* Steam */
@keyframes steamRise {
  0%   { opacity: 0; transform: translate(0, 4px); }
  25%  { opacity: 0.9; }
  90%  { opacity: 0.2; transform: translate(0, -16px); }
  100% { opacity: 0; transform: translate(0, -22px); }
}
.steam .steam-1 { animation: steamRise 2.8s ease-out infinite; }
.steam .steam-2 { animation: steamRise 2.8s ease-out infinite 0.8s; }
.steam .steam-3 { animation: steamRise 2.8s ease-out infinite 1.6s; }

/* Clouds drift */
@keyframes driftCloud {
  from { transform: translateX(0); }
  to   { transform: translateX(1420px); }
}
.cloud-1 { animation: driftCloud 90s linear infinite; }
.cloud-2 { animation: driftCloud 120s linear infinite -40s; }
.cloud-3 { animation: driftCloud 75s linear infinite -25s; }

/* Birds V crossing */
@keyframes birdsCross {
  0%   { transform: translate(-40px, 220px) scale(1); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translate(1260px, 170px) scale(1.05); opacity: 0; }
}
.map-birds {
  animation: birdsCross 24s linear infinite 3s;
  transform-origin: 0 0;
}

/* Flag wave */
@keyframes flagWave {
  0%, 100% { transform: translate(0, 0) skewX(0); }
  25%      { transform: translate(0.5px, -0.3px) skewX(-4deg); }
  50%      { transform: translate(1px, 0) skewX(0); }
  75%      { transform: translate(0.5px, 0.3px) skewX(3deg); }
}
.wave-flag {
  animation: flagWave 1.8s ease-in-out infinite;
  transform-origin: 600px 315px;
  transform-box: view-box;
}

/* Centurion marching along High Street */
@keyframes centurionMarch {
  0%   { transform: translate(300px, 440px); opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { transform: translate(970px, 440px); opacity: 0; }
}
@keyframes centurionStep {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-1.2px); }
}
.moving-centurion {
  animation: centurionMarch 38s linear infinite;
}
.moving-centurion > use {
  animation: centurionStep 0.55s ease-in-out infinite;
}

/* Cart rolling down St Peter's Street */
@keyframes cartRoll {
  0%   { transform: translate(600px, 90px); opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { transform: translate(600px, 660px); opacity: 0; }
}
.moving-cart {
  animation: cartRoll 52s linear infinite 8s;
}

/* Legend pulse */
@keyframes legendPulse {
  0%, 100% { r: 5; opacity: 0.5; }
  50%      { r: 9; opacity: 0; }
}
.legend-pulse { animation: legendPulse 1.8s ease-out infinite; }

/* Tooltip
   ========================================================================== */
.map-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: var(--off-white);
  padding: 16px 20px;
  border-radius: 3px;
  min-width: 240px;
  max-width: 320px;
  border: 1px solid rgba(201, 165, 90, 0.35);
  box-shadow: 0 24px 48px -16px rgba(11, 20, 38, 0.55);
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px)) scale(0.96);
  transition: opacity 200ms ease, transform 260ms var(--ease);
  z-index: 5;
}
.map-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
}
.map-tooltip h4 {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 2px;
  color: var(--off-white);
  letter-spacing: -0.005em;
}
.map-tooltip .latin {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-style: italic;
}
.map-tooltip p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(232, 228, 221, 0.82);
  margin: 0;
}
.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--ink);
  border-right: 1px solid rgba(201, 165, 90, 0.35);
  border-bottom: 1px solid rgba(201, 165, 90, 0.35);
}

@media (max-width: 720px) {
  .roman-map { max-height: 560px; }
  .map-tooltip {
    min-width: 200px;
    max-width: 260px;
    padding: 12px 14px;
  }
  .map-tooltip h4 { font-size: 16px; }
  .map-tooltip p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .cloud-1, .cloud-2, .cloud-3,
  .map-birds, .moving-centurion, .moving-cart,
  .wave-flag, .steam path, .pulse-ring, .pulse-fill, .legend-pulse {
    animation: none !important;
  }
}

/* Experience
   ========================================================================== */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}
.exp-card {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
  background: transparent;
  transition: background 400ms ease;
  position: relative;
}
.exp-card:hover { background: rgba(201, 165, 90, 0.04); }
.exp-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 28px;
}
.exp-icon svg { width: 100%; height: 100%; stroke-width: 1.25; }
.exp-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--off-white);
}
.exp-card p {
  color: rgba(232, 228, 221, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* App section
   ========================================================================== */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.app-lead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 40px;
  letter-spacing: -0.01em;
}
.app-features { display: grid; gap: 28px; margin-bottom: 44px; }
.app-feat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.app-feat:last-child { border-bottom: none; padding-bottom: 0; }
.app-feat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-deep);
  line-height: 1;
  padding-top: 4px;
}
.app-feat h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  color: var(--ink);
}
.app-feat p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.app-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.app-note {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.app-visual {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 580px;
}
.phone {
  width: 280px;
  height: 560px;
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 80px -30px rgba(11, 20, 38, 0.4),
    0 0 0 1px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 900ms var(--ease);
}
.phone:hover { transform: rotate(0deg) translateY(-8px); }
.phone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 24px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--ink-2);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(201, 165, 90, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Order From Your Table section
   ========================================================================== */
.order-flow { background: var(--paper-2); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.order-phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px) clamp(72px, 8vw, 96px);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink-3) 100%);
  border-radius: 28px;
  min-height: 640px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -30px rgba(11, 20, 38, 0.45),
    inset 0 0 0 1px rgba(201, 165, 90, 0.18);
}
.order-phone-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 165, 90, 0.22), transparent 45%),
    radial-gradient(circle at 82% 88%, rgba(201, 165, 90, 0.14), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.order-phone-stage .phone {
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
}
.order-phone-stage .phone:hover { transform: rotate(0deg) translateY(-8px); }
.order-qr-badge {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(250, 246, 239, 0.08);
  border: 1px solid rgba(201, 165, 90, 0.35);
  border-radius: 999px;
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  white-space: nowrap;
}
.order-qr-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.order-steps {
  list-style: none;
  display: grid;
  gap: 28px;
}
.order-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}
.order-step:last-child { border-bottom: none; padding-bottom: 0; }
.order-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 46px;
  line-height: 1;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
}
.order-step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.order-step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.order-step-body em {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .order-grid { grid-template-columns: 1fr; }
  .order-phone-stage { min-height: 560px; padding-bottom: 88px; }
  .order-step { grid-template-columns: 56px 1fr; gap: 16px; }
  .order-step-num { font-size: 36px; }
}

/* Reviews
   ========================================================================== */
.reviews { background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 12px;
}
.review-card {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 2px;
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms ease;
  border: 1px solid var(--rule);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(11, 20, 38, 0.2);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 16px;
}
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 22px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 14px 22px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.google-badge .stars { color: var(--gold); letter-spacing: 2px; }
.google-badge strong { font-weight: 600; }

/* Contact
   ========================================================================== */
.contact {
  background: var(--ink);
  color: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.contact-list { display: grid; gap: 28px; }
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-light);
}
.contact-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.contact-item .ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(201, 165, 90, 0.4);
  border-radius: 999px;
  color: var(--gold);
}
.contact-item .ic svg { width: 18px; height: 18px; }
.contact-item h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-item p, .contact-item a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--off-white);
}
.contact-item a:hover { color: var(--gold); }
.contact-item .hours-note {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 12px;
  border-top: 1px solid rgba(201, 165, 90, 0.2);
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(232, 228, 221, 0.2);
  color: var(--off-white);
  transition: all 240ms ease;
}
.social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }
.social a svg { width: 16px; height: 16px; }

.map-frame {
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--rule-light);
  height: 100%;
  min-height: 440px;
  background: var(--ink-2);
}
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 440px; filter: grayscale(20%) contrast(1.05); }

/* Footer
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(232, 228, 221, 0.6);
  padding: 48px 0 32px;
  border-top: 1px solid var(--rule-light);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.footer-brand { font-size: 13px; }
.footer-brand .wordmark { font-size: 18px; margin-bottom: 4px; color: var(--off-white); display: block; }
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links a { transition: color 220ms ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 36px auto 0;
  padding: 24px var(--pad) 0;
  border-top: 1px solid var(--rule-light);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 228, 221, 0.45);
}
.footer-bottom .powered { display: inline-flex; align-items: center; gap: 8px; }

/* Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .about-grid, .app-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; max-width: 500px; margin: 0 auto; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .exp-card:nth-child(2n) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 360px; }
}

/* Mobile Sign In button shown only inside the slide-in menu */
.mobile-signin { display: none; }

@media (max-width: 720px) {
  /* Nav: mobile full-screen menu */
  .nav-cta { display: none; }
  .nav-toggle { display: inline-block; z-index: 120; }
  .nav-toggle.active { color: var(--off-white); }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 28px 48px;
    transform: translateX(100%);
    transition: transform 440ms var(--ease);
    z-index: 110;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.005em;
    text-transform: none;
    color: var(--off-white);
    opacity: 1;
    padding: 20px 4px;
    text-align: left;
    border-bottom: 1px solid rgba(232, 228, 221, 0.12);
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link:active, .nav-link.active { color: var(--gold); }
  .nav-link:last-of-type { border-bottom: none; }

  .mobile-signin {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 28px;
    padding: 16px 28px;
    font-size: 13px;
  }

  /* Experience: vertical stack, no right-edge border */
  .experience-grid {
    grid-template-columns: 1fr;
    border-left: none;
    border-top: none;
  }
  .exp-card {
    border-right: none;
    border-top: 1px solid var(--rule-light);
    border-bottom: none;
  }
  .exp-card:first-child { border-top: none; }

  .about-features { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; bottom: 24px; }
  .hero-content { padding-top: 140px; padding-bottom: 160px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .about-image .est-chip { left: 16px; bottom: -20px; padding: 16px 22px; }
  .about-image .tri { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
