/* ============================================================
   BOLERO's — Premium Tapas Redesign Demo
   Eigenes Restaurant-Design-System (warm, dunkel, abendlich)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --bg:          #16110d;   /* warm near-black */
  --bg-2:        #1c1610;   /* alt section */
  --surface:     #221a12;   /* cards */
  --surface-2:   #2a2017;
  --wine:        #5a1a1a;   /* oxblood depth */
  --gold:        #c8a45c;   /* brass accent */
  --gold-bright: #e6c982;
  --cream:       #f2e9dc;   /* primary text */
  --muted:       #a8977e;   /* secondary text */
  --line:        rgba(200, 164, 92, 0.20);  /* gold hairline */
  --line-soft:   rgba(242, 233, 220, 0.08);

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;

  /* Fluid scale */
  --t-eyebrow: 0.78rem;
  --t-body:    clamp(1rem, 0.97rem + 0.2vw, 1.12rem);
  --t-h3:      clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem);
  --t-h2:      clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  --t-h1:      clamp(3rem, 2rem + 5.5vw, 6.5rem);

  /* Layout */
  --max:       1180px;
  --gutter:    clamp(20px, 5vw, 56px);
  --section-py: clamp(72px, 9vw, 140px);
  --nav-h:     74px;

  --radius:    4px;
  --radius-lg: 10px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  /* Skill #1: Scrollbar darf Fixed-Nav nicht überlappen */
  scrollbar-width: thin;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
}
html::-webkit-scrollbar { width: 0; background: transparent; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Film-grain Textur */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
}
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); font-weight: 500; }

.serif-accent { font-style: italic; color: var(--gold-bright); font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow--center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-py); position: relative; z-index: 2; }
.section--alt { background: var(--bg-2); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 68px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05em 2em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  white-space: normal;          /* Skill #4 */
  text-align: center;
  line-height: 1.3;
}
.btn--gold {
  background: var(--gold);
  color: #1a130b;
  box-shadow: 0 8px 30px -10px rgba(200, 164, 92, 0.5);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(200, 164, 92, 0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn--sm { padding: 0.85em 1.5em; font-size: 0.74rem; }
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 13, 9, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo {
  flex-shrink: 0;                /* Skill #1 */
  display: block;
  line-height: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }
.nav-phone:hover { color: var(--gold-bright); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-shrink: 0;               /* Skill #1 */
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav-toggle.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(18,13,9,0.55) 0%, rgba(18,13,9,0.55) 40%, rgba(18,13,9,0.94) 100%),
    linear-gradient(90deg, rgba(18,13,9,0.85) 0%, rgba(18,13,9,0.35) 60%, rgba(18,13,9,0.2) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 720px; padding-block: clamp(60px, 10vh, 120px); }
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: var(--t-h1);
  font-weight: 600;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero-sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  color: var(--cream);
  opacity: 0.86;
  max-width: 540px;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.hero-meta-item { display: flex; align-items: center; gap: 11px; }
.hero-meta-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.hero-meta-item .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-item .value { font-size: 0.95rem; color: var(--cream); }
.hero-meta-item .value .open-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6fbf73;
  margin-right: 6px;
  box-shadow: 0 0 8px #6fbf73;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================
   STORY
   ============================================================ */
.story { position: relative; }
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-text .eyebrow { margin-bottom: 24px; }
.story-text h2 { margin-bottom: 26px; }
.story-text p { color: var(--muted); margin-bottom: 18px; }
.story-text p .lead { color: var(--cream); }
.story-sign {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-bright);
}
.story-visual { position: relative; }
.story-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: -1;
}
.story-badge {
  position: absolute;
  left: -22px; bottom: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
}
.story-badge .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.story-badge .cap {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   SIGNATURES
   ============================================================ */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.sig-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.sig-card:hover { transform: translateY(-8px); border-color: var(--line); }
.sig-card-img { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.sig-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.sig-card:hover .sig-card-img img { transform: scale(1.06); }
.sig-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(18, 13, 9, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 100px;
}
.sig-card-body { padding: 24px 24px 28px; }
.sig-card-body h3 { margin-bottom: 8px; }
.sig-card-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 18px; min-height: 44px; }
.sig-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.sig-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.sig-price small { font-size: 0.8rem; color: var(--muted); font-family: var(--sans); }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg-2); }
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.menu-block { margin-bottom: 44px; }
.menu-block:last-child { margin-bottom: 0; }
.menu-block-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
}
.menu-block-head h3 {
  font-size: 1.7rem;
  color: var(--cream);
  white-space: nowrap;
}
.menu-block-head .es {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-block-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.menu-item-main { flex: 1; }
.menu-item-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.menu-item-name .veg { color: var(--gold); font-size: 0.8em; margin-left: 5px; }
.menu-item-desc { font-size: 0.84rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.menu-item-dots {
  flex: 1;
  align-self: flex-start;
  margin-top: 11px;
  border-bottom: 1px dotted rgba(168, 151, 126, 0.45);
  min-width: 18px;
}
.menu-item-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}
.menu-cta { text-align: center; margin-top: 54px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,13,9,0.5));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gal-item:hover img { transform: scale(1.07); }
.gal-item:hover::after { opacity: 1; }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 7, 4, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,0.7); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); rotate: 90deg; }

