/* ==========================================================================
   SHARMA CAFE — Watercolor Dreamscape
   A horizontal-scroll experience that flows like wet pigments on canvas.
   Dawn rose → Golden amber → Terracotta → Sage → Evening lavender.
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-primary: rgb(45, 35, 28);
  --text-secondary: rgba(45, 35, 28, 0.7);
  --bg-dawn: rgb(242, 218, 214);
  --bg-amber: rgb(232, 213, 185);
  --bg-sage: rgb(187, 199, 185);
  --bg-evening: rgb(175, 180, 199);
  --accent-warm: rgba(180, 120, 80, 0.4);
  --accent-rose: rgba(200, 150, 140, 0.35);
  --accent-sage: rgba(150, 175, 150, 0.3);
  --whatsapp: #25D366;
  --radius-soft: 16px;
  --radius-round: 50%;
  --transition-smooth: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dawn);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* --- Typography --- */
.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 1rem;
}

.main-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-accent {
  font-style: italic;
  font-weight: 400;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 400px;
  margin-bottom: 2rem;
}

.page-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 500px;
}

.section-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

/* --- Ink Reveal Animation (watercolor text spread) --- */
.ink-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              filter 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.ink-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .ink-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .steam-wisp,
  .watercolor-wash {
    animation: none !important;
  }
}

/* --- Watercolor Wash Backgrounds --- */
.watercolor-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.wash-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-rose), transparent 70%);
  top: -10%;
  right: 5%;
  animation: washDrift1 20s ease-in-out infinite;
}

.wash-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  bottom: -5%;
  left: 10%;
  animation: washDrift2 25s ease-in-out infinite;
}

.wash-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  top: 5%;
  left: -5%;
  animation: washDrift1 22s ease-in-out infinite reverse;
}

.wash-4 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(195, 160, 130, 0.35), transparent 70%);
  top: -8%;
  right: -3%;
  animation: washDrift2 18s ease-in-out infinite;
}

.wash-5 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-rose), transparent 70%);
  bottom: 5%;
  left: 20%;
  animation: washDrift1 24s ease-in-out infinite;
}

.wash-6 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-sage), transparent 70%);
  top: 10%;
  right: 10%;
  animation: washDrift2 20s ease-in-out infinite reverse;
}

.wash-7 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(160, 165, 190, 0.3), transparent 70%);
  top: -5%;
  left: 5%;
  animation: washDrift1 19s ease-in-out infinite;
}

.wash-8 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-sage), transparent 70%);
  bottom: 10%;
  right: 15%;
  animation: washDrift2 23s ease-in-out infinite reverse;
}

@keyframes washDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes washDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 25px) scale(1.08); }
}

/* --- Washes for Menu Page --- */
.wash-menu-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  top: -10%;
  right: -5%;
  animation: washDrift1 20s ease-in-out infinite;
}

.wash-menu-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-rose), transparent 70%);
  top: -15%;
  left: -8%;
  animation: washDrift2 22s ease-in-out infinite;
}

.wash-menu-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: washDrift1 18s ease-in-out infinite reverse;
}

.wash-menu-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-sage), transparent 70%);
  top: -10%;
  left: 10%;
  animation: washDrift2 24s ease-in-out infinite;
}

/* --- Washes for Story Page --- */
.wash-story-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-rose), transparent 70%);
  top: -15%;
  left: 10%;
  animation: washDrift2 20s ease-in-out infinite;
}

.wash-story-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-warm), transparent 70%);
  top: -10%;
  right: -5%;
  animation: washDrift1 22s ease-in-out infinite;
}

.wash-story-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(195, 175, 150, 0.3), transparent 70%);
  bottom: -10%;
  left: -8%;
  animation: washDrift2 19s ease-in-out infinite reverse;
}

.wash-story-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-sage), transparent 70%);
  top: 5%;
  right: 0;
  animation: washDrift1 21s ease-in-out infinite;
}

.wash-story-5 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(160, 170, 155, 0.25), transparent 70%);
  top: -20%;
  left: 20%;
  animation: washDrift2 26s ease-in-out infinite;
}

/* --- Image Bleed Effect (watercolor edge) --- */
.image-bleed {
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-soft);
  background: radial-gradient(ellipse at 30% 70%, var(--accent-warm) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, var(--accent-rose) 0%, transparent 55%);
  filter: blur(12px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   TIMELINE NAVIGATION (index.html horizontal scroll)
   ========================================================================== */
.timeline-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  background: rgba(242, 218, 214, 0.4);
  transition: background 0.5s ease;
}

.timeline-track {
  flex: 1;
  height: 2px;
  background: rgba(45, 35, 28, 0.12);
  border-radius: 2px;
  position: relative;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--text-primary);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.timeline-labels {
  display: flex;
  gap: 0.25rem;
}

.timeline-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.timeline-dot.active {
  opacity: 1;
}

.dot-pip {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-round);
  background: var(--text-primary);
  transition: transform 0.3s ease;
}

