/* ============================================================
   87 WEST BAR & RESTAURANT — Stylesheet
   Design System by Ines Vega | Built by Zoe Park
   ============================================================ */

/* ── Self-hosted fonts ── */
@font-face {
  font-family: 'Goodnight London Script';
  src: url('/fonts/goodnight-london-script.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties ── */
:root {
  /* Background */
  --color-bg: #0A0A0A;
  --color-surface: #141414;
  --color-surface-raised: #1E1D1B;
  --color-border: #2C2B29;

  /* Accents */
  --color-gold: #C9922A;
  --color-gold-light: #E8B96A;
  --color-gold-dark: #8B5E1A;
  --color-brick: #6B3A30;
  --color-ember: #4A2520;

  /* Text */
  --color-text: #F4F0E8;
  --color-text-secondary: #A09A90;
  --color-text-muted: #6B6560;
  --color-text-inverse: #0A0A0A;

  /* Gradients */
  --gradient-hero: linear-gradient(to top, #0A0A0A 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.2) 100%);
  --gradient-gold: linear-gradient(135deg, #C9922A 0%, #E8B96A 50%, #C9922A 100%);
  --gradient-section: linear-gradient(to bottom, #0A0A0A, #1E1D1B, #0A0A0A);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  scroll-padding-top: 160px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}

.display {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.body-large {
  font-size: clamp(17px, 2vw, 18px);
  line-height: 1.8;
  font-weight: 300;
  color: var(--color-text-secondary);
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-primary:active {
  background: var(--color-gold-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-gold);
  padding: 13px 31px;
}

.btn-ghost:hover {
  background: rgba(201,146,42,0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  padding-bottom: 2px;
}

.link-arrow:hover {
  border-bottom-color: var(--color-gold);
}

.link-arrow .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}

.link-arrow:hover .arrow {
  transform: translateX(4px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

.nav-logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1023px) {
  .nav-logo-img {
    height: 56px;
    max-height: 56px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #F5F0E8;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  position: relative;
  padding: 8px 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.nav-links a:hover {
  color: var(--color-gold);
  text-decoration-color: var(--color-gold);
}

.nav-links a.active {
  color: var(--color-gold);
  font-weight: 500;
  text-decoration-color: var(--color-gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 1020;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 8, 5, 0.95);
  backdrop-filter: blur(24px) brightness(0.6);
  -webkit-backdrop-filter: blur(24px) brightness(0.6);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  overflow: hidden;
  justify-content: flex-start;    /* links near top, not centred mid-screen */
  padding-top: 110px;             /* clears close button + breathing room */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay a {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(28px, 6vw, 52px);   /* was clamp(40px,8vw,64px) — smaller */
  font-weight: 400;
  color: #C9922A !important;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;                 /* was 8px — less vertical space */
  transition: color 0.2s ease;
}

.nav-overlay a:hover,
.nav-overlay a.active {
  color: #F5F0E8 !important;
  opacity: 0.85;
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #C9922A;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  z-index: 1011;
}

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 var(--space-lg);
  }
}

/* ── Hero — Home ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  max-width: 720px;
}

.hero-content .section-label {
  color: var(--color-gold);
}

.hero-content .section-label::before {
  background: var(--color-gold);
}

.hero-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ── Shorter Hero (About, Private Hire) ── */
.hero-short {
  height: 65vh;
  min-height: 420px;
}

/* ── Sections ── */
.section {
  padding: var(--space-4xl) 0;
}

@media (max-width: 767px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}

.section-header {
  margin-bottom: var(--space-3xl);
}

/* ── Atmosphere Strip ── */
.atmosphere-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.atmosphere-strip-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.atmosphere-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.atmosphere-strip-item:hover img {
  transform: scale(1.04);
}

.atmosphere-strip-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.atmosphere-strip-item:hover .overlay {
  background: rgba(0,0,0,0.1);
}

@media (max-width: 767px) {
  .atmosphere-strip {
    grid-template-columns: 1fr;
  }
}

/* ── Split Layout (About Tease, Sports) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

@media (max-width: 767px) {
  .split {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split.reverse {
    direction: ltr;
  }
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.6s ease;
}

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

/* ── Cocktail Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 767px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-xl);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 0 40px rgba(201,146,42,0.08);
}

.card-label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ── Sports Callout ── */
.sports-callout {
  background: linear-gradient(135deg, var(--color-ember) 0%, var(--color-surface) 60%, var(--color-bg) 100%);
  padding: var(--space-4xl) 0;
}

/* ── Private Hire Tease ── */
.private-hire-tease {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.private-hire-tease .bg-image {
  position: absolute;
  inset: 0;
}

.private-hire-tease .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.private-hire-tease .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
}

.private-hire-tease .content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* ── About Gallery ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}

.gallery-mosaic-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-mosaic-item:hover img {
  transform: scale(1.04);
}

.gallery-mosaic-item .caption-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transition: background 0.3s ease;
}

.gallery-mosaic-item:hover .caption-overlay {
  background: rgba(0,0,0,0.5);
}

.gallery-mosaic-item .caption-text {
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-mosaic-item:hover .caption-text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Experience Pillars ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 767px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.pillar:hover {
  border-color: var(--color-gold);
}

.pillar-icon {
  font-size: 36px;
  margin-bottom: var(--space-md);
  display: block;
}

.pillar h3 {
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.pillar p {
  font-size: 15px;
  color: var(--color-text-secondary);
}

/* ── Pull Quote ── */
.pull-quote {
  padding: var(--space-5xl) 0;
  text-align: center;
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.4;
  max-width: 840px;
  margin: 0 auto;
}

.pull-quote blockquote::before {
  content: '\201C';
  color: var(--color-gold);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.3em;
}

.pull-quote blockquote::after {
  content: '\201D';
  color: var(--color-gold);
  font-size: 1.2em;
  line-height: 0;
  vertical-align: -0.3em;
}

/* ── Menu Page ── */
.menu-coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--nav-height) var(--space-lg) var(--space-4xl);
}

.menu-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/craft-cocktail-closeup.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.menu-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}

.menu-gold-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto var(--space-xl);
}

/* Email capture */
.email-capture {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
}

.email-capture input {
  flex: 1;
  min-width: 220px;
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-capture input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201,146,42,0.15);
}

.email-capture input::placeholder {
  color: var(--color-text-muted);
}

/* ── Private Hire Page ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1023px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  text-align: center;
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: var(--space-md);
  display: block;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.feature-item p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Occasion Cards */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

@media (max-width: 1023px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

.occasion-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-xl);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.occasion-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.occasion-card h3 {
  font-size: 22px;
  margin-bottom: var(--space-sm);
  color: var(--color-gold-light);
}

.occasion-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ── Forms ── */
.form-section {
  background: var(--color-surface);
  padding: var(--space-4xl) 0;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 767px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(201,146,42,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A09A90' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

.form-select option {
  background: var(--color-surface-raised);
  color: var(--color-text);
}

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

.form-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.form-success {
  text-align: center;
  padding: var(--space-2xl);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  margin-bottom: var(--space-xl);
}

.form-success p {
  color: var(--color-gold-light);
  font-size: 16px;
}

.form-error {
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-brick);
  border-radius: 4px;
  margin-bottom: var(--space-xl);
}

.form-error p {
  color: #e87b6a;
  font-size: 15px;
}

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

@media (max-width: 767px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: var(--space-xl);
}

.contact-detail {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.contact-detail p,
.contact-detail a {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.contact-detail a:hover {
  color: var(--color-text);
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: var(--space-sm) 0;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--color-text);
  width: 100px;
}

.hours-table .today td {
  color: var(--color-gold-light);
}

.hours-table .today td:first-child {
  color: var(--color-gold);
}

.hours-table .closed td {
  color: var(--color-text-muted);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  font-size: 16px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ── Footer ── */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-img {
  height: 50px;
  max-height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(44,43,41,0.5);
}

.footer-hours-row.today {
  color: var(--color-gold);
  font-weight: 500;
}

.footer-address {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

/* Shared social icon button — used in footer + contact */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ── Decorative / Utility ── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: var(--space-md);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-secondary { color: var(--color-text-secondary); }
.text-muted { color: var(--color-text-muted); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ── Page Load Fade ── */
body {
  animation: pageLoad 0.4s ease-out both;
}

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

/* ── Focus Styles (Accessibility) ── */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }

  .fade-up, .fade-in, .slide-left {
    opacity: 1;
    transform: none;
  }
}

/* ── Noise/Grain Texture overlay ── */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* ── SPA Loading Bar (Task 2) ── */
#spa-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-gold);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: width 0.6s cubic-bezier(0.1, 0.4, 0.3, 1), opacity 0.15s ease;
}

#spa-progress.loading {
  opacity: 1;
  width: 75%;
}

#spa-progress.complete {
  width: 100%;
  opacity: 0;
  transition: width 0.2s ease, opacity 0.35s ease 0.15s;
}

/* SPA page transition */
.spa-enter {
  animation: pageLoad 0.28s ease-out both;
}

/* ── Bg 87 Numeral (About) ── */
.bg-numeral {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 320px;
  font-weight: 400;
  color: var(--color-surface-raised);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section-relative {
  position: relative;
  overflow: hidden;
}

/* ===== MENU PAGE ===== */

/* Category tabs */
.menu-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
}

.menu-tab-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 24px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-tab-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.menu-tab-btn.active {
  color: var(--color-text-inverse);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* Group pill navigation */
.menu-group-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
}

.menu-group-pill {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.menu-group-pill:hover,
.menu-group-pill.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 146, 42, 0.06);
}

/* Group sections */
.menu-category {
  display: block;
}

.menu-category.hidden {
  display: none;
}

.menu-group {
  margin-bottom: var(--space-4xl);
}

.menu-group-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.menu-group-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold-dark), transparent);
}

/* Items grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Menu item tags ── */
.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.menu-item-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1;
}

