@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --background: #faf6f0;
  --foreground: #353a1c;
  --kurkuma-green: #353a1c;
  --kurkuma-green-dark: #252819;
  --kurkuma-yellow: #eaaa48;
  --kurkuma-yellow-light: #f0c06a;
  --kurkuma-yellow-dark: #c48f2e;
  --kurkuma-cream: #faf6f0;
  --kurkuma-cream-dark: #f0e8da;
  --kurkuma-charcoal: #353a1c;
  --kurkuma-warm-gray: #5a5f4c;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-nav: "DM Sans", "Outfit", system-ui, sans-serif;
  --header-height: 4rem;
}

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

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

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

::selection {
  background-color: rgba(234, 170, 72, 0.3);
  color: var(--kurkuma-charcoal);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--kurkuma-cream); }
::-webkit-scrollbar-thumb { background: var(--kurkuma-yellow-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--kurkuma-yellow); }

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

.font-nav {
  font-family: var(--font-nav);
  -webkit-font-smoothing: antialiased;
}

.scroll-mt { scroll-margin-top: 6rem; }

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left { transform: translateX(-1.875rem); }
.animate-slide-left.is-visible { transform: translateX(0); }

.animate-slide-right { transform: translateX(1.875rem); }
.animate-slide-right.is-visible { transform: translateX(0); }

.animate-scale { transform: scale(0.92); }
.animate-scale.is-visible { transform: scale(1); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Components */
.brand-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 200px;
}

.brand-divider::before,
.brand-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 170, 72, 0.5));
}

.brand-divider::after {
  background: linear-gradient(90deg, rgba(234, 170, 72, 0.5), transparent);
}

.brand-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--kurkuma-yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.brand-divider.light::before,
.brand-divider.light::after {
  background: linear-gradient(90deg, transparent, rgba(234, 170, 72, 0.6));
}

.brand-divider.light::after {
  background: linear-gradient(90deg, rgba(234, 170, 72, 0.6), transparent);
}

.brand-divider.left::before { display: none; }

.decorative-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--kurkuma-yellow), var(--kurkuma-yellow-light));
}

.brand-card {
  background: white;
  border: 1px solid rgba(53, 58, 28, 0.06);
  box-shadow: 0 4px 24px rgba(53, 58, 28, 0.06);
  transition: box-shadow 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 8px 32px rgba(53, 58, 28, 0.1);
}