.timeline-dot.active .dot-pip {
  transform: scale(1.6);
}

.dot-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

/* ==========================================================================
   HORIZONTAL SCROLL SYSTEM (Desktop)
   ========================================================================== */
.horizontal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  height: 100vh;
  will-change: transform;
}

.panel {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.panel-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 5rem 4rem 3rem;
}

/* --- Panel 1: The First Sip --- */
.first-sip {
  justify-content: space-between;
  gap: 4rem;
}

.sip-text {
  flex: 0 0 auto;
  max-width: 500px;
}

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hint-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
}

.hint-arrow {
  color: var(--text-secondary);
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(8px); opacity: 1; }
}

.hero-image-frame {
  position: relative;
  flex: 0 0 45%;
  max-width: 600px;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

/* --- Steam Wisps --- */
.steam-container {
  position: absolute;
  top: 15%;
  left: 25%;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.steam-wisp {
  position: absolute;
  width: 40px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  animation: steamRise 4s ease-in-out infinite;
}

.wisp-1 {
  left: 30%;
  animation-delay: 0s;
}

.wisp-2 {
  left: 55%;
  animation-delay: 1.3s;
  width: 30px;
  height: 60px;
}

.wisp-3 {
  left: 45%;
  animation-delay: 2.6s;
  width: 35px;
  height: 70px;
}

@keyframes steamRise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100px) scaleX(1.5);
    opacity: 0;
  }
}

/* --- Panel 2: The Craft --- */
.craft-panel {
  gap: 4rem;
}

.craft-left {
  flex: 0 0 45%;
  max-width: 480px;
}

.craft-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.craft-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-watercolor-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, var(--accent-warm), rgba(180, 120, 80, 0.15));
  filter: blur(1px);
  flex-shrink: 0;
}

.craft-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.craft-image-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.craft-img-wrapper {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.craft-img-wrapper.img-1 {
  z-index: 2;
}

.craft-img-wrapper.img-2 {
  margin-top: -60px;
  margin-left: 80px;
  z-index: 1;
}

.craft-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

/* --- Watercolor Button --- */
.watercolor-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(45, 35, 28, 0.15);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
  cursor: pointer;
}

.watercolor-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, var(--accent-warm), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.watercolor-btn:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(45, 35, 28, 0.25);
  transform: translateY(-1px);
}

.watercolor-btn:hover::before {
  opacity: 0.4;
}

