/* =====================================================
   HOUSE OF FLAVORS — Styles
   Color Scheme: Deep Burgundy · Forest Teal · Cream
   ===================================================== */

/* ── Custom Properties ─────────────────────────────── */
:root {
  --gold:        #2C4742;
  --gold-light:  #4A8278;
  --gold-pale:   #D0E8E3;
  --burgundy:    #2C0E0E;
  --burgundy-mid:#6B1414;
  --burgundy-lt: #8D2020;
  --cream:       #F7F0E6;
  --cream-dark:  #EDE0CC;
  --charcoal:    #1A1212;
  --text-dark:   #2A1A1A;
  --text-mid:    #5A4040;
  --text-light:  #9A8080;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
  --font-light:  'Cormorant Garamond', Georgia, serif;

  --section-pad: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-card: 0 8px 40px rgba(44,14,14,0.12);
  --shadow-hover:0 20px 60px rgba(44,14,14,0.22);
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--burgundy);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em { font-style: italic; color: var(--gold); }

.italic { font-style: italic; }

/* ── Container ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ── Section Shared ─────────────────────────────────── */
.section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44,71,66,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--burgundy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}

.preloader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 0;
  animation: preloader-line 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes preloader-line {
  0%   { width: 0; opacity: 0; }
  50%  { width: 200px; opacity: 1; }
  100% { width: 0; opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(26, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.85);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.3s, background 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 1.7rem);
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
  white-space: nowrap;
  margin-left: 0.75rem;
}

.nav-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 8, 8, 0.35) 0%,
    rgba(26, 8, 8, 0.55) 50%,
    rgba(26, 8, 8, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .italic {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 2.8rem;
  line-height: 1.9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: scroll-hint-fade 2.5s ease-in-out 2s infinite alternate;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0) translateY(-100%); opacity: 0; }
  50%  { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(0) translateY(100%); opacity: 0; }
}

@keyframes scroll-hint-fade {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   STRIP / MARQUEE
   ══════════════════════════════════════════════════════ */
.strip {
  background: var(--burgundy);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(44,71,66,0.2);
  border-bottom: 1px solid rgba(44,71,66,0.2);
}

.strip-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.strip-inner span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.strip-dot {
  color: var(--gold) !important;
  font-size: 0.7rem !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-small {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-card);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-img-small:hover img { transform: scale(1.06); }

.about-badge {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(44,71,66,0.35);
  text-align: center;
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.about-text { padding-left: 1rem; }

.about-lead {
  font-family: var(--font-light);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.feature-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--burgundy);
  display: block;
  margin-bottom: 0.15rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ══════════════════════════════════════════════════════
   NUMBERS
   ══════════════════════════════════════════════════════ */
.numbers-section {
  background: var(--burgundy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.numbers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(44,71,66,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-item {
  position: relative;
}

.number-item + .number-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(44,71,66,0.25);
}

.number-val {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: inline-block;
}

.number-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  vertical-align: top;
  margin-top: 0.25rem;
  display: inline-block;
}

.number-item p {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,201,122,0.6);
  margin-top: 0.6rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   MENU — PDF Downloads
   ══════════════════════════════════════════════════════ */
.menu {
  background: var(--white);
}

/* 3-column grid */
.menu-downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

/* Each column */
.menu-dl-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Category block */
.menu-dl-category {
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: box-shadow var(--transition);
}

.menu-dl-category:hover {
  box-shadow: var(--shadow-card);
}

/* Category heading */
.menu-dl-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  background: var(--burgundy);
  padding: 1rem 1.25rem;
  margin: 0;
  line-height: 1.3;
}

.menu-dl-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-dl-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

/* Link list */
.menu-dl-list {
  list-style: none;
  padding: 0.5rem 0;
}

.menu-dl-list li {
  border-bottom: 1px solid var(--cream-dark);
}

.menu-dl-list li:last-child {
  border-bottom: none;
}

/* Individual link row */
.menu-dl-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
  position: relative;
}

.menu-dl-link:hover {
  background: rgba(44,71,66,0.07);
  color: var(--gold);
  padding-left: 1.5rem;
}

/* PDF icon badge */
.dl-pdf-icon {
  width: 26px;
  height: 26px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}

.dl-pdf-icon svg {
  width: 16px;
  height: 16px;
  color: var(--white);
  fill: var(--white);
}

.menu-dl-link:hover .dl-pdf-icon {
  background: var(--burgundy);
  transform: scale(1.1);
}

.dl-label {
  flex: 1;
  line-height: 1.4;
}

.dl-arrow {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s;
}

.menu-dl-link:hover .dl-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* CTA strip */
.menu-cta {
  text-align: center;
  margin-top: 0;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid var(--cream-dark);
}

.menu-cta p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   EXPERIENCE (CTA BAND)
   ══════════════════════════════════════════════════════ */
.experience-section {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  text-align: center;
}

.experience-bg {
  position: absolute;
  inset: 0;
}

.experience-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,8,8,0.82) 0%, rgba(107,20,20,0.75) 100%);
}