.menu-item-tag--happy-hour {
  background: var(--color-gold-dark);
  color: var(--color-gold-light);
  border: 1px solid var(--color-gold);
}

.menu-item-tag--promotion {
  background: var(--color-ember);
  color: var(--color-gold-light);
  border: 1px solid var(--color-brick);
}

.menu-item-tag--hot {
  background: transparent;
  padding: 2px 0;
  border: none;
  gap: 2px;
}

.menu-item-tag--hot img {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/* Item card */
.menu-item-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  box-sizing: border-box;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.menu-item-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) var(--space-xl);
}

.menu-item-image-wrap {
  flex-shrink: 0;
  max-width: 40%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.menu-item-image {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

.menu-item-card:hover {
  border-color: rgba(201, 146, 42, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.menu-item-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #F5F0E8;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #8A8278;
  line-height: 1.65;
  margin: 0;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold-light);
  margin: var(--space-xs) 0 0;
}

.menu-item-location {
  display: block;
  font-style: italic;
  color: #6e6760;
  margin-top: 0.25em;
}

/* Skeleton loader */
.menu-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 767px) {
  .menu-skeleton-grid {
    grid-template-columns: 1fr;
  }
}

.menu-skeleton-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: var(--space-lg) var(--space-xl);
  overflow: hidden;
}

