/* ============================================
   SOUL KUMAON — Design System
   Brand: deep violet #3C1E64 + warm gold + pine mist
   ============================================ */

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

:root {
  --soul:        #3C1E64;   /* primary brand violet */
  --soul-deep:   #2A1248;   /* darker violet */
  --soul-mid:    #5A3A82;   /* mid violet */
  --soul-light:  #EDE8F5;   /* soft lavender tint */
  --gold:        #C8A84B;   /* warm mountain gold */
  --gold-light:  #F0E8C8;   /* pale gold */
  --pine:        #2E4A3C;   /* accent forest green */
  --river:       #5A8A7A;   /* soft jade */
  --cream:       #FAF8F5;
  --stone:       #C4B8A8;
  --ink:         #1A1520;
  --mist:        #F3F0F8;   /* violet-tinted white */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 14px;
  --max-w:     1200px;
  --section-pad: 6rem 2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(42, 18, 72, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 2px 24px rgba(60,30,100,0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.05em;
  display: none; /* logo image shows the name */
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--soul-deep) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500 !important;
}
.nav-cta:hover { background: #d4b85a !important; color: var(--soul-deep) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(42,18,72,0.68) 0%, rgba(42,18,72,0.22) 50%, rgba(20,35,28,0.38) 100%),
    url('../images/hero.webp') center 40%/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* WhatsApp CTA */
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 0.9rem 2rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  border-radius: 2px;
}
.btn-whatsapp:hover { background: #20bc59; transform: translateY(-2px); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--soul-deep);
  padding: 0.9rem 2.2rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  border-radius: 2px;
}
.btn-primary:hover { background: #d4b85a; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: white;
  padding: 0.9rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--soul-deep);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.08);
}
.stat-item { background: var(--soul-deep); padding: 1.8rem 2rem; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
  display: block;
}

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--soul-mid);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--soul-mid); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--soul);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 1rem; color: #555; max-width: 520px; line-height: 1.85; }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 85%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(60,30,100,0.15);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 52%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 5px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 50%; left: 58%;
  transform: translate(-50%, -50%);
  background: var(--soul);
  color: white;
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: 0 8px 30px rgba(60,30,100,0.35);
  z-index: 3;
  border: 3px solid var(--gold);
}
.about-badge strong { font-size: 1.5rem; font-weight: 300; color: var(--gold); }
.about-badge span { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

.features-list { list-style: none; margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.features-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: #555; }
.features-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ===== GALLERY ===== */
.gallery-section { padding: 4rem 2rem 6rem; background: var(--mist); }
.gallery-header { max-width: var(--max-w); margin: 0 auto 2.5rem; }
.gallery-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); position: relative; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,18,72,0.65) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ===== AMENITIES ===== */
.amenities {
  padding: var(--section-pad);
  background: var(--soul);
  position: relative; overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute; top: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--mist);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.amenities-inner { max-width: var(--max-w); margin: 0 auto; }
.amenities .section-label { color: var(--gold); }
.amenities .section-label::before { background: var(--gold); }
.amenities .section-title { color: white; }

.amenities-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.amenity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.3s;
}
.amenity-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); border-color: var(--gold); }
.amenity-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.amenity-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 0.4rem; }
.amenity-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== EXPERIENCE ===== */
.experience {
  padding: var(--section-pad);
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.experience-img { position: relative; }
.experience-img img { width: 100%; height: 580px; object-fit: cover; border-radius: var(--radius-lg); }
.experience-img-note {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-left: 3px solid var(--gold);
}
.experience-img-note p { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--soul); line-height: 1.4; }

