:root {
  --wine:        #8B1A1A;
  --wine-dark:   #5C1A28;
  --wine-deep:   #3D0E18;
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201,168,76,0.15);
  --bg-page:     #0F0B09;
  --bg-dark:     #1C1410;
  --bg-mid:      #F0EBE3;
  --bg-light:    #FAF8F5;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-glass:    rgba(28,20,16,0.72);
  --text:        #1A1A1A;
  --text-muted:  #6B6560;
  --white:       #ffffff;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Lato', sans-serif;
  --nav-font:    'Montserrat', sans-serif;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.22), 0 1px 4px rgba(0,0,0,0.15);
  --shadow-hover:0 20px 60px rgba(0,0,0,0.38), 0 4px 16px rgba(92,26,40,0.22);
  --shadow-btn:  0 4px 18px rgba(139,26,26,0.45);
  --shadow-gold: 0 4px 18px rgba(201,168,76,0.35);
  --glass-border:1px solid rgba(201,168,76,0.18);
  --transition:  all 0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.55s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 114px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 1.0625rem; line-height: 1.75; color: var(--text); background: var(--bg-page); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); letter-spacing: 0.01em; }
h3 { font-size: 1.5rem; }
p  { margin-bottom: 1.25rem; color: var(--text-muted); line-height: 1.85; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

.divider { display: flex; align-items: center; gap: 16px; margin: 0 auto 3rem; max-width: 200px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--gold); }
.divider-icon { color: var(--gold); font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--nav-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.07);
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { left: 150%; }
.btn-primary {
  background: rgba(139,26,26,0.18);
  color: var(--white);
  border: 1px solid rgba(139,26,26,0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  border-color: var(--wine);
  box-shadow: 0 8px 28px rgba(139,26,26,0.55);
  transform: translateY(-3px) scale(1.01);
}
.btn-primary:active { transform: translateY(-1px) scale(1); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(201,168,76,0.08);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px) scale(1.01);
}
.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
  box-shadow: 0 2px 8px rgba(139,26,26,0.1);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow-btn);
  transform: translateY(-3px) scale(1.01);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8963E 100%);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(201,168,76,0.5);
}

/* ── NAV ── */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: var(--transition); }
.nav-wrap.scrolled { background: rgba(44,31,19,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.nav-top { background: #2C1F13; border-bottom: 1px solid rgba(201,168,76,0.2); }
.nav-top-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 40px; max-width: 1200px; margin: 0 auto; gap: 16px; }
.nav-top-contact { display: flex; align-items: center; gap: 24px; font-family: var(--nav-font); font-size: 0.68rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); flex-shrink: 0; }
.nav-top-contact a { color: var(--gold); transition: var(--transition); }
.nav-top-contact a:hover { color: var(--gold-light); }
.nav-social { display: flex; gap: 16px; flex-shrink: 0; }
.nav-social a { font-family: var(--nav-font); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: var(--transition); }
.nav-social a:hover { color: var(--gold); }
@media (max-width: 640px) {
  :root { --nav-h: 92px; }
  .nav-top-inner { padding: 6px 20px; }
  .nav-top-contact { gap: 0; }
  .nav-top-contact span:last-child { display: none; }
  .nav-top-contact { font-size: 0.62rem; }
  .nav-social a { font-size: 0.58rem; letter-spacing: 0.1em; }
  .nav-social { gap: 10px; }
}

.nav-main { background: rgba(44,31,19,0.9); backdrop-filter: blur(8px); }
.nav-main-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; max-width: 1200px; margin: 0 auto; }
.nav-main-cta {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 1rem;
  pointer-events: none;
  white-space: nowrap;
}
.nav-main-cta-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.nav-main-cta-sep {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.8rem;
}
.nav-main-cta-phone {
  font-family: var(--nav-font);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  pointer-events: all;
  transition: var(--transition);
}
.nav-main-cta-phone:hover { color: var(--gold-light); }
@media (max-width: 1100px) {
  .nav-main-cta { gap: 0.4rem; padding: 0 0.5rem; }
  .nav-main-cta-text { font-size: 0.75rem; }
  .nav-main-cta-phone { font-size: 0.68rem; }
}
@media (max-width: 768px) {
  .nav-main-cta-text, .nav-main-cta-sep { display: none; }
  .nav-main-cta-phone { font-size: 0.7rem; }
}