.brand-card-dark {
  background: var(--kurkuma-green);
  border: 1px solid rgba(234, 170, 72, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.grain-overlay { position: relative; }

.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.image-zoom-container {
  overflow: hidden;
  position: relative;
}

.image-zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-container:hover img {
  transform: scale(1.06);
}

.image-card {
  position: relative;
  height: 24rem;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card.fit-top img {
  top: -25px;
  height: calc(100% + 25px);
}

.image-card.aspect-4-5 { aspect-ratio: 4/5; height: auto; }
.image-card.aspect-square { aspect-ratio: 1; height: auto; }
.image-card.aspect-4-3 { aspect-ratio: 4/3; height: auto; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.5s;
}

.image-zoom-container:hover .gallery-overlay {
  background: rgba(53, 58, 28, 0.3);
}

.gallery-icon {
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
}

.image-zoom-container:hover .gallery-icon { opacity: 1; }

@media (hover: none) {
  .gallery-overlay { background: rgba(53, 58, 28, 0.2); }
  .gallery-icon { opacity: 0.9; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  min-height: 48px;
  border-radius: 6px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }
.btn:hover { transform: scale(1.02); }

.btn-primary {
  background: var(--kurkuma-yellow);
  color: var(--kurkuma-green);
  box-shadow: 0 4px 16px rgba(234, 170, 72, 0.3);
}

.btn-primary:hover {
  background: var(--kurkuma-yellow-light);
}

.btn-outline {
  background: transparent;
  color: var(--kurkuma-yellow);
  border: 1px solid var(--kurkuma-yellow);
}

.btn-outline:hover {
  background: rgba(234, 170, 72, 0.1);
}

.btn-outline-green {
  background: transparent;
  color: var(--kurkuma-green);
  border: 2px solid var(--kurkuma-green);
}

.btn-outline-green:hover {
  background: rgba(53, 58, 28, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--kurkuma-cream);
  border: 1px solid rgba(250, 246, 240, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-header {
  padding: 0.5rem 1.25rem;
  min-height: 40px;
  font-size: 0.75rem;
}

.btn-full { width: 100%; }

/* Section utilities */
.section-eyebrow {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kurkuma-yellow-dark);
  margin-bottom: 0.75rem;
}

.section-eyebrow.light { color: var(--kurkuma-yellow); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--kurkuma-green);
  line-height: 1.2;
}

.section-title.light { color: var(--kurkuma-cream); }

.section-subtitle {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--kurkuma-warm-gray);
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(250, 246, 240, 0.75); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header.left { text-align: left; }
.section-header.left .brand-divider { margin-inline: 0; }

.section-padding { padding-block: 3.5rem; }
@media (min-width: 768px) { .section-padding { padding-block: 5rem; } }
@media (min-width: 1024px) { .section-padding { padding-block: 8rem; } }

.bg-cream { background: var(--kurkuma-cream); }
.bg-green { background: var(--kurkuma-green); color: var(--kurkuma-cream); }

.text-warm-gray { color: var(--kurkuma-warm-gray); }
.text-green { color: var(--kurkuma-green); }
.text-yellow { color: var(--kurkuma-yellow); }
.text-cream { color: var(--kurkuma-cream); }
.text-cream-muted { color: rgba(250, 246, 240, 0.8); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--kurkuma-green);
  border-bottom: 1px solid rgba(234, 170, 72, 0.1);
  padding-top: env(safe-area-inset-top);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 3.5rem;
}

@media (min-width: 1024px) { .header-inner { height: 4.5rem; } }

.header-logo img { height: 2rem; width: auto; }
@media (min-width: 768px) { .header-logo img { height: 2.25rem; } }
@media (min-width: 1024px) { .header-logo img { height: 2.5rem; } }

.header-logo-icon { display: block; }
.header-logo-vertical { display: none; }
@media (min-width: 640px) {
  .header-logo-icon { display: none; }
  .header-logo-vertical { display: block; }
}

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex: 1;
  padding-inline: 1rem;
}

@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.25rem;
  font-family: var(--font-nav);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.9);
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active { color: var(--kurkuma-yellow); }

.nav-link.active { font-weight: 600; }

.nav-link::after {
  content: "";
  margin-top: 0.5rem;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--kurkuma-yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: center;
}

.nav-link.active::after,
.nav-link:hover::after { transform: scaleX(1); }

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) { .header-actions { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--kurkuma-yellow);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.header-phone:hover { color: var(--kurkuma-yellow-light); }

.header-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) { .header-mobile-actions { display: none; } }

.menu-toggle {
  color: var(--kurkuma-yellow);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.menu-toggle:hover { background: rgba(255, 255, 255, 0.05); }

.mobile-menu {
  display: none;
  background: var(--kurkuma-green);
  border-top: 1px solid rgba(234, 170, 72, 0.1);
  overflow: hidden;
}

.mobile-menu.open { display: block; animation: fadeIn 0.3s; }

.mobile-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0 1rem 0.75rem;
  min-height: 48px;
  font-family: var(--font-nav);
  font-size: 1.0625rem;
  color: rgba(250, 246, 240, 0.9);
  border-bottom: 1px solid rgba(234, 170, 72, 0.15);
  transition: color 0.3s;
}

.mobile-nav-link.active {
  color: var(--kurkuma-yellow);
  font-weight: 600;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--kurkuma-yellow);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-link.active::before { opacity: 1; }

.mobile-menu-footer {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent, rgba(0,0,0,1));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  padding: calc(4.5rem + env(safe-area-inset-top)) 1.25rem 5rem;
}

.hero-logo {
  max-width: 260px;
  margin: 0 auto 0rem;
}

@media (min-width: 640px) { .hero-logo { max-width: 320px; } }
@media (min-width: 768px) { .hero-logo { max-width: 581px; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  color: var(--kurkuma-cream);
  line-height: 1.3;
  margin-bottom: 1rem;
	margin-top: 0;
}

.hero-desc {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: rgba(250, 246, 240, 0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 20rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
    align-items: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  color: rgba(234, 170, 72, 0.5);
  animation: bounce 2s infinite;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.grid-2-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) { .grid-2-cards { gap: 3rem; grid-template-columns: 1fr 1fr; } }

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

@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

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

@media (min-width: 768px) { .grid-contact { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-contact { grid-template-columns: repeat(3, 1fr); } }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-item { border-radius: 2px; }
.gallery-item:first-child { aspect-ratio: 1; }
@media (min-width: 768px) {
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 200px;
  }
}

.gallery-item:not(:first-child) { aspect-ratio: 1; }

/* Soirees */
.soirees-section {
  position: relative;
  overflow: hidden;
}

.soirees-bg {
  position: absolute;
  inset: 0;
}

.soirees-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soirees-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 40, 25, 0.88);
}

