/* ==========================================================================
   LINCOLN ARMS — LUXURY TAVERN & GASTROPUB (52 YORK WAY, LONDON)
   Design Aesthetic: Faith Ibiza Editorial Layout & Transitions
   Color Palette: Qissa Nocturnal Navy & Antique Gold
   Responsiveness: Flawless across 320px Mobile, Tablets, Laptops & Desktops
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --ink: #05091A;
  --navy: #0A1230;
  --navy-2: #0E1838;
  --navy-3: #16224A;
  --navy-card: rgba(14, 24, 56, 0.78);
  --navy-line: #1E2C57;
  --gold: #C9A24B;
  --gold-hi: #EFD79A;
  --gold-deep: #9A7A34;
  --amber: #E9A85C;
  --cream: #F6F1E7;
  --cream-dim: rgba(246, 241, 231, 0.72);
  --cream-faint: rgba(246, 241, 231, 0.40);
  --line: rgba(201, 162, 75, 0.24);
  --line-soft: rgba(246, 241, 231, 0.08);
  --gold-grad: linear-gradient(135deg, #9A7A34 0%, #EFD79A 38%, #C9A24B 62%, #F4E6BC 100%);
  --gold-glow: 0 0 35px rgba(201, 162, 75, 0.28);
  
  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Spacing */
  --gutter: clamp(16px, 4vw, 84px);
  --sec-y: clamp(50px, 8vw, 120px);
  --maxw: 1440px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ==========================================================================
   Base Reset & Zero Horizontal Overflow
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--ink);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--f-body);
  background-color: var(--navy);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: rgba(201, 162, 75, 0.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Ambient Radial Background Glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1000px 700px at 85% -5%, rgba(233, 168, 92, 0.08), transparent 60%),
    radial-gradient(800px 600px at 8% 25%, rgba(201, 162, 75, 0.07), transparent 55%),
    radial-gradient(1100px 800px at 50% 115%, rgba(22, 34, 74, 0.55), transparent 60%);
  transform: translateZ(0);
}

.stars-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}

ul, ol { list-style: none; }

::selection {
  background: rgba(201, 162, 75, 0.35);
  color: var(--cream);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--cream);
  word-break: break-word;
}

.display-title {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 6.8vw, 6.2rem);
  font-weight: 350;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 360;
  letter-spacing: -0.015em;
  line-height: 1.14;
}

.h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  font-weight: 400;
}

.serif-italic {
  font-style: italic;
  font-weight: 300;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.amber-text { color: var(--amber); }

.lede {
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  color: var(--cream-dim);
  font-weight: 350;
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: clamp(0.68rem, 1.2vw, 0.74rem);
  font-weight: 600;
  letter-spacing: clamp(0.14em, 0.4vw, 0.28em);
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.1rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: clamp(12px, 2.5vw, 22px);
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.eyebrow.no-after::after { display: none; }
.eyebrow.no-before::before { display: none; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  box-sizing: border-box;
}

.section {
  padding-block: var(--sec-y);
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.section--sm {
  padding-block: clamp(32px, 5vw, 64px);
}

.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* Buttery Scroll Reveals */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --pad: 0.85em 1.9em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: var(--pad);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  transform: translateZ(0);
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold-grad);
  color: #1a1204;
  box-shadow: 0 8px 26px -8px rgba(201, 162, 75, 0.6);
  border: 1px solid transparent;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(201, 162, 75, 0.85);
  color: #0b0701;
}

.btn-gold:hover svg { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(246, 241, 231, 0.03);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: rgba(201, 162, 75, 0.08);
  transform: translateY(-3px);
}

.btn-ghost:hover svg { transform: translateX(4px); }

.btn-sm {
  --pad: 0.55em 1.25em;
  font-size: 0.74rem;
}

.btn-lg {
  --pad: 1.05em 2.3em;
  font-size: 0.86rem;
}

/* ==========================================================================
   Header Navigation (Flawless Desktop & Mobile Flex Alignment)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--gutter);
  height: 80px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transition: height 0.45s var(--ease), padding 0.45s var(--ease), background 0.45s var(--ease), backdrop-filter 0.45s;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 9, 26, 0.85) 0%, rgba(5, 9, 26, 0) 100%);
  transition: opacity 0.5s;
}

.site-header.scrolled {
  height: 64px;
  padding-block: 10px;
  background: rgba(8, 14, 38, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}

.site-header.scrolled::before {
  opacity: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0%;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 0%;
}

/* Menu Trigger Button */
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  transition: color 0.3s, transform 0.2s;
  min-height: 44px;
  flex-shrink: 0;
}