.nav-logo { display: flex; align-items: center; padding: 10px 0; }
.nav-logo img {
  height: 76px; width: auto;
  filter: drop-shadow(0 0 12px rgba(201,168,76,0.45)) drop-shadow(0 3px 10px rgba(0,0,0,0.6));
  transition: var(--transition);
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.75)) drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transform: scale(1.05);
}

.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links li a {
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 22px 11px;
  display: block;
  position: relative;
  transition: var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--gold); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(28,20,16,0.98);
    padding: 16px 40px 28px;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: right; }
  .nav-links li a { padding: 12px 0; font-size: 0.72rem; display: block; }
  .nav-links li a::after { bottom: 6px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpeg');
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,20,16,0.35) 0%, rgba(28,20,16,0.15) 50%, rgba(28,20,16,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 40px 20px; }
.hero-eyebrow {
  font-family: var(--nav-font);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.65; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 4px 32px rgba(0,0,0,0.7);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.97); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.85; text-shadow: 0 1px 8px rgba(0,0,0,0.85), 0 2px 20px rgba(0,0,0,0.65); }
.hero-ctas { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px; }
.hero-badge {
  margin-top: 2.5rem !important;
  font-family: var(--nav-font) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0.65rem 1.5rem !important;
  border: 1px solid rgba(201,168,76,0.35) !important;
  border-radius: 100px !important;
  background: rgba(201,168,76,0.08) !important;
  backdrop-filter: blur(8px) !important;
  animation: fadeIn 1s ease 1.3s both !important;
}
.hero-badge::before, .hero-badge::after { display: none !important; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero-scroll span { font-family: var(--nav-font); font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── STATS BAND ── */
.stats-band { background: var(--bg-dark); border-top: 1px solid rgba(201,168,76,0.12); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: 2.2rem 1.5rem; border-right: 1px solid rgba(201,168,76,0.1); transition: var(--transition); border-radius: var(--radius-sm); }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(201,168,76,0.06); }
.stat-num { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-family: var(--nav-font); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (max-width: 700px) { .stats-inner { grid-template-columns: 1fr 1fr; } .stat:nth-child(2) { border-right: none; } }

/* ── SECTIONS ── */
section { padding: 6rem 0; }
.section-eyebrow { font-family: var(--nav-font); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { margin-bottom: 1.25rem; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; max-width: 680px; }
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ── ABOUT ── */
.about { background: var(--bg-page); }
.about h2.section-title { color: var(--white); }
.about .section-lead { color: rgba(255,255,255,0.88); }
.about .feature-list li { color: rgba(255,255,255,0.68); }
.about-grid { display: flex; flex-direction: column; gap: 56px; }
.about-visual { position: relative; }

.founder-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
.founder-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founder-portrait-frame {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 3px var(--gold),
    0 0 0 7px rgba(201,168,76,0.18),
    0 0 0 10px rgba(201,168,76,0.07),
    0 16px 48px rgba(0,0,0,0.45);
  transition: box-shadow 0.4s ease;
}
.founder-portrait:hover .founder-portrait-frame {
  box-shadow:
    0 0 0 3px var(--gold-light),
    0 0 0 8px rgba(201,168,76,0.25),
    0 0 0 14px rgba(201,168,76,0.08),
    0 22px 60px rgba(0,0,0,0.55);
}
.founder-portrait img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
  filter: brightness(0.97) contrast(1.04);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.founder-portrait:hover img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.06);
}
.founder-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}
.founder-name span {
  display: block;
  font-family: var(--nav-font);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.about-gold-bar { display: none; }

.about-text { max-width: 900px; margin: 0 auto; padding-bottom: 28px; }
.about .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.feature-list { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.97rem; color: rgba(255,255,255,0.82); line-height: 1.7; }
.feature-list li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 640px) { .founder-portrait img { height: 280px; } .founder-portraits { gap: 14px; } }