.soirees-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--kurkuma-yellow);
}

.stat-label {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.5);
}

/* Cuisine images grid */
.cuisine-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cuisine-images .image-card:nth-child(2) { margin-top: 2rem; }

/* Partage */
.partage-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .partage-highlights { grid-template-columns: repeat(3, 1fr); } }

.highlight-item {
  text-align: center;
  padding: 1rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .highlight-item { text-align: left; padding: 0; background: transparent; }
}

.highlight-icon { color: var(--kurkuma-yellow); margin-bottom: 0.75rem; }
.highlight-title { font-size: 0.875rem; font-weight: 500; color: var(--kurkuma-green); margin-bottom: 0.25rem; }
.highlight-text { font-size: 0.75rem; color: var(--kurkuma-warm-gray); line-height: 1.6; }

.order-mobile-first { order: 2; }
.order-mobile-second { order: 1; }
@media (min-width: 1024px) {
  .order-mobile-first { order: 1; }
  .order-mobile-second { order: 2; }
}

/* Card body */
.card-body { padding: 1.75rem; }
@media (min-width: 640px) { .card-body { padding: 2.5rem; } }
@media (min-width: 768px) { .card-body { padding: 3rem; } }

.card-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--kurkuma-green);
}

.card-title.light { color: var(--kurkuma-cream); }

/* Footer */
.site-footer {
  background: var(--kurkuma-green);
  color: rgba(250, 246, 240, 0.8);
  padding-bottom: env(safe-area-inset-bottom);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 4fr 3fr 2fr 3fr; gap: 2.5rem; }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-brand { align-items: flex-start; text-align: left; grid-column: span 2; }
}

@media (min-width: 1024px) { .footer-brand { grid-column: span 1; } }

.footer-logo { height: 5rem; width: auto; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .footer-logo { height: 10rem; } }
@media (min-width: 768px) { .footer-logo { height: 11rem; } }
@media (min-width: 1024px) { .footer-logo { height: 5rem; } }

.footer-tagline {
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.65);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kurkuma-yellow);
  margin-bottom: 1rem;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.85);
  transition: color 0.2s;
}

.footer-row:hover { color: var(--kurkuma-yellow); }

.footer-row-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 2px;
  color: var(--kurkuma-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-list { display: flex; flex-direction: column; gap: 1rem; }

.footer-hours-days { display: block; font-weight: 500; color: var(--kurkuma-cream); }
.footer-hours-time { display: block; color: rgba(250, 246, 240, 0.6); }

.footer-parking {
  margin-top: 1.25rem;
  padding-left: 2rem;
  font-size: 0.75rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.7;
}

.footer-quick-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(234, 170, 72, 0.1);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

@media (min-width: 640px) { .footer-links-grid { grid-template-columns: 1fr; } }

.footer-link {
  font-family: var(--font-nav);
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.7);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--kurkuma-yellow); }

.footer-divider-wrap {
  display: flex;
  justify-content: center;
  margin-block: 2.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(234, 170, 72, 0.1);
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(250, 246, 240, 0.45);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    font-size: 0.75rem;
  }
}

/* Contact cards */
.contact-card {
  padding: 1.5rem;
}

@media (min-width: 640px) { .contact-card { padding: 2rem; } }
@media (min-width: 768px) { .contact-card { padding: 2.5rem; } }

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--kurkuma-green);
  margin-bottom: 0.75rem;
}

.contact-card-icon { color: var(--kurkuma-yellow); margin-bottom: 1rem; }

.hours-row {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
  color: var(--kurkuma-warm-gray);
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .hours-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.hours-time { color: var(--kurkuma-green); font-weight: 500; }

/* CTA section */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 20rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: none;
    align-items: center;
  }
}

/* Menu page */
.menu-header {
  padding-top: calc(6rem + env(safe-area-inset-top));
  padding-bottom: 1.5rem;
  background: var(--kurkuma-cream);
  text-align: center;
}

.menu-logo { height: 7rem; margin: 0 auto; }
@media (min-width: 640px) { .menu-logo { height: 9rem; } }