.menu-trigger:hover { color: var(--gold-hi); }
.menu-trigger:active { transform: scale(0.96); }

.menu-trigger .bars {
  position: relative;
  width: 24px;
  height: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.menu-trigger .bars span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s var(--ease-soft), transform 0.35s var(--ease-soft);
}

.menu-trigger .bars span:nth-child(1) { width: 100%; }
.menu-trigger .bars span:nth-child(2) { width: 70%; }
.menu-trigger .bars span:nth-child(3) { width: 45%; }

.menu-trigger:hover .bars span { width: 100%; }

/* Live Open Badge */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  background: rgba(246, 241, 231, 0.04);
  border: 1px solid var(--line-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.live-status-pill .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  display: inline-block;
  animation: pulse-dot 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* Brand Wordmark (Always centered) */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding-inline: 8px;
}

.brand__crest {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  color: var(--gold);
  transition: transform 0.6s var(--ease);
  flex-shrink: 0;
}

.brand:hover .brand__crest {
  transform: rotate(45deg);
}

.brand__name {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__loc {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 2px;
  white-space: nowrap;
}

/* ==========================================================================
   Full-Screen Navigation Drawer (Faith Ibiza Style)
   ========================================================================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: radial-gradient(1200px 900px at 80% 20%, #16244f 0%, #060a1d 75%);
  clip-path: circle(0% at calc(100% - 90px) 44px);
  transition: clip-path 0.85s var(--ease-io), visibility 0.85s;
  visibility: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100vw;
  height: 100vh;
}

.nav-overlay.open {
  clip-path: circle(160% at calc(100% - 90px) 44px);
  visibility: visible;
}

.nav-overlay__close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  z-index: 2;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(246, 241, 231, 0.04);
  border: 1px solid var(--line-soft);
  transition: color 0.3s, border-color 0.3s, transform 0.2s;
  min-height: 44px;
}

.nav-overlay__close:hover {
  color: var(--gold-hi);
  border-color: var(--gold);
}

.nav-overlay__close:active { transform: scale(0.96); }

.nav-overlay__close .x-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-overlay__close .x-icon::before,
.nav-overlay__close .x-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
}

.nav-overlay__close .x-icon::before { transform: rotate(45deg); }
.nav-overlay__close .x-icon::after { transform: rotate(-45deg); }

.nav-overlay__main {
  align-self: center;
  padding-left: clamp(24px, 7vw, 120px);
  padding-right: var(--gutter);
  padding-block: clamp(70px, 12vh, 120px);
  box-sizing: border-box;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-list a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4.8vw, 3.8rem);
  font-weight: 330;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  max-width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(22px);
  transition: color 0.3s, transform 0.4s var(--ease);
  padding-block: 4px;
}

.nav-overlay.open .nav-list a {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease) calc(0.16s + var(--i, 0) * 0.07s),
              transform 0.6s var(--ease) calc(0.16s + var(--i, 0) * 0.07s),
              color 0.3s;
}

.nav-list a .num {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-right: 0.85em;
  opacity: 0.8;
  flex-shrink: 0;
}

.nav-list a:hover {
  color: var(--gold-hi);
  transform: translateX(10px);
}

.nav-list a.active { color: var(--gold); }
.nav-list a.active::after {
  content: "•";
  margin-left: 0.5em;
  color: var(--gold);
  font-size: 0.6em;
  vertical-align: middle;
}

.nav-overlay__aside {
  border-left: 1px solid var(--line-soft);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  background: rgba(5, 9, 26, 0.4);
  box-sizing: border-box;
}

.nav-aside-block h4 {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.nav-aside-block p {
  color: var(--cream-dim);
  font-size: 0.94rem;
  line-height: 1.6;
}

.nav-aside-block a:hover { color: var(--gold-hi); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(100px, 14vh, 150px);
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
  width: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  max-width: 100%;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) contrast(1.05);
  transform: scale(1.03);
  transition: transform 10s ease-out;
}

.hero:hover .hero__bg img {
  transform: scale(1.06);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(5, 9, 26, 0.65) 0%,
    rgba(10, 18, 48, 0.48) 45%,
    rgba(10, 18, 48, 0.94) 85%,
    var(--navy) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  text-align: center;
  margin-inline: auto;
  width: 100%;
}

.hero__coordinates {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(0.64rem, 1.2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-hi);
  text-transform: uppercase;
  background: rgba(14, 24, 56, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  flex-wrap: wrap;
}

.hero__title {
  margin-bottom: 1.4rem;
}

.hero__subtitle {
  font-size: clamp(0.98rem, 1.5vw, 1.28rem);
  color: var(--cream-dim);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
  width: 100%;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  width: 100%;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--cream-dim);
}

.hero-badge-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-badge-item strong {
  color: var(--cream);
  font-weight: 600;
}

/* ==========================================================================
   Page Hero Headers (with safe fixed header breathing room)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: clamp(110px, 14vw, 170px);
  padding-bottom: clamp(48px, 6vw, 84px);
  text-align: center;
  background: radial-gradient(1000px 600px at 50% 0%, #16244e 0%, var(--navy) 75%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  width: 100%;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: radial-gradient(rgba(201, 162, 75, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
}

.page-hero .display-title {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Grids & Cards (Safe Responsive Layouts)
   ========================================================================== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 100%;
}

.grid-2 > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.8vw, 36px);
  width: 100%;
}

.grid-3 > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
}

.grid-4 > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.card-luxury {
  background: var(--navy-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  position: relative;
  transform: translateZ(0);
  width: 100%;
  box-sizing: border-box;
}

.card-luxury:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 20px 40px -15px rgba(5, 9, 26, 0.7), 0 0 25px rgba(201, 162, 75, 0.12);
}

.card-luxury__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}

.card-luxury__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card-luxury:hover .card-luxury__media img {
  transform: scale(1.05);
}

.card-luxury__body {
  padding: clamp(16px, 2.5vw, 28px);
  box-sizing: border-box;
}

.card-luxury__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1204;
  background: var(--gold-grad);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Story & Heritage Section
   ========================================================================== */
.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px -20px rgba(5, 9, 26, 0.9);
  transform: translateZ(0);
  width: 100%;
  box-sizing: border-box;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.story-image-wrap:hover img {
  transform: scale(1.03);
}

.story-stamp {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(10, 18, 48, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-stamp__num {
  font-family: var(--f-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-hi);
  display: block;
}

.story-stamp__label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ==========================================================================
   The Menu (Interactive Filter Tabs & Items)
   ========================================================================== */
.menu-nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
  padding: 6px;
  background: rgba(14, 24, 56, 0.65);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  min-height: 40px;
  flex-shrink: 0;
}

.tab-btn:hover { color: var(--cream); }
.tab-btn:active { transform: scale(0.96); }

.tab-btn.active {
  background: var(--gold-grad);
  color: #1a1204;
  box-shadow: 0 4px 18px rgba(201, 162, 75, 0.4);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
  width: 100%;
}

.menu-item-row {
  display: flex;
  flex-direction: column;
  padding: clamp(16px, 2.5vw, 26px);
  background: rgba(14, 24, 56, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
  transform: translateZ(0);
  width: 100%;
  box-sizing: border-box;
}

.menu-item-row:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  width: 100%;
}

.menu-item-title {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 400;
  color: var(--cream);
}

.menu-item-dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed var(--line);
  opacity: 0.4;
  min-width: 16px;
}

.menu-item-price {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--gold-hi);
  font-weight: 500;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.55;
  margin-bottom: 10px;
}