/* ── TOURS ── */
.tours { background: var(--bg-page); }
.tours h2.section-title { color: var(--white); }
.tours .section-lead { color: rgba(255,255,255,0.68); }
.tours-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 4rem; }
.tour-card {
  background: var(--bg-dark);
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  position: relative;
  display: flex;
  flex-direction: row;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201,168,76,0.3);
}
.tour-card-top {
  background: var(--wine);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  flex: 0 0 220px;
  min-height: 130px;
}
.tour-card-top::after { display: none; }
.tour-card-top.gold { background: #2A3D2E; }
.tour-card-top.mid { background: #3D1A24; }

/* ── TOUR CARD PHOTO BACKGROUNDS ── */
.tour-card-top.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tour-card-top.has-photo::before {
  background: rgba(0,0,0,0.48) !important;
  border-radius: inherit;
}
.tour-card-top.has-photo > * { position: relative; z-index: 1; }
.tour-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; display: inline-flex; }
.tour-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 0; font-weight: 500; line-height: 1.25; display: inline; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8); }
.tour-card-top.has-photo .tour-icon { text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.tour-card-top[style*="#5C1A28"]::after { background: linear-gradient(to bottom, transparent 0%, rgba(28,20,16,0.7) 60%, var(--bg-dark) 100%); }
.tour-card-top[style*="#2C4A3E"]::after { background: linear-gradient(to bottom, transparent 0%, rgba(28,20,16,0.7) 60%, var(--bg-dark) 100%); }
.tour-card-top[style*="#3D2B1A"]::after { background: linear-gradient(to bottom, transparent 0%, rgba(28,20,16,0.7) 60%, var(--bg-dark) 100%); }
.tour-card-body { padding: 1.75rem 2rem 2rem; flex: 1; border-bottom: 3px solid var(--gold); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.tour-card-body p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.tour-price { font-family: var(--nav-font); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wine); margin-top: auto; }
.tour-price-table { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1rem 0 0.75rem; }
.tour-price-col { background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 0.75rem; }
.tour-price-header { font-family: var(--nav-font); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; padding-bottom: 0.4rem; border-bottom: 1px solid rgba(201,168,76,0.2); }
.tour-price-header span { display: block; color: rgba(255,255,255,0.45); font-size: 0.55rem; margin-top: 2px; }
.tour-price-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.8); padding: 3px 0; }
.tour-price-row span:last-child { color: var(--white); font-weight: 600; }
.tour-price-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; margin-bottom: 0; font-style: italic; }

