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

:root {
  --cream: #FBF8F1;
  --cream-dark: #F5F0E6;
  --emerald-700: #047857;
  --emerald-800: #065F46;
  --emerald-900: #064E3B;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--cream);
  color: var(--emerald-900);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

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

/* ── Navigation ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.5s var(--ease-out);
}

.nav-fixed.scrolled {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--emerald-900);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-logo-icon {
  color: var(--emerald-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-800);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--emerald-700);
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--emerald-900);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

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

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 241, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-menu-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--emerald-900);
  letter-spacing: 0.02em;
  transition: color 0.3s, transform 0.4s var(--ease-out);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.25s; }

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

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(4, 120, 87, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(6, 95, 70, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--emerald-700);
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.2rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--emerald-900);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s var(--ease-out) 0.25s both;
}

.hero-title-accent {
  font-style: italic;
  color: var(--emerald-700);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(6, 78, 59, 0.7);
  max-width: 520px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out) 0.55s both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--cream);
  border: 1px solid var(--emerald-700);
}

.btn-primary:hover {
  background: var(--emerald-800);
  border-color: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(4, 120, 87, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--emerald-800);
  border: 1px solid rgba(4, 120, 87, 0.25);
}

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

/* ── Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(6, 78, 59, 0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(4, 120, 87, 0.4), 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); }
}

/* ── Section Divider ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.divider-icon {
  color: rgba(4, 120, 87, 0.15);
}

/* ── Section Labels & Titles ── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--emerald-900);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(6, 78, 59, 0.6);
  max-width: 480px;
}

.text-emerald {
  color: var(--emerald-700);
  font-style: italic;
}

/* ── Menu Section ── */
.menu-section {
  padding: 7rem 0;
}

.menu-section .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-section .section-subtitle {
  margin: 0 auto;
}

.menu-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.menu-cat {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 78, 59, 0.5);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}

.menu-cat:hover {
  color: var(--emerald-800);
}

.menu-cat.active {
  color: var(--emerald-700);
  border-color: rgba(4, 120, 87, 0.25);
  background: rgba(4, 120, 87, 0.05);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(4, 120, 87, 0.06);
  transition: all 0.5s var(--ease-out);
  cursor: default;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4, 120, 87, 0.1);
  border-color: rgba(4, 120, 87, 0.12);
}

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 5/4;
}

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

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

.menu-card-body {
  padding: 1.5rem;
}

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--emerald-900);
}

.menu-card-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: rgba(4, 120, 87, 0.07);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.menu-card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(6, 78, 59, 0.6);
}

/* ── About Section ── */
.about-section {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 20px 60px rgba(4, 120, 87, 0.12);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -1.5rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.1), rgba(16, 185, 129, 0.08));
  z-index: -1;
}

.about-content {
  padding: 1rem 0;
}

.about-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(6, 78, 59, 0.7);
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(4, 120, 87, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(6, 78, 59, 0.5);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(4, 120, 87, 0.15);
}

/* ── Visit Section ── */
.visit-section {
  padding: 7rem 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-info .section-header {
  margin-bottom: 2.5rem;
}

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

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(4, 120, 87, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
}

.visit-detail h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--emerald-900);
  margin-bottom: 0.3rem;
}

.visit-detail p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(6, 78, 59, 0.6);
}

.visit-detail a {
  color: var(--emerald-700);
  transition: color 0.3s;
}

.visit-detail a:hover {
  color: var(--emerald-800);
  text-decoration: underline;
}

.btn-map {
  display: inline-flex;
}

.visit-map {
  border-radius: 20px;
  overflow: hidden;
}

.map-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
}

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

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(251, 248, 241, 0.3);
}

.map-pin {
  animation: pinBounce 2s ease-in-out infinite;
}

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

.map-label {
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--emerald-900);
  background: var(--cream);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── Contact Section ── */
.contact-section {
  padding: 7rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-content .section-header {
  margin-bottom: 1.5rem;
}

.contact-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(6, 78, 59, 0.6);
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--emerald-800);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  transition: all 0.3s;
}

.contact-link:hover {
  color: var(--emerald-700);
  padding-left: 0.5rem;
  border-color: rgba(4, 120, 87, 0.2);
}

.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(4, 120, 87, 0.06);
  box-shadow: 0 10px 40px rgba(4, 120, 87, 0.04);
}

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

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(6, 78, 59, 0.5);
  margin-bottom: 0.6rem;
}

.form-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--emerald-900);
  background: var(--cream);
  border: 1px solid rgba(4, 120, 87, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: all 0.3s var(--ease-out);
}

.form-input::placeholder {
  color: rgba(6, 78, 59, 0.3);
}

.form-input:focus {
  border-color: var(--emerald-700);
  background: white;
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.06);
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(4, 120, 87, 0.06);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--emerald-700);
  animation: fadeUp 0.4s var(--ease-out);
}

/* ── Footer ── */
.footer {
  background: var(--emerald-900);
  color: rgba(251, 248, 241, 0.7);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 248, 241, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo svg {
  color: var(--emerald-400);
}

.footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(251, 248, 241, 0.5);
}

.footer-nav {
  display: flex;
  gap: 2.5rem;
}

.footer-nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.5);
  transition: color 0.3s;
}

.footer-nav-link:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(251, 248, 241, 0.3);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-grid {
    gap: 3rem;
  }

  .about-images {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 5rem 1.5rem 4rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

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

  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 380px;
    order: -1;
  }

  .about-img-float {
    right: -1rem;
    bottom: -1.5rem;
    width: 55%;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .visit-grid {
    gap: 2.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

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

  .contact-form-wrap {
    padding: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .menu-categories {
    gap: 0.4rem;
  }

  .menu-cat {
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
  }

  .about-images {
    height: 300px;
  }

  .about-img-float {
    width: 50%;
    right: -0.75rem;
    bottom: -1rem;
  }
}