.menu-item-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-diet {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(201, 162, 75, 0.12);
  color: var(--gold-hi);
  border: 1px solid rgba(201, 162, 75, 0.3);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-wrapper {
  background: radial-gradient(800px 500px at 50% 50%, #131e42 0%, var(--navy) 100%);
  border-block: 1px solid var(--line-soft);
  padding-block: var(--sec-y);
  width: 100%;
}

.rating-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  text-align: center;
}

.rating-score {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 350;
  line-height: 1;
  color: var(--gold-hi);
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-block: 8px;
  font-size: 1.15rem;
}

.rating-count {
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  width: 100%;
}

.review-card {
  padding: clamp(20px, 3vw, 34px);
  background: var(--navy-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
  transform: translateZ(0);
  width: 100%;
  box-sizing: border-box;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
}

.review-card__quote {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 6px;
}

.author-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-hi);
}

.author-source {
  font-size: 0.7rem;
  color: var(--cream-faint);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Reservation Form & Luxury Interactive Booking
   ========================================================================== */
.reservation-box {
  background: var(--navy-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 56px);
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
  box-shadow: 0 30px 80px -20px rgba(5, 9, 26, 0.95);
  box-sizing: border-box;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* 16px base font size avoids mobile browser auto-zoom */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(8, 14, 38, 0.85);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 48px;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.18), 0 0 15px rgba(201, 162, 75, 0.1);
}