/* ── TOUR PRICING HOVER REVEAL ── */
.tour-price-hint {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--nav-font); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); opacity: 0.65; margin-top: 0.9rem; cursor: default;
  max-height: 2rem; overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.3s ease, margin-top 0.3s ease;
}
.tour-price-hint svg { flex-shrink: 0; }
.tour-price-reveal {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease 0.05s;
}
.tour-card:hover .tour-price-hint {
  opacity: 0; max-height: 0; margin-top: 0;
}
.tour-card:hover .tour-price-reveal {
  max-height: 420px; opacity: 1;
}
@media (max-width: 600px) {
  .tour-card { flex-direction: column; }
  .tour-card-top { flex: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0; min-height: auto; }
  .tour-card-body { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .tour-card-top.has-photo::before { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}
/* ── MOBILE PRICING TAP EXPAND ── */
.price-tap-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  color: var(--gold);
  font-family: var(--nav-font);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  cursor: pointer;
  margin-top: 0.9rem;
  transition: var(--transition);
}
.price-tap-btn svg { transition: transform 0.3s ease; }
.price-tap-btn.open svg { transform: rotate(180deg); }
.price-tap-btn:hover { background: rgba(201,168,76,0.1); }
@media (hover: none) {
  .price-tap-btn { display: inline-flex; }
  .tour-price-hint { display: none !important; }
  .tour-card:hover .tour-price-reveal { max-height: 0; opacity: 0; }
  .tour-card:hover .tour-book-btn { opacity: 0; pointer-events: none; }
  .tour-price-reveal.tap-open { max-height: 420px !important; opacity: 1 !important; }
  .tour-card.tap-open .tour-book-btn { opacity: 1 !important; transform: translateY(0) !important; pointer-events: all !important; }
}

/* ── FEATURES ── */
.features { background: var(--bg-dark); }
.features h2.section-title { color: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 4rem; }
.feat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,26,0.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-md);
  pointer-events: none;
}
.feat-card::after { display: none; }
.feat-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--gold);
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon { display: none; }
.feat-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.7rem; }
.feat-card-header h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0; color: var(--white); line-height: 1.25; }
.feat-card-icon { flex-shrink: 0; color: var(--gold); }
.feat-card p { font-size: 0.9rem; margin: 0; color: rgba(255,255,255,0.62); }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── TEAM ── */
.team { background: var(--bg-dark); }
.team h2.section-title { color: var(--white); }
.team .section-lead { color: rgba(255,255,255,0.65); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 4rem; align-items: start; }
.team-card {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-hover);
}
.team-card-img { position: relative; height: 280px; overflow: hidden; background: var(--bg-dark); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transition: transform 0.55s ease; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,20,16,0.78) 0%, transparent 55%); }
.team-card-name { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; font-family: var(--serif); font-size: 1.3rem; color: var(--white); font-weight: 500; }
.team-card-body { padding: 1.4rem 1.6rem 0.8rem; flex: 1; }
.team-card-body p { font-size: 0.875rem; line-height: 1.78; color: var(--text-muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.team-card-body p.expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}
.team-card-foot {
  padding: 0.8rem 1.6rem 1.2rem;
  border-top: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(90deg, transparent, var(--gold), transparent) border-box;
  display: flex; justify-content: flex-end;
}
.read-more { font-family: var(--nav-font); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--wine); cursor: pointer; background: none; border: none; transition: var(--transition); }
.read-more:hover { color: var(--gold); }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ── CTA BAND ── */
.cta-band { background: var(--bg-dark); padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.cta-band::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; font-weight: 400; }
.cta-band h2 em { font-style: italic; color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,0.58); max-width: 540px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cta-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ── REVIEWS ── */
.reviews {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}
.reviews-photo-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 420px;
  background: url('../images/reviews-bg.jpg') center 30% / cover no-repeat;
  z-index: 0;
}
.reviews-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,11,9,0.42) 0%,
    rgba(15,11,9,0.65) 60%,
    rgba(15,11,9,1) 100%
  );
}
.reviews .container { position: relative; z-index: 1; }
.reviews h2.section-title {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 24px rgba(0,0,0,1), 0 8px 48px rgba(0,0,0,0.9);
}
.reviews-page-header .text-center {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, transparent 100%);
  border-radius: var(--radius-md);
  display: inline-block;
  width: 100%;
}
.reviews-page-header .section-eyebrow {
  text-shadow: 0 1px 6px rgba(0,0,0,1), 0 2px 16px rgba(0,0,0,0.9);
  color: var(--gold-light);
}
.reviews-page-header .divider::before,
.reviews-page-header .divider::after { background: var(--gold); opacity: 1; }
.reviews-page-header .divider-icon {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(201,168,76,0.9);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 4rem; }
.review-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.4rem 2rem 2rem 2.4rem;
  border-top: none;
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 32px rgba(0,0,0,0.28), 0 1px 4px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -8px; left: 14px;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.review-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--wine));
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.32);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38), 0 4px 16px rgba(92,26,40,0.22);
}
.review-stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
}
.review-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; line-height: 1.8; color: rgba(255,255,255,0.88); margin-bottom: 1.4rem; }
.review-author { font-family: var(--nav-font); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.48); }
.review-platform-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 0.75rem;
  font-family: var(--nav-font); font-size: 0.54rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ── REVIEWS RATING BAND ── */
