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

:root {
  --plum: #6B2F5B;
  --plum-deep: #4A1D40;
  --plum-light: #8B4575;
  --amber: #F5A623;
  --amber-light: #FCC86B;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --text: #1A0A14;
  --text-muted: #6B5468;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(107, 47, 91, 0.08);
  --shadow-lg: 0 12px 48px rgba(107, 47, 91, 0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--plum); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; font-size: 0.875rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--amber {
  background: var(--amber); color: var(--text);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}
.btn--amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}
.btn--light {
  background: var(--white); color: var(--plum);
  box-shadow: var(--shadow);
}
.btn--light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }

/* ── Typography helpers ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text); margin-bottom: 24px;
}
.accent { color: var(--plum); }
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(107, 47, 91, 0.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.375rem; font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}
.header.scrolled .logo { color: var(--plum-deep); }
.logo-mark {
  font-size: 1.75rem; line-height: 1;
  color: var(--amber);
}
.logo-text { letter-spacing: -0.01em; }

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.9375rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header.scrolled .nav a { color: var(--text-muted); }
.header.scrolled .nav a:hover { color: var(--plum); }

.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px;
}
.nav-toggle-line {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.header.scrolled .nav-toggle-line { background: var(--plum); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--plum-deep) 0%,
    var(--plum) 40%,
    #8B4575 70%,
    #A8558A 100%
  );
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(245, 166, 35, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(139, 69, 117, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative; text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 24px;
}
.hero-title-accent {
  font-style: italic; font-weight: 400;
  color: var(--amber-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
.badge {
  padding: 8px 20px; border-radius: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Featured Dishes ── */
.featured {
  padding: 120px 0;
  background: var(--cream);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dish-card-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
}
.dish-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: var(--text);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em;
}
.dish-card-body { padding: 24px; }
.dish-card-name {
  font-family: var(--font-serif);
  font-size: 1.375rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.dish-card-desc {
  font-size: 0.9375rem; color: var(--text-muted);
  line-height: 1.65;
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--cream-dark);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative; height: 600px;
}
.about-img-main, .about-img-small {
  position: absolute; border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-img-main {
  width: 75%; height: 75%;
}
.about-img-small {
  width: 55%; height: 45%;
}
.about-accent {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.15;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.about-content { max-width: 480px; }
.about-text {
  font-size: 1.0625rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 20px;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 47, 91, 0.1);
}
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--plum); line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8125rem; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ── Experience ── */
.experience {
  padding: 120px 0;
  background: var(--cream);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 56px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.4s, box-shadow 0.4s;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.exp-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px;
}
.exp-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.exp-card-desc {
  font-size: 0.9375rem; color: var(--text-muted);
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery {
  overflow: hidden;
  padding: 0 0 120px;
  background: var(--cream);
}
.gallery-track {
  display: flex; gap: 16px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}
.gallery-item {
  flex-shrink: 0;
  width: 380px; height: 260px;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.02); }
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: var(--cream-dark);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: stretch;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden; min-height: 420px;
  box-shadow: var(--shadow-lg);
}
.contact-list {
  gap: 28px; margin-top: 40px;
}
.contact-item dt {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 6px;
}
.contact-item dd {
  font-size: 1.0625rem; color: var(--text);
  line-height: 1.7;
}
.contact-item a {
  color: var(--plum); font-weight: 500;
  border-bottom: 1px solid rgba(107, 47, 91, 0.2);
  transition: border-color 0.2s;
}
.contact-item a:hover { border-color: var(--plum); }

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: linear-gradient(
    145deg,
    var(--plum-deep) 0%,
    var(--plum) 50%,
    var(--plum-light) 100%
  );
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(245, 166, 35, 0.15), transparent);
  pointer-events: none;
}
.cta-inner {
  position: relative; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 40px;
}
.cta-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding: 80px 0 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.9375rem; }
.footer-contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav.open { transform: translateY(0); }
  .nav ul { flex-direction: column; gap: 20px; }
  .nav a { color: var(--text) !important; font-size: 1.0625rem; }
  .nav .btn--amber { color: var(--text) !important; text-align: center; justify-content: center; }

  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .featured-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; order: -1; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .experience-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