.experience-content {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════ */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
  padding: 0 clamp(0.75rem, 3vw, 2rem);
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,8,8,0.55);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════
   REELS / VIDEO SECTION
   ══════════════════════════════════════════════════════ */
.reels {
  background: var(--charcoal);
}

.reels .section-eyebrow { color: var(--gold-light); }
.reels .section-title   { color: var(--white); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.reel-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
}

.reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .reels-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .reel-item  { border-radius: 8px; }
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials {
  background: var(--burgundy);
  overflow: hidden;
}

.testimonials .section-eyebrow { color: var(--gold); }

.testimonials .section-title { color: var(--white); }

.testimonials-track-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.75rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(44,71,66,0.2);
  border-radius: 8px;
  padding: 2.5rem 2.2rem;
  min-width: calc(50% - 0.9rem);
  flex-shrink: 0;
  position: relative;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-light);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(247,240,230,0.88);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  display: block;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.stars {
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44,71,66,0.15);
  border: 1px solid rgba(44,71,66,0.35);
  color: var(--gold-light);
  font-size: 1.3rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  z-index: 2;
}

.testimonial-prev { left: -0.5rem; }
.testimonial-next { right: -0.5rem; }

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(44,71,66,0.35);
  border-color: var(--gold);
}

/* ── Google Reviews Widget ── */
.gr-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.4rem 2rem;
  margin-bottom: 2.5rem;
}
.gr-summary-inner {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.gr-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z'/%3E%3Cpath fill='%23FF3D00' d='M6.306 14.691l6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238C29.211 35.091 26.715 36 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.611 20.083H42V20H24v8h11.303c-.792 2.237-2.231 4.166-4.087 5.571l6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gr-summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.gr-summary-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.gr-summary-score {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.gr-summary-stars {
  font-size: 1.1rem;
  color: #FBBC04;
  letter-spacing: 0.08em;
}
.gr-summary-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.gr-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.gr-write-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
/* Google review cards */
.testimonial-card.gr-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.gr-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}
.gr-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-sans);
  border: none;
}
.gr-user {
  flex: 1;
  min-width: 0;
}
.gr-name {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: #202124;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-sans);
}
.gr-guide {
  display: block;
  font-size: 0.74rem;
  color: #70757a;
  font-family: var(--font-sans);
}
.gr-g {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23FFC107' d='M43.611 20.083H42V20H24v8h11.303c-1.649 4.657-6.08 8-11.303 8-6.627 0-12-5.373-12-12s5.373-12 12-12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 12.955 4 4 12.955 4 24s8.955 20 20 20 20-8.955 20-20c0-1.341-.138-2.65-.389-3.917z'/%3E%3Cpath fill='%23FF3D00' d='M6.306 14.691l6.571 4.819C14.655 15.108 18.961 12 24 12c3.059 0 5.842 1.154 7.961 3.039l5.657-5.657C34.046 6.053 29.268 4 24 4 16.318 4 9.656 8.337 6.306 14.691z'/%3E%3Cpath fill='%234CAF50' d='M24 44c5.166 0 9.86-1.977 13.409-5.192l-6.19-5.238C29.211 35.091 26.715 36 24 36c-5.202 0-9.619-3.317-11.283-7.946l-6.522 5.025C9.505 39.556 16.227 44 24 44z'/%3E%3Cpath fill='%231976D2' d='M43.611 20.083H42V20H24v8h11.303c-.792 2.237-2.231 4.166-4.087 5.571l6.19 5.238C36.971 39.205 44 34 44 24c0-1.341-.138-2.65-.389-3.917z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gr-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.gr-stars {
  font-size: 0.92rem;
  color: #FBBC04;
  letter-spacing: 0.04em;
}
.gr-when {
  font-size: 0.76rem;
  color: #70757a;
  font-family: var(--font-sans);
}
.gr-text {
  font-size: 0.87rem;
  line-height: 1.72;
  color: #3c4043;
  font-style: normal;
  font-family: var(--font-sans);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════
   RESERVATIONS
   ══════════════════════════════════════════════════════ */
.reservations {
  position: relative;
  overflow: hidden;
}

.reservations-bg {
  position: absolute;
  inset: 0;
}

.reservations-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reservations-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,8,8,0.95) 0%, rgba(44,14,14,0.88) 55%, rgba(26,8,8,0.7) 100%);
}