.reviews-rating-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto 3rem;
  padding: 1.25rem 2rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
  max-width: 560px;
}
.reviews-rating-score {
  text-align: center;
}
.reviews-rating-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.reviews-rating-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  display: block;
  margin-top: 4px;
}
.reviews-rating-count {
  font-family: var(--nav-font);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 3px;
  display: block;
}
.reviews-platform-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews-platform-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: var(--nav-font);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
a.reviews-platform-badge:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(201,168,76,0.35);
  color: rgba(255,255,255,0.9);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-dot.google { background: #4285F4; }
.badge-dot.tripadvisor { background: #00af87; }
.review-platform-tag {
  font-family: var(--nav-font);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── FOOTER CTA STRIP ── */
.footer-strip { background: var(--wine); padding: 2rem 0; }
.footer-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-strip-text { font-family: var(--serif); font-size: 1.35rem; color: var(--white); font-weight: 400; }
.footer-strip .btn { background: var(--white); color: var(--wine); font-size: 0.63rem; }
.footer-strip .btn:hover { background: var(--gold); color: var(--bg-dark); transform: translateY(-2px); }
@media (max-width: 600px) { .footer-strip-inner { flex-direction: column; text-align: center; } }

/* ── FOOTER ── */
footer { background: var(--bg-dark); padding: 5rem 0 2rem; border-top: 1px solid rgba(201,168,76,0.12); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-logo img {
  height: 96px; width: auto; margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.5)) drop-shadow(0 4px 14px rgba(0,0,0,0.55));
  transition: var(--transition);
}
.footer-logo img:hover {
  filter: drop-shadow(0 0 24px rgba(201,168,76,0.8)) drop-shadow(0 4px 16px rgba(0,0,0,0.45));
  transform: scale(1.04);
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-family: var(--nav-font); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); transition: var(--transition); padding-bottom: 2px; border-bottom: 1px solid transparent; }
.footer-social a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer-col-title { font-family: var(--nav-font); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links li a { font-size: 0.875rem; color: rgba(255,255,255,0.42); transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); padding-left: 5px; }
.contact-item { margin-bottom: 1.1rem; }
.contact-label { font-family: var(--nav-font); font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.24); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 0.875rem; color: rgba(255,255,255,0.42); display: block; transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.22); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-in   { transform: scale(0.92); }
.reveal.visible    { opacity: 1; transform: none; }
.d1 { --delay: 0.1s; } .d2 { --delay: 0.2s; } .d3 { --delay: 0.3s; }
.d4 { --delay: 0.4s; } .d5 { --delay: 0.5s; } .d6 { --delay: 0.6s; }

.mt2 { margin-top: 2rem; }
.italic-wine { font-style: italic; color: var(--wine); }

/* ── HERO ENTRY ANIMATIONS ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-eyebrow { animation: fadeSlideUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.3s both; }
.hero h1      { animation: fadeSlideUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.55s both; }
.hero-desc    { animation: fadeSlideUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.8s both; }
.hero-ctas    { animation: fadeSlideUp 0.8s cubic-bezier(0.4,0,0.2,1) 1.0s both; }
.hero-badge   { animation: fadeIn 1s ease 1.3s both; }
.hero-scroll  { animation: fadeIn 1s ease 1.5s both; }

/* ── TOUR BOOK BUTTON ── */
.tour-book-btn {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.6rem;
  padding: 0.65rem 1.6rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, background 0.28s ease, box-shadow 0.28s ease;
  pointer-events: none;
}
.tour-card:hover .tour-book-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ── TOUR ICON FLOAT ── */
@keyframes floatIcon {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.tour-card:hover .tour-icon { animation: floatIcon 1.6s ease-in-out infinite; }

/* ── WINE PARTICLES CANVAS ── */
#wine-particles {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1; opacity: 0.6;
}