.form-select option {
  background: var(--navy-2);
  color: var(--cream);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Area Selection Cards */
.area-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
  width: 100%;
  box-sizing: border-box;
}

.area-choice {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: block;
  min-width: 0;
  width: 100%;
}

.area-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.area-choice-card {
  border: 1px solid var(--line-soft);
  background: rgba(14, 24, 56, 0.5);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  transition: all 0.3s var(--ease);
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.area-choice:hover .area-choice-card {
  border-color: rgba(201, 162, 75, 0.4);
  background: rgba(201, 162, 75, 0.06);
}

.area-choice input[type="radio"]:checked + .area-choice-card {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.14);
  box-shadow: 0 0 18px rgba(201, 162, 75, 0.22);
  transform: translateY(-2px);
}

.area-choice-card .area-name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  line-height: 1.2;
}

.area-choice-card .area-sub {
  font-size: 0.68rem;
  color: var(--cream-dim);
  line-height: 1.3;
  margin-top: 3px;
  word-break: break-word;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5, 9, 26, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-receipt {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 500px;
  width: 100%;
  text-align: center;
  transform: translateY(22px) scale(0.96);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal-backdrop.open .modal-receipt { transform: none; }

/* ==========================================================================
   Map & Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: 100%;
}

.contact-grid > * {
  min-width: 0;
  max-width: 100%;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 440px;
  position: relative;
  box-shadow: 0 20px 50px -15px rgba(5, 9, 26, 0.8);
  touch-action: pan-x pan-y;
  width: 100%;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-text {
  min-width: 0;
  flex: 1;
}

.contact-info-text h4 {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--cream);
  font-size: 1rem;
  word-break: break-word;
}

.contact-info-text a:hover { color: var(--gold-hi); }

/* ==========================================================================
   Ambient Soundscape Audio Player Widget
   ========================================================================== */
.audio-player-widget {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
  left: max(20px, env(safe-area-inset-left, 20px));
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(8, 14, 38, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform 0.3s var(--ease), border-color 0.3s;
  min-height: 38px;
}

.audio-player-widget:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.audio-player-widget:active { transform: scale(0.96); }

.audio-eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  flex-shrink: 0;
}

.audio-eq-bars span {
  width: 2px;
  height: 4px;
  background: var(--gold);
  border-radius: 1px;
}

.audio-player-widget.playing .audio-eq-bars span:nth-child(1) { animation: eq 1s ease-in-out infinite alternate; }
.audio-player-widget.playing .audio-eq-bars span:nth-child(2) { animation: eq 0.7s ease-in-out infinite alternate 0.2s; }
.audio-player-widget.playing .audio-eq-bars span:nth-child(3) { animation: eq 1.2s ease-in-out infinite alternate 0.4s; }

@keyframes eq {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line-soft);
  padding-top: clamp(48px, 7vw, 90px);
  padding-bottom: max(28px, env(safe-area-inset-bottom, 28px));
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(36px, 5vw, 64px);
  width: 100%;
}

.footer-brand p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 0.9rem;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--cream-dim);
  font-size: 0.88rem;
  display: inline-block;
  padding-block: 2px;
}

