/* ========================================
   SHARMA CAFE — THE BREW SPECTRUM
   styles/custom.css
   ======================================== */

:root {
  --bg: #FFFFFF;
  --bg-alt: #FAFAFA;
  --text: #0A0A0A;
  --text-muted: #555555;
  --accent: #FF4D00;
  --accent-hover: #E63E00;
  --accent-rgb: 255, 77, 0;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Instrument Serif', serif;
  --panel-1-accent: #FF4D00;
  --panel-2-accent: #FF8C00;
  --panel-3-accent: #FF2D55;
  --panel-4-accent: #00BFA5;
  --panel-5-accent: #536DFE;
  --nav-height: 64px;
  --section-padding: clamp(2rem, 5vw, 5rem);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

/* ========================================
   NAV — Hover & CTA
   ======================================== */

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-link-cta:hover {
  background: var(--accent-hover) !important;
  color: #FFFFFF !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--accent);
}

/* ========================================
   HORIZONTAL SCROLL — Index Page
   ======================================== */

.horizontal-wrapper {
  overflow: hidden;
}

.horizontal-container {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

.panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* ========================================
   PANEL 1 — Hero
   ======================================== */

.panel-hero {
  display: flex;
  align-items: center;
  background: #FFFFFF;
}

.hero-content {
  width: 55%;
  padding-left: var(--section-padding);
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-decorative-circle {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  pointer-events: none;
  animation: circle-pulse 4s ease-in-out infinite;
}

@keyframes circle-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

.hero-image-container {
  width: 45%;
  height: 80vh;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken-burns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ken-burns {
  0% { transform: scale(1.15); }
  100% { transform: scale(1.0); }
}

.hero-vertical-text {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* ========================================
   PANEL 2 — Our Story
   ======================================== */

.panel-story {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  background-image: linear-gradient(to bottom, transparent 90%, rgba(var(--accent-rgb), 0.03) 100%);
}

.story-image-col {
  width: 40%;
  padding-left: var(--section-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-image {
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}

.story-divider {
  width: 1px;
  align-self: center;
  height: 60%;
  background: rgba(var(--accent-rgb), 0.2);
  margin: 0 2.5%;
  flex-shrink: 0;
}

.story-content {
  width: 55%;
  padding-right: var(--section-padding);
}

.story-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.story-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-top: 0.75rem;
}

.story-paragraph {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.story-paragraph + .story-paragraph {
  margin-top: 1rem;
}

.story-accent-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.story-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  flex-shrink: 0;
}

.story-location {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   PANEL 3 — Menu Highlights
   ======================================== */

.panel-menu {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: var(--section-padding);
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30%;
  padding-top: 1rem;
}

.menu-header-left {
  display: flex;
  flex-direction: column;
}

.menu-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.menu-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-top: 0.5rem;
}

.menu-view-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.menu-view-link:hover {
  text-decoration: underline;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  flex: 1;
  align-items: stretch;
}

.menu-card {
  border-radius: 6px;
  overflow: hidden;
}

.menu-card-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 6px;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.menu-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  transition: opacity 0.4s ease;
}

.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
}

.menu-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.menu-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   PANEL 4 — The Vibe
   ======================================== */

.panel-vibe {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.vibe-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: vibe-pan 30s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes vibe-pan {
  0% { transform: translateX(-2%); }
  100% { transform: translateX(2%); }
}

.vibe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.88) 0%, rgba(0, 150, 136, 0.92) 100%);
}

.vibe-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--section-padding);
  max-width: 800px;
}

.vibe-quote-block {
  position: relative;
}

.vibe-quote-mark {
  font-family: var(--font-accent);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -4rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

.vibe-quote-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: #FFFFFF;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto;
}

.vibe-attribution {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
}

.vibe-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.vibe-stat {
  text-align: center;
}

.vibe-stat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.vibe-stat-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   PANEL 5 — Find Us
   ======================================== */

.panel-findus {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
}

.findus-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-padding);
}

.findus-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.findus-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-top: 0.75rem;
}

.findus-address {
  margin-top: 2rem;
}

.findus-address p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.findus-phone {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  margin-top: 1.5rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.findus-phone:hover {
  color: var(--accent);
}

.findus-email {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.findus-email:hover {
  color: var(--accent);
}

.findus-whatsapp-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: #25D366;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 2rem;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.findus-whatsapp-btn:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
}

.findus-hours {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.findus-map {
  width: 50%;
  height: 100%;
}

.findus-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: whatsapp-pulse 2s infinite;
}

/* ========================================
   MENU PAGE — menu.html
   ======================================== */

.page-menu {
  padding-top: var(--nav-height);
}

/* Menu Hero */
.menu-hero-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

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

.menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 15s ease-in-out infinite alternate;
  will-change: transform;
}

.menu-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.menu-hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.menu-hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #FFFFFF;
  margin-top: 0.5rem;
}

.menu-hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
}

/* Menu Categories */
.menu-categories-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

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

.menu-category-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  white-space: nowrap;
}

.menu-category-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--text);
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  margin: 0 0.75rem;
  align-self: flex-end;
  margin-bottom: 4px;
}

.menu-item-desc {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Menu CTA */
.menu-cta-section {
  background: #FF2D55;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
}

.menu-cta-content {
  text-align: center;
}

.menu-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
}

.menu-cta-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
}

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

.menu-cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.menu-cta-btn-primary {
  background: #FFFFFF;
  color: #FF2D55;
}