/* ── AI CHAT WIDGET ── */
#chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 8000; font-family: var(--sans); }
#chat-toggle {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white); border: none; border-radius: 100px;
  padding: 13px 20px 13px 16px; cursor: pointer;
  box-shadow: 0 8px 32px rgba(92,26,40,0.55), 0 2px 8px rgba(0,0,0,0.25);
  transition: var(--transition); position: relative;
  font-family: var(--nav-font); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
}
#chat-toggle:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(92,26,40,0.7); }
.chat-bubble-icon { font-size: 1.25rem; line-height: 1; }
.chat-bubble-notif {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--bg-page);
  font-size: 0.55rem; font-weight: 700; color: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.chat-bubble-notif.visible { opacity: 1; }
#chat-panel {
  position: absolute; bottom: calc(100% + 14px); right: 0;
  width: 360px; max-height: 540px;
  display: flex; flex-direction: column;
  background: rgba(15,11,9,0.94);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 4px 24px rgba(92,26,40,0.3);
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatOpen 0.32s cubic-bezier(0.34,1.56,0.64,1) both;
}
#chat-panel[hidden] { display: none; }
@keyframes chatOpen {
  from { opacity: 0; transform: scale(0.84) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine-deep) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15); flex-shrink: 0;
}
.chat-header-left { display: flex; align-items: center; gap: 12px; }
.chat-avatar { font-size: 1.6rem; line-height: 1; }
.chat-name { font-family: var(--serif); font-size: 1rem; color: var(--white); font-weight: 500; }
.chat-status {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--nav-font); font-size: 0.54rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.48);
}
.chat-dot {
  width: 7px; height: 7px; background: #4ADE80; border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 4px rgba(74,222,128,0.5); }
  50%      { box-shadow: 0 0 10px rgba(74,222,128,0.9); }
}
.chat-close {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55); border-radius: 6px; width: 28px; height: 28px;
  cursor: pointer; font-size: 0.75rem; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.chat-close:hover { background: rgba(139,26,26,0.5); color: var(--white); border-color: var(--wine); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 2px; }