.footer-col a:hover {
  color: var(--gold-hi);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--cream-faint);
  width: 100%;
}

.camra-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
}

/* ==========================================================================
   Comprehensive Responsive Breakpoints (Tablet & Mobile)
   ========================================================================== */

/* Laptops & Small Desktops (<= 1200px) */
@media (max-width: 1200px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav-overlay { grid-template-columns: 1.1fr 0.9fr; }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-overlay__aside { display: none; }
  .nav-overlay__main {
    padding-inline: clamp(24px, 6vw, 60px);
    padding-block: 80px;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Tablet Portrait (<= 920px) */
@media (max-width: 920px) {
  .site-header {
    padding: 14px var(--gutter);
    height: 70px;
  }
  .live-status-pill {
    display: none; /* Hide to give brand & buttons clean space */
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .menu-list {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 360px;
  }
}

/* Small Tablets & Phones (<= 768px) */
@media (max-width: 768px) {
  .site-header {
    height: 64px;
    padding-inline: 14px;
  }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  
  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-footer {
    padding-bottom: max(80px, env(safe-area-inset-bottom, 80px));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Audio player turns into a discrete floating badge so it NEVER blocks inputs */
  .audio-player-widget {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    left: auto;
    right: max(16px, env(safe-area-inset-right, 16px));
    padding: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
  .audio-player-widget .audio-label {
    display: none;
  }
}

/* Mobile Phones (<= 600px) */
@media (max-width: 600px) {
  .area-selector-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .area-choice-card {
    text-align: left;
    padding: 12px 14px;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__badges {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Horizontal swipeable tabs on phones */
  .menu-nav-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px;
    border-radius: var(--radius);
    scrollbar-width: none;
  }
  .menu-nav-tabs::-webkit-scrollbar { display: none; }
  
  .menu-item-head {
    flex-wrap: wrap;
    gap: 4px;
  }
  .menu-item-dots { display: none; }
  .menu-item-price { margin-left: auto; }
  
  .map-container {
    height: 280px;
  }

  .reservation-box {
    padding: 20px 14px;
  }

  .nav-overlay {
    clip-path: circle(0% at calc(100% - 35px) 30px);
  }
  .nav-overlay.open {
    clip-path: circle(170% at calc(100% - 35px) 30px);
  }
  .nav-overlay__main {
    padding-inline: 20px;
    padding-block: 70px 40px;
  }
  .nav-list a {
    font-size: clamp(1.65rem, 6.5vw, 2.4rem);
  }
}

/* Micro Mobile (<= 400px, e.g. iPhone SE, 360px-380px) */
@media (max-width: 400px) {
  .site-header {
    padding-inline: 10px;
  }
  .brand__name {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
  }
  .brand__loc {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }
  .brand__crest {
    width: 18px;
    height: 18px;
  }
  .menu-trigger {
    padding: 6px;
    gap: 6px;
    font-size: 0.72rem;
  }
  .header-right .btn-sm {
    padding: 0.5em 0.9em;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .header-right .btn-sm svg {
    display: none; /* Keep button slim on micro screens */
  }
  .display-title {
    font-size: 2.1rem;
  }
  .h2 {
    font-size: 1.65rem;
  }
}