/* ============================================================
   RESERVATION
   ============================================================ */
.reserve { background: var(--bg-2); }
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.reserve-info .eyebrow { margin-bottom: 24px; }
.reserve-info h2 { margin-bottom: 22px; }
.reserve-info > p { color: var(--muted); margin-bottom: 34px; max-width: 440px; }

.info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.info-row { display: flex; gap: 16px; }
.info-row .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.info-row .ic svg { width: 20px; height: 20px; }
.info-row h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-row .info-val { color: var(--cream); font-size: 1rem; }
.info-row .info-val a:hover { color: var(--gold-bright); }
.hours-line { display: flex; justify-content: space-between; gap: 20px; max-width: 280px; }
.hours-line span:last-child { color: var(--muted); }
.hours-line.closed span { color: #b06a5a; }

.map-embed {
  margin-top: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 200px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) sepia(0.2) brightness(0.85); }

/* Form */
.reserve-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
}
.reserve-form h3 { margin-bottom: 6px; }
.reserve-form .form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.85em 1em;
  transition: border-color 0.3s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field select { appearance: none; cursor: pointer; }
.reserve-form .btn { margin-top: 10px; }
.form-legal { font-size: 0.74rem; color: var(--muted); text-align: center; margin-top: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  margin-top: 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(200, 164, 92, 0.08);
  color: var(--gold-bright);
  font-size: 0.92rem;
}
.form-success.show { display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { text-align: center; margin-bottom: 56px; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.3rem; }
.reviews-rating .score { font-family: var(--serif); font-size: 2rem; color: var(--cream); font-weight: 600; }
.reviews-rating .count { font-size: 0.86rem; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.review-card .q-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 8px;
}
.review-card p { font-size: 0.98rem; color: var(--cream); opacity: 0.9; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-author .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}
.review-author .meta strong { display: block; font-weight: 500; font-size: 0.92rem; }
.review-author .meta span { font-size: 0.76rem; color: var(--muted); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-strip .container { position: relative; z-index: 2; }
.cta-strip .eyebrow { margin-bottom: 22px; }
.cta-strip h2 { margin-bottom: 22px; max-width: 720px; margin-inline: auto; }
.cta-strip p { color: var(--muted); max-width: 460px; margin: 0 auto 34px; }
.cta-strip-bg { position: absolute; inset: 0; z-index: 0; }
.cta-strip-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-strip-bg::after { content: ''; position: absolute; inset: 0; background: rgba(18,13,9,0.85); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: clamp(56px, 7vw, 90px) 32px; position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 20px; display: inline-block; }
.footer-brand .nav-logo img { height: 62px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: var(--muted); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 12px; margin-top: 22px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--cream); }

/* Demo disclaimer ribbon */
.demo-ribbon {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(90, 26, 26, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 50px 9px 16px;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.demo-ribbon b { color: var(--gold-bright); font-weight: 500; }
.demo-ribbon.hidden { transform: translateY(100%); }
.demo-ribbon button {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.1rem;
  opacity: 0.7;
}
.demo-ribbon button:hover { opacity: 1; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav-menu-open .nav-links {
    display: flex;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(18, 13, 9, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 24px;
  }
  .nav-menu-open .nav-links li { width: 100%; }
  .nav-menu-open .nav-links a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }

  .story-grid { grid-template-columns: 1fr; }
  .story-visual { max-width: 460px; }
  .story-visual::before { display: none; }
  .menu-cols { grid-template-columns: 1fr; gap: 0; }
  .reserve-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  /* Nav reserve button redundant with hero CTA + menu anchor — frees space for hamburger */
  .nav-actions .btn { display: none; }
  .nav-logo img { height: 38px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--tall { grid-row: span 1; }
  .story-badge { left: 12px; right: 12px; bottom: 12px; }
}

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