.chat-msg {
  max-width: 88%; padding: 10px 14px; border-radius: 14px;
  font-size: 0.875rem; line-height: 1.65;
  animation: msgIn 0.25s ease both; word-break: break-word;
}
@keyframes msgIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.chat-msg.bot {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,168,76,0.12); border-bottom-left-radius: 4px; align-self: flex-start;
}
.chat-msg.bot a { color: var(--gold); }
.chat-msg.user {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--white); border-bottom-right-radius: 4px; align-self: flex-end;
}
.chat-typing {
  display: flex; align-items: center; gap: 5px; padding: 10px 14px;
  background: rgba(255,255,255,0.07); border-radius: 14px; border-bottom-left-radius: 4px;
  align-self: flex-start; border: 1px solid rgba(201,168,76,0.1); width: 56px;
  animation: msgIn 0.25s ease both;
}
.chat-typing span {
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
  animation: typeBounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeBounce {
  0%,60%,100% { transform:translateY(0); opacity:0.5; }
  30%           { transform:translateY(-5px); opacity:1; }
}
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px 10px;
  border-top: 1px solid rgba(255,255,255,0.05); flex-shrink: 0;
}
.chat-qr {
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); border-radius: 100px; padding: 5px 12px;
  font-family: var(--nav-font); font-size: 0.57rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
}
.chat-qr:hover { background: rgba(201,168,76,0.22); border-color: var(--gold); transform: translateY(-1px); }
.chat-input-row {
  display: flex; align-items: center; gap: 8px; padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06); background: rgba(0,0,0,0.2); flex-shrink: 0;
}
#chatInput {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 10px 14px; color: var(--white);
  font-size: 0.875rem; font-family: var(--sans); outline: none; transition: border-color 0.25s ease;
}
#chatInput::placeholder { color: rgba(255,255,255,0.3); }
#chatInput:focus { border-color: rgba(201,168,76,0.45); }
#chatSend {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  border: none; border-radius: 10px; width: 40px; height: 40px;
  color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0; box-shadow: 0 2px 10px rgba(139,26,26,0.4);
}
#chatSend:hover { transform: scale(1.08); box-shadow: 0 4px 18px rgba(139,26,26,0.6); }
@media (max-width: 480px) {
  #chat-widget { bottom: 16px; right: 16px; }
  #chat-panel  { width: calc(100vw - 32px); right: -16px; max-height: 460px; }
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
  background: linear-gradient(135deg, var(--wine-deep) 0%, var(--bg-dark) 60%, #1a1008 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.contact-form-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-form-wrap { grid-template-columns: 1fr; gap: 2rem; }
}
.contact-form-left .section-eyebrow { color: var(--gold); }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact-info-item:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25); }
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px; height: 20px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
}
.contact-info-label { font-family: var(--nav-font); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.contact-info-val { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
a.contact-info-val:hover { color: var(--gold); }

/* Form */
.contact-form-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px);
}
.uwt-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--nav-font);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.uwt-form input,
.uwt-form select,
.uwt-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}
.uwt-form input::placeholder,
.uwt-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.uwt-form input:focus,
.uwt-form select:focus,
.uwt-form textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.09);
}
.uwt-form select { cursor: pointer; }
.uwt-form select option { background: #2a1810; color: var(--white); }
.uwt-form textarea { resize: vertical; min-height: 110px; line-height: 1.65; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-note { font-size: 0.77rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 0.6rem; }

/* ── CALENDAR PICKER ── */
.cal-picker { position: relative; }
.cal-trigger {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  font-family: var(--body-font);
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.cal-trigger:hover, .cal-trigger.open {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.09);
}
.cal-trigger .cal-placeholder { color: rgba(255,255,255,0.28); }
.cal-trigger svg { flex-shrink: 0; opacity: 0.55; }
.cal-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  background: #1e110a;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  padding: 1rem;
  width: 280px;
  display: none;
}
.cal-dropdown.open { display: block; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.cal-month-label {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}
.cal-nav {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}
.cal-nav:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-dow {
  text-align: center;
  font-size: 0.6rem;
  font-family: var(--nav-font);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  padding: 4px 0;
}
.cal-day {
  text-align: center;
  font-size: 0.8rem;
  padding: 6px 2px;
  border-radius: 5px;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  transition: background 0.15s, color 0.15s;
  border: none;
  background: none;
}
.cal-day:hover { background: rgba(201,168,76,0.15); color: var(--white); }
.cal-day.selected { background: var(--gold); color: #1a0a04; font-weight: 600; }
.cal-day.today { border: 1px solid rgba(201,168,76,0.4); }
.cal-day.other-month { color: rgba(255,255,255,0.2); }
.cal-day.disabled { color: rgba(255,255,255,0.15); cursor: default; pointer-events: none; }
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.form-success p { color: rgba(255,255,255,0.7); }
.form-success a { color: var(--gold); }

/* ── PRIVACY POLICY MODAL ── */
#privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#privacy-modal.open { display: flex; }
#privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
#privacy-modal-box {
  position: relative;
  z-index: 1;
  background: #1C1410;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
#privacy-modal-box h2 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
#privacy-modal-box h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
#privacy-modal-box p,
#privacy-modal-box li {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
#privacy-modal-box ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
#privacy-modal-close {
  position: absolute;
  top: 1.1rem; right: 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  line-height: 1;
}
#privacy-modal-close:hover { background: rgba(201,168,76,0.15); border-color: var(--gold); color: var(--gold); }

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero-eyebrow, .hero h1, .hero-desc, .hero-ctas, .hero-badge, .hero-scroll { animation: none !important; opacity: 1 !important; transform: none !important; }
  .scroll-line { animation: none !important; }
  .chat-dot { animation: none !important; }
  .chat-typing span { animation: none !important; }
  .hero-bg { transition: none !important; }
  .stat-num { transition: none !important; }
}

/* ── BOOK NOW NAV BUTTON ── */
.nav-book-cta,
.nav-links li a.nav-book-cta {
  font-family: var(--nav-font);
  font-size: 0.65rem !important;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, #B8963E 100%);
  color: var(--bg-dark) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block !important;
  width: auto !important;
  margin-left: 6px;
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}
.nav-links li a.nav-book-cta::after { display: none !important; }
.nav-links li:has(a.nav-book-cta) {
  display: flex;
  align-items: center;
}
.nav-book-cta:hover,
.nav-links li a.nav-book-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--bg-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── NAV TOP BAR SCROLL HIDE ── */
.nav-top { overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; max-height: 60px; }
.nav-wrap.scrolled .nav-top { max-height: 0; padding: 0; }

/* ── TOUR CARD TOP ENHANCEMENT ── */
.tour-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 40%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
.tour-card-top-grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 28px, rgba(255,255,255,0.025) 28px, rgba(255,255,255,0.025) 29px
  ), repeating-linear-gradient(
    90deg, transparent, transparent 28px, rgba(255,255,255,0.025) 28px, rgba(255,255,255,0.025) 29px
  );
  pointer-events: none;
}