.btn-outline {
  background: transparent;
  border-color: rgba(45, 35, 28, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* --- Panel 3: Our Story --- */
.story-panel {
  gap: 4rem;
}

.story-image-side {
  flex: 0 0 45%;
}

.story-img-wrapper {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

.story-text-side {
  flex: 1;
  max-width: 480px;
}

/* --- Panel 4: The Gathering --- */
.gathering-panel {
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}

.gathering-content {
  max-width: 550px;
  margin: 0 auto;
}

.gathering-content .section-text {
  margin-left: auto;
  margin-right: auto;
}

.gathering-gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.gallery-item {
  position: relative;
  flex: 0 0 280px;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

/* --- Panel 5: Find Us --- */
.findus-panel {
  gap: 4rem;
}

.findus-left {
  flex: 0 0 45%;
  max-width: 480px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
}

.contact-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 35, 28, 0.2);
  transition: text-decoration-color 0.3s ease;
}

.contact-link:hover {
  text-decoration-color: var(--text-primary);
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(45, 35, 28, 0.1);
  border-radius: 10px;
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.form-input::placeholder {
  color: rgba(45, 35, 28, 0.4);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(45, 35, 28, 0.25);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-thanks {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, height 0.5s ease, margin 0.5s ease;
}

.form-thanks.visible {
  opacity: 1;
  height: auto;
  margin-top: 0.5rem;
}

/* --- Map --- */
.findus-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  position: relative;
}

.map-wrapper iframe {
  border-radius: var(--radius-soft);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  background: rgba(242, 218, 214, 0.3);
}

.site-footer-static {
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.footer-sep {
  opacity: 0.3;
}

.footer-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(45, 35, 28, 0.2);
  transition: text-decoration-color 0.3s ease;
}

.footer-link:hover {
  text-decoration-color: var(--text-primary);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ==========================================================================
   PAGE NAV (Menu & Story pages)
   ========================================================================== */
.page-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  background: rgba(250, 240, 228, 0.5);
}

.page-nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page-nav-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.page-menu {
  background: rgb(250, 240, 228);
}

.menu-hero {
  position: relative;
  padding: 8rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.menu-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.menu-section {
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-section-watercolor-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180, 120, 80, 0.3), transparent);
  border-radius: 2px;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  color: var(--text-primary);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.menu-item {
  padding: 0.5rem 0;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(45, 35, 28, 0.2);
  margin-bottom: 4px;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-secondary);
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  line-height: 1.5;
}

/* Menu Image Break */
.menu-image-break {
  position: relative;
  margin: 3rem -1rem;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.menu-break-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

/* Menu CTA */
.menu-cta {
  text-align: center;
  padding: 3rem 0 2rem;
}

.menu-cta-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.menu-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   STORY PAGE
   ========================================================================== */
.page-story {
  background: rgb(245, 225, 215);
}

.story-hero {
  position: relative;
  padding: 8rem 2rem 3rem;
  text-align: center;
  overflow: hidden;
}

.story-hero-inner {
  position: relative;
  z-index: 1;
}

.story-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.story-chapter {
  position: relative;
  margin-bottom: 5rem;
  overflow: hidden;
}

.chapter-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.chapter-reverse .chapter-layout {
  direction: rtl;
}

.chapter-reverse .chapter-layout > * {
  direction: ltr;
}

.chapter-image {
  position: relative;
  border-radius: var(--radius-soft);
  overflow: visible;
}

.chapter-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-soft);
  position: relative;
  z-index: 1;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.chapter-paragraph {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Values */
.story-values {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(45, 35, 28, 0.06);
  transition: background 0.3s ease;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.35);
}

.value-watercolor-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-round);
  background: radial-gradient(circle, var(--accent-warm), rgba(180, 120, 80, 0.1));
  filter: blur(2px);
  margin: 0 auto 1rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.value-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Story Map */
.story-map-section {
  padding: 3rem 0;
}

.story-map-content {
  position: relative;
  z-index: 1;
}

.story-map-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-soft);
  overflow: hidden;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 767px) {
  /* Timeline nav hidden on mobile */
  .timeline-nav {
    display: none;
  }

  /* Mobile: Convert horizontal to vertical scroll */
  .mobile-layout .horizontal-wrapper {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .mobile-layout .horizontal-track {
    flex-direction: column;
    height: auto;
  }

  .mobile-layout .panel {
    width: 100%;
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }

  .mobile-layout .panel-content {
    flex-direction: column;
    padding: 6rem 1.5rem 3rem;
    gap: 2rem;
  }

  /* Mobile: show page nav instead */
  .mobile-layout .page-nav-mobile {
    display: flex;
  }

  body.mobile-layout::before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    backdrop-filter: blur(12px);
    background: rgba(242, 218, 214, 0.5);
    z-index: 99;
  }

  /* Fix body height on mobile */
  body.mobile-layout {
    height: auto !important;
  }

  .site-footer {
    position: relative;
  }

  /* Panel 1 mobile */
  .first-sip {
    flex-direction: column;
    text-align: center;
  }

  .sip-text {
    max-width: 100%;
  }

  .tagline {
    max-width: 100%;
  }

  .hero-image-frame {
    flex: none;
    max-width: 100%;
  }

  .hero-img {
    height: 250px;
  }

  .scroll-hint {
    justify-content: center;
  }

  .hint-arrow {
    display: none;
  }

  .hint-text::after {
    content: ' ↓';
  }

  .steam-container {
    display: none;
  }

  /* Panel 2 mobile */
  .craft-panel {
    flex-direction: column;
  }

  .craft-left {
    flex: none;
    max-width: 100%;
  }

  .craft-img-wrapper.img-2 {
    margin-left: 40px;
    margin-top: -30px;
  }

  .craft-img {
    height: 200px;
  }

  /* Panel 3 mobile */
  .story-panel {
    flex-direction: column;
  }

  .story-image-side {
    flex: none;
  }

  .story-img {
    height: 280px;
  }

  .story-text-side {
    max-width: 100%;
  }

  /* Panel 4 mobile */
  .gathering-gallery {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  /* Panel 5 mobile */
  .findus-panel {
    flex-direction: column;
  }

  .findus-left {
    flex: none;
    max-width: 100%;
  }

  .map-wrapper {
    height: 250px;
  }

  /* Menu page mobile */
  .menu-hero {
    padding-top: 6rem;
  }

  .menu-body {
    padding: 0 1.5rem 3rem;
  }

  .menu-image-break {
    margin: 2rem 0;
  }

  .menu-break-img {
    height: 200px;
  }

  /* Story page mobile */
  .story-hero {
    padding-top: 6rem;
  }

  .story-body {
    padding: 0 1.5rem 3rem;
  }

  .chapter-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chapter-reverse .chapter-layout {
    direction: ltr;
  }

  .chapter-img {
    height: 240px;
  }

  .story-chapter {
    margin-bottom: 3rem;
  }

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

  /* Page nav mobile */
  .page-nav {
    padding: 0.75rem 1.5rem;
  }

  .page-nav-brand {
    font-size: 1rem;
  }

  .page-nav-links {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.65rem;
  }

  /* WhatsApp button mobile */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

/* Small phones */
@media (max-width: 374px) {
  .main-title {
    font-size: 2.8rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .panel-content {
    padding: 5rem 1rem 2rem;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .panel-content {
    padding: 5rem 6rem 3rem;
  }

  .craft-img {
    height: 320px;
  }

  .hero-img {
    height: 480px;
  }

  .story-img {
    height: 500px;
  }
}
