/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a2e2a;
  background: #faf8f4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.15; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f2922;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: #047857;
  color: #f0fdf4;
  border-color: #047857;
}
.btn-primary:hover { background: #035c43; border-color: #035c43; }
.btn-ghost {
  background: transparent;
  color: #f0fdf4;
  border-color: rgba(240,253,244,0.5);
}
.btn-ghost:hover { background: rgba(240,253,244,0.1); border-color: #f0fdf4; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-nav {
  background: #047857;
  color: #f0fdf4;
  border-color: #047857;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-nav:hover { background: #035c43; border-color: #035c43; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4,120,87,0.1);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-mark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  color: #0f2922;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #047857;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2e2a;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:not(.btn):hover { color: #047857; }
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #047857;
  transition: width 0.25s;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f2922;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #047857 0%, #065f46 30%, #0f2922 60%, #1a1a2e 100%);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(4,120,87,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6,95,70,0.3) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(26,26,46,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #f0fdf4;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(240,253,244,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;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240,253,244,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll svg { animation: bobble 2s ease-in-out infinite; }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-text p {
  color: #374151;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(4,120,87,0.15);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  color: #047857;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== MENU ===== */
.menu { background: #f0f7f4; }
.menu-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.menu-header .menu-intro { color: #374151; font-size: 1.05rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.menu-card {
  background: #faf8f4;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid rgba(4,120,87,0.1);
  transition: box-shadow 0.3s, transform 0.3s;
}
.menu-card:hover {
  box-shadow: 0 12px 40px rgba(4,120,87,0.1);
  transform: translateY(-4px);
}
.menu-card--accent {
  background: #0f2922;
  border-color: transparent;
}
.menu-card--accent .menu-card-title { color: #f0fdf4; }
.menu-card--accent .menu-item-name { color: #d1fae5; }
.menu-card--accent .menu-item-desc { color: rgba(209,250,229,0.6); }
.menu-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(4,120,87,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  margin-bottom: 20px;
}
.menu-card--accent .menu-card-icon { background: rgba(110,231,183,0.15); color: #6ee7b7; }
.menu-card-title {
  font-size: 1.4rem;
  color: #0f2922;
  margin-bottom: 24px;
}
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-item { display: flex; flex-direction: column; gap: 2px; }
.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a2e2a;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: #6b7280;
}
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

/* ===== SPACE ===== */
.space-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.space-header .space-intro { color: #374151; font-size: 1.05rem; }
.space-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-bottom: 60px;
}
.gallery-item { border-radius: 12px; overflow: hidden; }
.gallery-item--large { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.03); }
.space-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: #f0f7f4;
  border-radius: 10px;
}
.feature svg { color: #047857; flex-shrink: 0; margin-top: 2px; }
.feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2e2a;
  line-height: 1.5;
}

/* ===== VISIT ===== */
.visit { background: #0f2922; }
.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit .section-eyebrow { color: #6ee7b7; }
.visit .section-title { color: #f0fdf4; }
.visit-address {
  font-size: 1.1rem;
  color: rgba(240,253,244,0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}
.visit-address strong { color: #f0fdf4; font-family: 'DM Serif Display', Georgia, serif; font-size: 1.3rem; display: block; margin-bottom: 8px; }
.visit-details { display: flex; flex-direction: column; gap: 20px; }
.visit-detail { display: flex; gap: 16px; align-items: flex-start; }
.visit-detail svg { color: #6ee7b7; flex-shrink: 0; margin-top: 2px; }
.visit-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 0.95rem;
  color: rgba(240,253,244,0.85);
  line-height: 1.7;
}
.visit-detail-value:hover { color: #f0fdf4; }
.visit-map { }
.map-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(110,231,183,0.2);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.map-placeholder svg { color: #6ee7b7; }
.map-placeholder p { color: rgba(240,253,244,0.6); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text p { color: #374151; font-size: 1.05rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2e2a;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a2e2a;
  background: #faf8f4;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #047857;
  box-shadow: 0 0 0 3px rgba(4,120,87,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9ca3af; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a1f18;
  padding: 60px 0 0;
  color: rgba(240,253,244,0.6);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(110,231,183,0.1);
}
.footer-brand .logo-mark { color: #f0fdf4; font-size: 1.5rem; }
.footer-brand .logo-sub { color: #6ee7b7; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(240,253,244,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: #6ee7b7; }
.footer-hours { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; }
.footer-hours strong { color: #f0fdf4; margin-bottom: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(240,253,244,0.4);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.visible[data-reveal] {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .space-features { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #faf8f4;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
  .main-nav a { font-size: 1.1rem; }

  .hero-content { padding: 100px 24px 80px; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-height: 400px; }
  .about-image img { height: 100%; }
  .about-stats { gap: 24px; }

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

  .space-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .gallery-item--large { grid-row: auto; }
  .space-features { grid-template-columns: 1fr; }

  .visit-content { grid-template-columns: 1fr; gap: 40px; }
  .visit-map { order: -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

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

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