.menu-category { scroll-margin-top: 8rem; margin-bottom: 4rem; }

.menu-category h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--kurkuma-charcoal);
}

@media (min-width: 768px) { .menu-category h2 { font-size: 1.875rem; } }

.menu-category-subtitle {
  color: var(--kurkuma-warm-gray);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 0.25rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--kurkuma-cream-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .menu-item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.menu-item:last-child { border-bottom: none; margin-bottom: 0; }

.menu-item-name { font-weight: 500; color: var(--kurkuma-charcoal); }
.menu-item-desc { font-size: 0.875rem; color: var(--kurkuma-warm-gray); margin-top: 0.25rem; line-height: 1.6; }
.menu-item-price { color: var(--kurkuma-yellow); font-weight: 500; white-space: nowrap; }

.menu-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(90, 95, 76, 0.6);
  max-width: 32rem;
  margin: 4rem auto 0;
}

.menu-content { max-width: 48rem; margin: 0 auto; }

/* 404 */
.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--kurkuma-cream);
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--kurkuma-green);
  margin-bottom: 1rem;
}

/* Reservation modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
}

.modal-backdrop.open { display: flex; animation: fadeIn 0.2s; }

.modal-panel {
  width: 100%;
  height: 100dvh;
  background: var(--kurkuma-yellow);
  color: var(--kurkuma-green);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 640px) {
  .modal-panel {
    max-width: 420px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  }
}

.modal-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1rem + env(safe-area-inset-top)) 1.25rem 1rem;
  border-bottom: 1px solid rgba(53, 58, 28, 0.2);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.modal-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(53, 58, 28, 0.8);
}

.lang-toggle:hover { color: var(--kurkuma-green); }

.modal-close {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: var(--kurkuma-green);
}

.modal-close:hover { background: rgba(53, 58, 28, 0.1); }

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 1.25rem 1.25rem;
}

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-policy {
  padding: 1rem 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(53, 58, 28, 0.9);
}

.accordion-section {
  border-top: 1px solid rgba(53, 58, 28, 0.25);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  color: var(--kurkuma-green);
}

.accordion-content {
  display: none;
  padding-bottom: 1rem;
}

.accordion-content.open { display: block; }

.guest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.guest-btn, .date-btn, .seating-btn, .time-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 2px solid rgba(53, 58, 28, 0.5);
  border-radius: 6px;
  background: rgba(234, 170, 72, 0.2);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--kurkuma-green);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.guest-btn:hover, .date-btn:hover, .seating-btn:hover, .time-btn:hover {
  background: rgba(234, 170, 72, 0.4);
}

.guest-btn.selected, .date-btn.selected, .seating-btn.selected, .time-btn.selected {
  border-color: var(--kurkuma-green);
  background: var(--kurkuma-green);
  color: var(--kurkuma-yellow);
}

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

.date-btn { flex-direction: column; padding: 0.75rem 0.5rem; font-size: 0.75rem; }

.seating-list { display: flex; flex-direction: column; gap: 0.5rem; }

.seating-btn { width: 100%; padding: 0.875rem 1rem; }

.time-section { margin-bottom: 1rem; }

.time-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.time-slots { display: flex; flex-direction: column; gap: 0.5rem; }

.time-btn { justify-content: flex-start; gap: 0.75rem; padding: 0.875rem 1rem; }

.large-group-notice {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(53, 58, 28, 0.8);
}

.modal-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(53, 58, 28, 0.2);
}

.modal-reserve-btn {
  width: 100%;
  padding: 1rem;
  background: var(--kurkuma-green);
  color: var(--kurkuma-yellow);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.modal-reserve-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-reserve-btn:not(:disabled):hover { opacity: 0.9; }

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(53, 58, 28, 0.5);
  border-radius: 6px;
  background: rgba(234, 170, 72, 0.2);
  font-size: 0.875rem;
  color: var(--kurkuma-green);
}

.form-group input:focus {
  outline: none;
  border-color: var(--kurkuma-green);
}

.form-group input::placeholder { color: rgba(53, 58, 28, 0.5); }

.booking-summary {
  background: rgba(53, 58, 28, 0.08);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.booking-summary p { margin: 0.25rem 0; }

.modal-message {
  text-align: center;
  padding: 2rem 0;
}

.modal-message h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-message p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }

.hidden-date-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.date-btn-other { position: relative; }

body.modal-open { overflow: hidden; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