.reservations-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.opening-hours {
  list-style: none;
  margin-bottom: 2rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(44,71,66,0.18);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.opening-hours li span:first-child { font-weight: 700; color: var(--white); }

.reservations-tel {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
}

.reservations-tel a {
  color: var(--white);
  transition: color 0.3s;
}

.reservations-tel a:hover { color: var(--gold-light); }

.widget-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(44,71,66,0.2);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════════════════
   LOCATION
   ══════════════════════════════════════════════════════ */
.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  min-height: 500px;
  overflow: hidden;
}

.location-info {
  background: var(--burgundy);
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
}

.location-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.location-address {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  background: rgba(44,71,66,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-item strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.location-detail-item p,
.location-detail-item a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  transition: color 0.3s;
}

.location-detail-item a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(44,71,66,0.12);
  border: 1px solid rgba(44,71,66,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.social-link svg { width: 16px; height: 16px; }

.social-link:hover {
  background: rgba(44,71,66,0.25);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.location-map {
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}

.location-map:hover iframe { filter: grayscale(0%); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer { background: var(--charcoal); }

.footer-top {
  padding: clamp(4rem, 7vw, 6rem) 0 3rem;
  border-bottom: 1px solid rgba(44,71,66,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col li,
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  line-height: 1.6;
}

.footer-col a:hover { color: var(--gold-light); }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem !important;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-list li span:first-child {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 700;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s, background 0.3s;
  z-index: 500;
  box-shadow: 0 6px 24px rgba(44,71,66,0.4);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal-fade,
.reveal-slide-left,
.reveal-slide-right,
.reveal-line {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade         { transform: translateY(28px); }
.reveal-slide-left   { transform: translateX(-40px); }
.reveal-slide-right  { transform: translateX(40px); }
.reveal-line         { transform: translateY(100%); clip-path: inset(0 0 100% 0); }

.reveal-fade.visible,
.reveal-slide-left.visible,
.reveal-slide-right.visible {
  opacity: 1;
  transform: translate(0);
}

.reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 560px; margin: 0 auto; }
  .about-text { padding-left: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 3rem; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(n+3)::before { display: none; }

  .menu-downloads-grid { grid-template-columns: 1fr 1fr; }

  .reservations-inner { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { min-height: 350px; }

  .testimonial-card { min-width: calc(50% - 0.9rem); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: rgba(26,8,8,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 2.5rem 2.5rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1050;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }

  .about-img-small { display: none; }
  .about-badge { top: auto; bottom: -1rem; right: 1rem; }

  .menu-downloads-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery-item.wide  { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
  .testimonial-card { min-width: calc(100% - 1rem); }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }

  .numbers-grid { grid-template-columns: 1fr 1fr; }

  .menu-tabs { gap: 0.4rem; }
  .menu-tab { padding: 0.5rem 1rem; }

  .menu-grid { grid-template-columns: 1fr; }
}