/* ===== BOOKING ===== */
.booking-section { background: var(--soul-light); padding: var(--section-pad); }
.booking-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.booking-inner .section-title { font-size: 2.8rem; margin-bottom: 0.5rem; }
.booking-inner p { color: #666; margin-bottom: 2rem; }

.booking-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 50px rgba(60,30,100,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.booking-field label { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: #999; margin-bottom: 0.4rem; }
.booking-field input {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid #ddd; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--mist); transition: border-color 0.2s;
}
.booking-field input:focus { outline: none; border-color: var(--soul); }

.wa-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.wa-booking-btn:hover { background: #20bc59; transform: translateY(-2px); }
.wa-booking-btn svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

.booking-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.booking-alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--soul-mid);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.booking-alt-link:hover { color: var(--soul); }
.booking-alt-sep { color: #ccc; font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--section-pad); max-width: var(--max-w); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 4px 20px rgba(60,30,100,0.06);
  border-top: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { font-family: var(--font-display); font-size: 1.1rem; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--soul-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--soul); font-weight: 600; }
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--soul); }
.testimonial-from { font-size: 0.75rem; color: #999; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, var(--soul-deep) 0%, var(--soul) 60%, var(--soul-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1200&q=60') center/cover;
  opacity: 0.12;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px; background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero .section-label { justify-content: center; color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }
.page-hero .section-title { color: white; font-size: 3.5rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; position: relative; }

/* ===== BLOG ===== */
.blog-section { padding: var(--section-pad); max-width: var(--max-w); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.blog-featured { display: flex; flex-direction: column; gap: 2.5rem; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 4px 20px rgba(60,30,100,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(60,30,100,0.13); }
.blog-card-img { width: 100%; height: 260px; object-fit: cover; }
.blog-card-body { padding: 1.8rem; }
.blog-tag {
  display: inline-block; background: var(--soul-light); color: var(--soul);
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px; margin-bottom: 0.8rem; font-weight: 500;
}
.blog-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--soul); margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card p { font-size: 0.9rem; color: #666; line-height: 1.7; margin-bottom: 1.2rem; }
.blog-meta { font-size: 0.75rem; color: #aaa; display: flex; gap: 1rem; }
.sidebar-widget { background: white; border-radius: var(--radius-lg); padding: 1.8rem; margin-bottom: 2rem; box-shadow: 0 4px 20px rgba(60,30,100,0.05); }
.sidebar-widget h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--soul); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--soul-light); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-pill { background: var(--soul-light); color: var(--soul); font-size: 0.75rem; padding: 0.35rem 0.8rem; border-radius: 20px; text-decoration: none; transition: all 0.2s; }
.tag-pill:hover { background: var(--soul); color: white; }
.related-post { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
.related-post:last-child { border-bottom: none; }
.related-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-post-title { font-size: 0.85rem; color: var(--soul); font-weight: 500; line-height: 1.4; }
.related-post-date { font-size: 0.72rem; color: #aaa; margin-top: 0.2rem; }

/* ===== TIMELINE ===== */
.timeline-wrapper { position: relative; max-width: 900px; margin: 0 auto; padding: 3rem 2rem 6rem; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--soul-light) 5%, var(--soul-mid) 30%, var(--soul) 70%, var(--soul) 95%, transparent 100%);
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 68px 1fr; gap: 0; margin-bottom: 2rem; align-items: center; }
.tl-left { padding-right: 2rem; text-align: right; }
.tl-right { padding-left: 2rem; }
.tl-node {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; position: relative; z-index: 2;
  border: 4px solid var(--cream);
  box-shadow: 0 4px 20px rgba(60,30,100,0.25);
  flex-shrink: 0; transition: transform 0.3s; cursor: default;
}
.tl-item:hover .tl-node { transform: scale(1.12); }
.tl-card {
  background: white; border-radius: 10px; padding: 1.4rem 1.6rem;
  box-shadow: 0 4px 20px rgba(60,30,100,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(60,30,100,0.13); }
.tl-left .tl-card { border-right: 4px solid var(--soul-mid); }
.tl-right .tl-card { border-left: 4px solid var(--soul); }
.tl-period { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--soul-mid); display: block; line-height: 1; margin-bottom: 0.15rem; }
.tl-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--soul); margin-bottom: 0.5rem; line-height: 1.3; }
.tl-card p { font-size: 0.83rem; color: #666; line-height: 1.68; }
.tl-card .tl-tag { display: inline-block; margin-top: 0.6rem; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--soul-light); color: var(--soul); padding: 0.2rem 0.6rem; border-radius: 2px; }
.era-divider { text-align: center; margin: 3rem 0 2rem; position: relative; z-index: 2; }
.era-badge { display: inline-block; background: var(--soul); color: var(--gold); font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.6rem 1.8rem; border-radius: 20px; font-style: italic; }
.fun-fact-strip { background: var(--soul-light); border-radius: 12px; padding: 2rem; margin: 3rem 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.fun-fact { text-align: center; }
.fun-fact-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.fun-fact-label { font-size: 0.75rem; color: #888; letter-spacing: 0.1em; text-transform: uppercase; }
.fun-fact-val { font-family: var(--font-display); font-size: 1.4rem; color: var(--soul); display: block; margin-bottom: 0.2rem; }

/* ===== CUISINE ===== */
.cuisine-hero-quote { background: var(--soul); padding: 5rem 2rem; text-align: center; position: relative; }
.cuisine-hero-quote blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.8rem); font-style: italic; color: var(--gold); max-width: 760px; margin: 0 auto; font-weight: 300; line-height: 1.4; }
.cuisine-hero-quote cite { display: block; margin-top: 1rem; font-size: 0.85rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.45); font-style: normal; }