.menu-cta-btn-primary:hover {
  background: #F0F0F0;
  transform: translateY(-2px);
}

.menu-cta-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.menu-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ========================================
   VISIT PAGE — visit.html
   ======================================== */

.page-visit {
  padding-top: var(--nav-height);
}

/* Visit Hero */
.visit-hero-section {
  height: 50vh;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-hero-content {
  text-align: center;
}

.visit-accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.visit-hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--text);
}

.visit-hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Map + Contact Grid */
.visit-map-contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-padding);
}

.visit-map-contact-grid {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 5%;
}

.visit-map-col iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: 8px;
  display: block;
}

.visit-contact-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-contact-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.visit-contact-block {
  margin-bottom: 1.5rem;
}

.visit-contact-block-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.visit-contact-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit-contact-link {
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.visit-contact-link:hover {
  color: var(--accent);
}

.visit-whatsapp-btn {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: #25D366;
  padding: 0.875rem;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.visit-whatsapp-btn:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
}

/* Contact Form */
.visit-form-wrapper {
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--section-padding) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: var(--bg-alt);
  padding-left: var(--section-padding);
  padding-right: var(--section-padding);
  border-radius: 12px;
}

.visit-form-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.visit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.visit-form-field {
  display: flex;
  flex-direction: column;
}

.visit-form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.visit-form-input,
.visit-form-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  background: #FFFFFF;
  transition: border-color 0.2s ease;
  outline: none;
}

.visit-form-input:focus,
.visit-form-textarea:focus {
  border-color: var(--accent);
}

.visit-form-textarea {
  resize: vertical;
  margin-bottom: 1.5rem;
}

.visit-form-submit-wrap {
  display: flex;
  justify-content: flex-end;
}

.visit-form-submit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: var(--accent);
  padding: 0.875rem 2.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.visit-form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
}

/* ========================================
   MOBILE ANIMATIONS (for IntersectionObserver)
   ======================================== */

@media (max-width: 768px) {
  .hero-eyebrow,
  .hero-heading,
  .hero-tagline,
  .hero-cta,
  .hero-scroll-hint,
  .story-image,
  .story-content,
  .menu-header,
  .menu-card,
  .vibe-content,
  .findus-content,
  .findus-map {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* ========================================
   RESPONSIVE — Mobile (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none !important;
  }

  #navTimeline {
    display: none !important;
  }

  /* Horizontal → Vertical */
  .horizontal-container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

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

  /* Hero Mobile */
  .panel-hero {
    flex-direction: column;
    padding: calc(var(--nav-height) + 2rem) var(--section-padding) 2rem;
  }

  .hero-content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    order: 2;
    text-align: center;
  }

  .hero-decorative-circle {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
  }

  .hero-image-container {
    width: 100%;
    height: 40vh;
    order: 1;
    margin-bottom: 2rem;
    border-radius: 8px;
  }

  .hero-vertical-text {
    display: none;
  }

  .hero-cta {
    margin-top: 1.5rem;
  }

  .hero-scroll-hint {
    margin-top: 1.5rem;
  }

  /* Story Mobile */
  .panel-story {
    flex-direction: column;
    padding: calc(var(--nav-height) + 2rem) var(--section-padding) 2rem;
  }

  .story-image-col {
    width: 100%;
    padding-left: 0;
    margin-bottom: 2rem;
  }

  .story-image {
    max-height: 50vh;
  }

  .story-divider {
    display: none;
  }

  .story-content {
    width: 100%;
    padding-right: 0;
  }

  /* Menu Highlights Mobile */
  .panel-menu {
    padding: calc(var(--nav-height) + 2rem) var(--section-padding) 2rem;
    height: auto;
    min-height: auto;
  }

  .menu-header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

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

  /* Vibe Mobile */
  .panel-vibe {
    min-height: 100vh;
    height: auto;
  }

  .vibe-quote-mark {
    font-size: 5rem;
    top: -2.5rem;
    left: -0.5rem;
  }

  .vibe-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Find Us Mobile */
  .panel-findus {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 2rem);
  }

  .findus-content {
    width: 100%;
    padding-bottom: 2rem;
  }

  .findus-map {
    width: 100%;
    height: 50vh;
  }

  /* Footer Mobile */
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem;
    text-align: center;
  }

  /* Menu Page Mobile */
  .menu-hero-section {
    height: 45vh;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-item-dots {
    display: none;
  }

  .menu-item-desc {
    white-space: normal;
    display: block;
    width: 100%;
    margin-top: 0.25rem;
  }

  .menu-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .menu-cta-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Visit Page Mobile */
  .visit-map-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .visit-form-grid {
    grid-template-columns: 1fr;
  }

  .visit-form-submit-wrap {
    justify-content: center;
  }

  .visit-form-submit {
    width: 100%;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-image,
  .menu-hero-img,
  .vibe-bg-img {
    animation: none !important;
  }

  .menu-card:hover .menu-card-img {
    transform: none;
  }

  .whatsapp-float {
    animation: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-pulse {
    animation: none;
  }

  .hero-cta:hover,
  .menu-cta-btn:hover,
  .findus-whatsapp-btn:hover,
  .visit-whatsapp-btn:hover,
  .visit-form-submit:hover {
    transform: none;
  }
}

/* ========================================
   TOUCH DEVICE — HIDE CUSTOM CURSOR
   ======================================== */

@media (pointer: coarse) {
  .whatsapp-float:hover {
    transform: none;
  }
}
