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

:root {
  --emerald: #065f46;
  --emerald-light: #047857;
  --emerald-dark: #034c38;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --cream-light: #faf7f2;
  --charcoal: #1a1a1a;
  --gray-700: #2d2d2d;
  --gray-500: #6b6b6b;
  --gray-300: #b0b0b0;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(6, 95, 70, 0.08);
  --shadow-md: 0 8px 30px rgba(6, 95, 70, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 95, 70, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

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

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cream {
  background: var(--cream);
  color: var(--emerald);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--emerald);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(6, 95, 70, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
}

.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Header ───────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(245, 240, 232, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--emerald);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--emerald);
  transition: var(--transition);
}

.nav-list a:hover { color: var(--emerald); }
.nav-list a:hover::after { width: 100%; }

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

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape { position: absolute; }

.shape-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.04);
  top: -200px;
  right: -100px;
}

.shape-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.06);
  bottom: -80px;
  left: 10%;
}

.shape-rect-1 {
  width: 200px;
  height: 200px;
  background: rgba(245, 240, 232, 0.05);
  border-radius: var(--radius-xl);
  top: 20%;
  left: 5%;
  transform: rotate(15deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid rgba(245, 240, 232, 0.04);
  bottom: 15%;
  right: 30%;
  transform: rotate(-20deg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
}

.hero-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}

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

.image-accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.5;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream-light);
}

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

.about-image-stack {
  position: relative;
  height: 520px;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}

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

.about-img-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream-light);
  aspect-ratio: 4/3;
  width: 55%;
}

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

.about-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--emerald);
  color: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-badge .badge-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-badge .badge-text {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--gray-500); margin-bottom: 16px; }

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: var(--cream-dark);
  align-self: stretch;
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.menu-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--emerald);
}

.geo-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.geo-2 { width: 200px; height: 200px; bottom: -50px; left: 5%; }
.geo-3 {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-xl);
  top: 30%;
  left: -40px;
  transform: rotate(30deg);
  opacity: 0.08;
}

.section-header { margin-bottom: 48px; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: var(--gray-500);
  border: 2px solid var(--cream-dark);
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--emerald);
  border-color: var(--emerald);
}

.tab-btn.active {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--cream-light);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-item:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item-info { flex: 1; }

.menu-item-name {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 95, 70, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}

.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 480px;
}

.gallery-item--tall img { min-height: 480px; }

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.visit::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.04);
  top: -200px;
  right: -100px;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.visit-info .section-label { background: rgba(245, 240, 232, 0.15); color: var(--cream); }
.visit-info .section-title { color: var(--cream); }
.visit-info .lead { color: rgba(245, 240, 232, 0.7); }

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(245, 240, 232, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(245, 240, 232, 0.1);
  transition: var(--transition);
}

.visit-card:hover {
  background: rgba(245, 240, 232, 0.12);
  transform: translateX(4px);
}

.visit-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(245, 240, 232, 0.12);
  color: var(--cream);
}

.visit-card h4 {
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.visit-card p, .visit-card a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

.visit-card a:hover { color: var(--cream); text-decoration: underline; }

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-lg);
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--cream-light);
}

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

.contact-text .section-title { margin-bottom: 16px; }
.contact-text p { color: var(--gray-500); margin-bottom: 32px; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--emerald);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.contact-link:hover { color: var(--emerald-light); padding-left: 8px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(6, 95, 70, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(6, 95, 70, 0.08);
  border-radius: var(--radius);
  color: var(--emerald);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.footer-brand .logo-text { color: var(--cream); }
.footer-brand p {
  color: rgba(245, 240, 232, 0.5);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4,
.footer-hours h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0.5;
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--cream); padding-left: 4px; }

.footer-hours p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-bottom a {
  color: rgba(245, 240, 232, 0.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--cream); }

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
}

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

  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(6, 95, 70, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }

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

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

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

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

  .gallery-item--tall { grid-row: span 1; min-height: 280px; }
  .gallery-item--tall img { min-height: 280px; }
  .gallery-item--wide { grid-column: span 1; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 0 50px; }
  .hero-headline { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .menu-tabs { gap: 6px; }
  .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .about-image-stack { height: 300px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; }
}