.cuisine-intro { padding: 4rem 2rem; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cuisine-intro img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(60,30,100,0.13); }

.ingredient-strip { background: var(--mist); padding: 2rem; overflow-x: auto; }
.ingredient-row { display: flex; gap: 1rem; max-width: var(--max-w); margin: 0 auto; align-items: stretch; }
.ingredient-pill { background: white; border-radius: 50px; padding: 0.7rem 1.5rem; font-size: 0.85rem; white-space: nowrap; box-shadow: 0 2px 10px rgba(60,30,100,0.07); display: flex; align-items: center; gap: 0.5rem; color: var(--soul); }

.dishes-section { padding: 4rem 2rem 6rem; background: var(--mist); }
.dishes-inner { max-width: var(--max-w); margin: 0 auto; }
.dishes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2.5rem; }
.dish-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(60,30,100,0.06); transition: transform 0.3s; }
.dish-card:hover { transform: translateY(-5px); }
.dish-card img { width: 100%; height: 200px; object-fit: cover; }
.dish-card-body { padding: 1.5rem; }
.dish-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.dish-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--soul); margin-bottom: 0.4rem; }
.dish-card p { font-size: 0.85rem; color: #666; line-height: 1.65; }
.dish-badge { display: inline-block; background: var(--soul-light); color: var(--soul-mid); font-size: 0.68rem; padding: 0.2rem 0.6rem; border-radius: 2px; margin-top: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }

.recipe-feature { background: var(--soul); border-radius: 12px; padding: 2.5rem; color: white; margin-top: 3rem; }
.recipe-feature h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--gold); margin-bottom: 0.5rem; }
.recipe-steps { list-style: none; margin-top: 1.5rem; counter-reset: steps; }
.recipe-steps li { counter-increment: steps; display: flex; gap: 1rem; margin-bottom: 0.8rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.recipe-steps li::before { content: counter(steps); background: var(--gold); color: var(--soul-deep); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; flex-shrink: 0; margin-top: 2px; }

.sweets-section { padding: 5rem 2rem; background: var(--soul-light); }
.sweets-grid { max-width: var(--max-w); margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.sweet-card { background: white; border-radius: 12px; padding: 1.8rem 1.4rem; text-align: center; box-shadow: 0 4px 16px rgba(60,30,100,0.07); transition: transform 0.3s; }
.sweet-card:hover { transform: translateY(-4px); }
.sweet-icon { font-size: 2.5rem; margin-bottom: 0.8rem; display: block; }
.sweet-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--soul); margin-bottom: 0.4rem; }
.sweet-card p { font-size: 0.82rem; color: #777; line-height: 1.6; }

.restaurant-card { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center; background: white; border-radius: 10px; padding: 1.4rem; margin-bottom: 1rem; box-shadow: 0 3px 15px rgba(60,30,100,0.06); transition: transform 0.25s; }
.restaurant-card:hover { transform: translateX(4px); }
.restaurant-rank { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold); width: 40px; text-align: center; }
.restaurant-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--soul); margin-bottom: 0.2rem; }
.restaurant-card p { font-size: 0.83rem; color: #777; }
.restaurant-meta { font-size: 0.72rem; color: var(--soul-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; }

/* ===== ATTRACTIONS ===== */
.distance-hero-strip { background: var(--soul-deep); display: flex; gap: 1px; background-color: rgba(255,255,255,0.1); }
.dist-zone { flex: 1; background: var(--soul-deep); padding: 1.5rem; text-align: center; }
.dist-zone-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.4rem; }
.dist-zone-range { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: white; line-height: 1; }
.dist-zone-count { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; display: block; }

.attractions-section { padding: 4rem 2rem 6rem; max-width: var(--max-w); margin: 0 auto; }
.map-visual { background: linear-gradient(135deg, #d5e8e0 0%, #c8d5e8 50%, #e0d5e8 100%); min-height: 380px; position: relative; overflow: hidden; border-radius: 12px; margin: 3rem 0; box-shadow: 0 8px 30px rgba(60,30,100,0.1); }
.map-visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.map-center-label { background: var(--soul); color: white; padding: 0.8rem 1.5rem; border-radius: 30px; font-size: 0.85rem; font-weight: 500; box-shadow: 0 4px 20px rgba(60,30,100,0.3); position: relative; z-index: 2; }
.map-pin-label { position: absolute; font-size: 0.75rem; background: white; padding: 0.3rem 0.7rem; border-radius: 20px; box-shadow: 0 2px 10px rgba(60,30,100,0.15); color: var(--soul); font-weight: 500; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.p1{top:18%;left:52%} .p2{top:28%;right:12%} .p3{top:50%;right:6%} .p4{bottom:18%;right:20%} .p5{bottom:12%;left:35%} .p6{bottom:25%;left:10%} .p7{top:40%;left:8%} .p8{top:15%;left:28%}

.attractions-categories { display: flex; gap: 0.8rem; margin-bottom: 2rem; flex-wrap: wrap; }
.cat-filter { padding: 0.5rem 1.2rem; border: 1px solid #ddd; border-radius: 20px; font-size: 0.8rem; cursor: pointer; background: white; transition: all 0.2s; font-family: var(--font-body); color: var(--ink); }
.cat-filter.active, .cat-filter:hover { background: var(--soul); color: white; border-color: var(--soul); }

.attraction-section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; border-bottom: 1px solid #e8e8e8; padding-bottom: 0.8rem; }
.zone-tag { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--soul-mid); background: var(--soul-light); padding: 0.3rem 0.8rem; border-radius: 20px; }

.attr-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
.attr-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.attr-card-h { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 16px rgba(60,30,100,0.07); display: grid; grid-template-columns: 140px 1fr; transition: transform 0.3s; }
.attr-card-h:hover { transform: translateY(-3px); }
.attr-card-h img { width: 140px; height: 100%; min-height: 120px; object-fit: cover; }
.attr-card-h .attraction-body { padding: 1.2rem; }
.attr-card-v { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 16px rgba(60,30,100,0.07); transition: transform 0.3s; }
.attr-card-v:hover { transform: translateY(-3px); }
.attr-card-v img { width: 100%; height: 160px; object-fit: cover; }
.attr-card-v .attraction-body { padding: 1.2rem; }
.attraction-distance { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; font-weight: 500; color: var(--soul-mid); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.attraction-body h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--soul); margin-bottom: 0.4rem; }
.attraction-body p { font-size: 0.82rem; color: #666; line-height: 1.6; margin-bottom: 0.8rem; }
.attraction-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.attraction-tag { font-size: 0.68rem; background: var(--soul-light); color: var(--soul-mid); padding: 0.2rem 0.6rem; border-radius: 10px; }

/* ===== FOOTER ===== */
.footer { background: var(--soul-deep); color: white; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 1.5rem; margin-top: 1rem; }
.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; display: block; margin-bottom: 0.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.social-links a:hover { background: var(--gold); }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { max-width: var(--max-w); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ===== STICKY WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--soul-deep);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: all 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ===== UTILS ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.read-more { font-size: 0.8rem; color: var(--soul); font-weight: 500; letter-spacing: 0.08em; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.read-more:hover { gap: 0.7rem; color: var(--soul-mid); }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about, .experience, .cuisine-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 380px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .dishes-grid, .attr-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .attr-grid-2 { grid-template-columns: 1fr; }
  .sweets-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .distance-hero-strip { flex-wrap: wrap; }
  .dist-zone { min-width: 50%; }
  .tl-item { grid-template-columns: auto 1fr; }
  .tl-left { display: none; }
  .timeline-line { left: 32px; }
  .tl-node { width: 52px; height: 52px; font-size: 1.2rem; }
  .tl-right { padding-left: 1.5rem; }
  .attr-card-h { grid-template-columns: 100px 1fr; }
  .attr-card-h img { width: 100px; }
}
@media (max-width: 480px) {
  .dishes-grid, .attr-grid-3, .sweets-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
}