/* ── ABOUT TIMELINE ── */
.about-timeline { margin-top: 5rem; }
.about-timeline-heading {
  font-family: var(--nav-font);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.5rem;
}
.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,0.15) 100%);
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2.15rem;
  top: 5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 2.5px solid var(--bg-page);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.35);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin: 0;
}

/* ── RESERVATIONS MULTI-STEP ── */
.reservations-section { background: var(--bg-page); padding: 5rem 0 6rem; }
.reservations-section h2 { color: var(--white); }
.reservations-wrap { max-width: 680px; margin: 3rem auto 0; }
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.booking-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  position: relative;
}
.booking-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 1px;
  background: rgba(201,168,76,0.2);
  z-index: 0;
}
.booking-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--nav-font);
  font-size: 0.65rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.booking-step-item.active .booking-step-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
}
.booking-step-item.done .booking-step-num {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  color: var(--gold);
}
.booking-step-label {
  font-family: var(--nav-font);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.booking-step-item.active .booking-step-label { color: var(--gold); }
.booking-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px);
}
.booking-panel-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.booking-panel-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.booking-step-panel { display: none; }
.booking-step-panel.active { display: block; }
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: 12px;
}
.booking-back {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
  font-family: var(--nav-font);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.booking-back:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.booking-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.booking-summary-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.booking-summary-box strong { color: var(--gold); display: block; margin-bottom: 0.4rem; }
.booking-summary-label { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ── GALLERY SECTION ── */
.gallery { background: var(--bg-dark); padding: 0 0 6rem; overflow: hidden; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 5px;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; }
.gallery-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-bg { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,11,9,0.8) 0%, rgba(15,11,9,0.1) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-grid .gallery-item { height: 160px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
}

/* ── INLINE VALIDATION ── */
.field-error {
  font-family: var(--nav-font);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: #e06060;
  margin-top: 4px;
  display: none;
}
.form-group.has-error .field-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: rgba(224,96,96,0.6) !important; }

/* ── CURSOR FIXES ── */
.read-more, .booking-back, .nav-hamburger { cursor: pointer; }

/* ── MULTI-PAGE: inner page padding ── */
body.page-inner .page-content { padding-top: var(--nav-h); }