.menu-skeleton-line {
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--color-surface-raised) 25%,
    rgba(255, 255, 255, 0.04) 50%,
    var(--color-surface-raised) 75%
  );
  background-size: 200% 100%;
  animation: menuShimmer 1.6s ease-in-out infinite;
  margin-bottom: var(--space-sm);
}

.menu-skeleton-line--title {
  height: 18px;
  width: 60%;
}

.menu-skeleton-line--body {
  height: 13px;
  width: 90%;
}

.menu-skeleton-line--short {
  width: 70%;
}

@keyframes menuShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error state */
.menu-error {
  text-align: center;
  padding: var(--space-5xl) var(--space-lg);
}

.menu-error-inner {
  display: inline-block;
  max-width: 480px;
}

.menu-error-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.menu-error-sub {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== MENU PAGE — REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .menu-skeleton-line {
    animation: none;
    background: var(--color-surface-raised);
  }

  .menu-item-card {
    transition: none;
  }

  .spa-enter {
    animation: none;
  }
}

/* ===== MENU PAGE — STICKY GROUP SELECTOR ===== */
.menu-sticky-header {
  /* Positioning handled by JS (fixed on scroll) — no sticky/position here */
  z-index: 500;
  background-color: var(--color-bg);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.menu-sticky-header .menu-tabs {
  margin-bottom: var(--space-md);
}

.menu-sticky-header .menu-group-nav {
  margin-bottom: 0;
}

/* ===== POLICIES PAGE ===== */
.policies-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.policies-body {
  max-width: 820px;
}

.policy-section {
  padding: var(--space-3xl) 0;
}

.policy-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-gold);
}

.policy-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2xl);
}

.policy-section h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.policy-section p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.policy-section a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.policy-section a:hover {
  text-decoration-color: var(--color-gold-light);
}

.policy-list {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-list li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
}

.policy-divider {
  height: 1px;
  background: var(--color-border);
}

