/* ============================================
   TULSI CAFÉ — Premium Design System
   Palette: Forest Green · Gold · Cream · Charcoal
   Fonts: Cormorant Garamond + Plus Jakarta Sans
   ============================================ */

:root {
  --green-deep:    #1A2E1A;
  --green-mid:     #2D4A2D;
  --green-light:   #3D6B3D;
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-pale:     #F0E4C0;
  --cream:         #F5F0E8;
  --cream-dark:    #EDE5D4;
  --charcoal:      #2C2C2C;
  --charcoal-mid:  #4A4A4A;
  --white:         #FDFAF5;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Custom Cursor ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
  opacity: 0.6;
}

.cursor.hover { width: 16px; height: 16px; background: var(--gold-light); }
.cursor-follower.hover { width: 56px; height: 56px; opacity: 0.3; }

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-leaf {
  width: 48px;
  height: 64px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.leaf-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLeaf 1.2s var(--ease-out) forwards;
}

@keyframes drawLeaf {
  to { stroke-dashoffset: 0; }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

.loader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s 0.5s var(--ease-out) both;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: background 0.5s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(26, 46, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-leaf-icon { width: 22px; height: 30px; }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  position: relative;
  transition: opacity 0.3s, color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover { opacity: 1; color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--gold); }
.mobile-cta { color: var(--gold) !important; font-size: 1.2rem !important; letter-spacing: 0.15em; text-transform: uppercase; font-family: var(--font-body) !important; font-weight: 600 !important; }

/* ── Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.88) 0%,
    rgba(26, 46, 26, 0.65) 50%,
    rgba(26, 46, 26, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 48px;
  margin-top: 60px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation-delay: 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation-delay: 0.5s;
}

.hero-title-line { display: block; }
.hero-title .italic { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
  animation-delay: 0.7s;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation-delay: 0.9s;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.4);
  padding: 14px 32px;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Hero Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

/* ── Floating Badge ── */
.hero-floating-badge {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 2;
}

.badge-ring {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateBadge 18s linear infinite;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  fill: var(--gold);
  text-transform: uppercase;
}

.badge-center-leaf {
  width: 22px;
  height: 30px;
  position: relative;
  z-index: 1;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--green-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Shared ── */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--green-light);
}

/* ── Story Section ── */
.story {
  padding: 120px 48px;
  background: var(--white);
}

.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-image-col { position: relative; }

.story-img-wrap {
  position: relative;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.story-img-wrap:hover img { transform: scale(1.04); }

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

.story-stat-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--green-deep);
  padding: 24px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(26, 46, 26, 0.3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.story-body {
  font-size: 1rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-body em { font-style: italic; color: var(--green-light); }

.story-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--charcoal-mid);
}

/* ── Menu Section ── */
.menu-section {
  padding: 120px 48px;
  background: var(--green-deep);
}

.menu-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.menu-header .section-title { color: var(--cream); }
.menu-header .section-title em { color: var(--gold-light); }

.menu-intro {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.menu-tabs {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding-bottom: 0;
}

.tab-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  padding: 12px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}

.tab-btn:hover { color: var(--gold-light); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

.menu-content { max-width: 1200px; margin: 0 auto; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  transition: transform 0.6s var(--ease-out);
}

.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 24px; }

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 12px;
}

.menu-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.menu-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card-body p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.menu-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── Experience Section ── */
.experience {
  padding: 120px 48px;
  background: var(--cream);
}

.experience-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-body {
  font-size: 1rem;
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.experience-body em { font-style: italic; color: var(--green-light); }

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.experience-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}

.experience-list li span {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.experience-images {
  position: relative;
  height: 560px;
}

.exp-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 75%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26, 46, 26, 0.2);
}

.exp-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 45%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(26, 46, 26, 0.15);
}

/* ── Testimonials ── */
.testimonials {
  padding: 120px 48px;
  background: var(--green-deep);
  overflow: hidden;
}

.testimonials-inner { max-width: 900px; margin: 0 auto; }

.testimonials-inner .section-title { color: var(--cream); }
.testimonials-inner .section-title em { color: var(--gold-light); }

.testimonials-track {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.testimonial-card {
  display: none;
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.testimonial-card.active { display: block; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 36px;
  position: relative;
  padding-left: 32px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  font-family: var(--font-display);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 28px;
  height: 2px;
  background: rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--gold);
  width: 48px;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 48px;
  background: var(--white);
}

.gallery-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 46, 26, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Visit Section ── */
.visit {
  padding: 120px 48px;
  background: var(--cream-dark);
}

.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-info .section-title { color: var(--green-deep); }
.visit-info .section-title em { color: var(--green-light); }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.visit-detail-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.visit-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.visit-detail-item p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ── Reserve Form ── */
.reserve-form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(26, 46, 26, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.reserve-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 8px;
}

.reserve-form-card > p {
  font-size: 0.85rem;
  color: var(--charcoal-mid);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea { resize: vertical; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  padding: 80px 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.footer-brand > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .story-grid,
  .experience-inner,
  .visit-grid { grid-template-columns: 1fr; gap: 60px; }

  .story-image-col { order: -1; }
  .story-img-wrap { height: 400px; }
  .story-stat-card { left: 20px; }

  .experience-images { height: 400px; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-scroll-indicator { left: 24px; }
  .hero-floating-badge { right: 24px; bottom: 80px; }

  .story, .menu-section, .experience, .testimonials, .gallery, .visit { padding: 80px 24px; }

  .menu-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .reserve-form-card { padding: 32px 24px; }

  .footer { padding: 60px 24px 0; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
  input, select, textarea { cursor: text; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .footer-links { grid-template-columns: 1fr; }
}