/* ===== CONTACT MAP EMBED ===== */
.contact-map-embed {
  border-top: 1px solid var(--color-border);
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 350px;
}

@media (max-width: 767px) {
  .contact-map-embed iframe {
    height: 250px;
  }
}

/* ===== SECTION LABELS — hidden site-wide ===== */
.section-label {
  display: none !important;
}

/* ===== MENU: no gap between sticky header and content ===== */
#menu-content {
  margin-top: 0;
  padding-top: 0;
}

/* ── Contact Hero ── */
.contact-hero {
  position: relative;
  height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
}
.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl);
  width: 100%;
}
.contact-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: #F5F0E8;
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
}
.contact-hero-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0;
}
@media (max-width: 767px) {
  .contact-hero { height: clamp(260px, 40vh, 380px); }
  .contact-hero-content { padding: var(--space-lg) var(--space-md); }
}

/* ══════════════════════════════════════════
   EVENTS — Page-specific helpers
   ══════════════════════════════════════════ */

/* Hero background for events page */
.events-hero-bg {
  background-image: url('/images/interior-spirits-shelves.png');
}

/* Gold section label variant */
.section-label--gold {
  color: var(--color-gold);
}

/* Events timeline section vertical padding */
.events-section {
  padding-top: var(--space-5xl);
  padding-bottom: var(--space-5xl);
}

/* ══════════════════════════════════════════
   EVENTS — Vertical Timeline
   ══════════════════════════════════════════ */

/* ── Container ── */
.timeline {
  position: relative;
  padding: var(--space-3xl) 0;
}

/* Centre line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--color-gold);
  opacity: 0.6;
}

/* ── Each timeline item ── */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-4xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Left items: card on the left, badge on the right of it */
.timeline-item--left {
  flex-direction: row;
  justify-content: flex-start;
}

.timeline-item--left .timeline-card {
  margin-right: calc(50% + 56px);
}

/* Right items: card on the right */
.timeline-item--right {
  flex-direction: row;
  justify-content: flex-end;
}

.timeline-item--right .timeline-card {
  margin-left: calc(50% + 56px);
}

/* ── Date badge — sits on the centre line ── */
.timeline-date {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 4px #0A0A0A, 0 0 0 6px var(--color-gold);
  flex-shrink: 0;
}

.timeline-date-month {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}

.timeline-date-day {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

/* ── Connector dot (smaller dot for connecting card edge to line) ── */
.timeline-dot {
  display: none; /* badge already acts as the node */
}

/* ── Card ── */
.timeline-card {
  background: #1A1612;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 520px;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 146, 42, 0.15);
}

/* ── Thumbnail ── */
.timeline-thumb {
  width: 300px;
  min-width: 300px;
  height: auto;
  display: block;
  border-radius: 0;
  flex-shrink: 0;
  align-self: stretch;
  object-fit: cover;
  object-position: center center;
}

.timeline-thumb--fallback {
  width: 300px;
  min-width: 300px;
  height: 300px;
  background: #0F0D0B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
}

.timeline-thumb-logo {
  width: 72px;
  height: auto;
  opacity: 0.35;
  filter: saturate(0);
}

/* ── Card body ── */
.timeline-card-body {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1;
}

.timeline-time {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.timeline-day {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: italic;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: #F5F0E8;
  line-height: 1.2;
  margin: 0;
}

.timeline-description {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ── Empty state ── */
.events-empty {
  text-align: center;
  padding: var(--space-5xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.events-empty-icon {
  color: var(--color-text-muted);
  opacity: 0.5;
}

.events-empty-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* ══════════════════════════════════════════
   EVENTS — Mobile (single column)
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Move centre line to left edge */
  .timeline::before {
    left: 32px;
    transform: none;
  }

  /* All items stack to the right of the line */
  .timeline-item--left,
  .timeline-item--right {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-item--left .timeline-card,
  .timeline-item--right .timeline-card {
    margin-right: 0;
    margin-left: 80px;
    max-width: 100%;
  }

  /* Badge pinned to the left line */
  .timeline-date {
    left: 32px;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    top: 16px;
  }

  .timeline-date-day {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .timeline-card {
    flex-direction: column;
  }

  .timeline-thumb,
  .timeline-thumb--fallback {
    width: 100%;
    min-width: unset;
    height: 200px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .timeline-thumb {
    min-height: 200px;
    object-fit: cover;
  }
}
