/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a2e23;
  background: #faf8f4;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ───────────────────────────────────────── */
:root {
  --green-900: #1a2e23;
  --green-700: #2D5A3D;
  --green-600: #3a7250;
  --green-500: #4A8B5C;
  --green-400: #6aab7e;
  --green-100: #d4e8d9;
  --green-50:  #eaf5e9;
  --cream:     #faf8f4;
  --cream-dark:#f0ebe0;
  --sand:      #e8e0d0;
  --warm-gray: #6b6560;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26,46,35,0.06);
  --shadow-md: 0 8px 30px rgba(26,46,35,0.10);
  --shadow-lg: 0 16px 50px rgba(26,46,35,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-900);
}

/* ── Layout ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--green-50);
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,90,61,0.3);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,90,61,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--green-700);
  border: 1.5px solid var(--green-400);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,90,61,0.08);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--green-700);
}
.logo-accent {
  color: var(--green-500);
}
.logo-icon {
  color: var(--green-600);
}

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-900);
  transition: var(--transition);
}
.nav-list a:hover {
  background: var(--green-50);
  color: var(--green-700);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  position: relative;
  align-items: center;
  justify-content: center;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: var(--cream);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, var(--green-700) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-600);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--green-900);
}
.hero-headline em {
  font-style: italic;
  color: var(--green-500);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 500px;
}
.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card-main {
  width: 100%;
  aspect-ratio: 52/42;
}
.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.float-card--1 {
  bottom: 60px;
  left: -30px;
  animation-delay: 0s;
}
.float-card--2 {
  top: 40px;
  right: -20px;
  animation-delay: 2s;
}
.float-card--3 {
  bottom: 10px;
  right: 30px;
  animation-delay: 4s;
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--green-900);
  line-height: 1.2;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.4;
}
.stat-sub {
  color: var(--green-500);
  font-weight: 500;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  color: var(--green-50);
}

/* ── Menu ─────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,90,61,0.06);
  transition: var(--transition);
}
.menu-category:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--green-100);
}
.menu-cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-cat-title {
  font-size: 1.2rem;
  color: var(--green-900);
}
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-900);
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-align: right;
  flex-shrink: 0;
}
.menu-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--warm-gray);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 14px 20px;
}

/* ── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  min-height: 560px;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/6;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green-700);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
}
.accent-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  line-height: 1;
}
.accent-label {
  font-size: 0.82rem;
  opacity: 0.8;
  line-height: 1.4;
}
.about-content { max-width: 500px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
  color: var(--warm-gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-900);
}
.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.gallery-item--tall {
  grid-column: span 5;
  aspect-ratio: 400/560;
}
.gallery-item--wide {
  grid-column: span 7;
  aspect-ratio: 800/260;
}
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  grid-column: span 4;
  aspect-ratio: 400/260;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Visit ────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { max-width: 520px; }
.visit-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  color: var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-500);
  margin-bottom: 4px;
}
.detail-value {
  font-size: 0.95rem;
  color: var(--green-900);
  line-height: 1.6;
}
.detail-value a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--green-400);
  text-underline-offset: 3px;
  transition: var(--transition);
}
.detail-value a:hover {
  color: var(--green-500);
  text-decoration-color: var(--green-500);
}
.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 440px;
}

/* ── Contact ──────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-content { max-width: 460px; }
.contact-content .section-title { margin-bottom: 16px; }
.contact-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.75;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45,90,61,0.06);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--green-900);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--green-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,139,92,0.12);
}
.form-input::placeholder { color: #b0a898; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6560' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--green-700);
}
.form-success strong { color: var(--green-900); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand .logo-accent { color: var(--green-400); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: normal;
}
.footer-address a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 3px;
  transition: var(--transition);
}
.footer-address a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.6); }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 16px;
}
.footer-hours span:first-child { color: rgba(255,255,255,0.5); }
.footer-hours span:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-visual { min-height: 420px; }
  .float-card--1 { left: -10px; }
  .float-card--2 { right: -10px; }
  .about-images { min-height: 440px; }
  .about-img-accent { width: 140px; right: -16px; bottom: -16px; }
  .about-accent-box { left: -10px; top: -10px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(45,90,61,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-list a {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  /* Hero */
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    min-height: 360px;
    order: -1;
  }
  .float-card--1 { bottom: 20px; left: 10px; }
  .float-card--2 { top: 10px; right: 10px; }
  .float-card--3 { bottom: -10px; right: 60px; }

  /* Menu */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category { padding: 28px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images { min-height: 380px; }
  .about-img-accent { width: 120px; right: -8px; bottom: -8px; }
  .about-accent-box { left: -8px; top: -8px; padding: 14px 18px; }
  .about-features { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall { grid-column: span 2; aspect-ratio: 400/360; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 800/300; }
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) { grid-column: span 1; aspect-ratio: 400/260; }

  /* Visit */
  .visit-grid { grid-template-columns: 1fr; }
  .visit-info { max-width: 100%; }
  .visit-map { min-height: 300px; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contact-content { max-width: 100%; }
  .contact-form { padding: 28px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-card { padding: 14px 16px; }
  .stat-icon { width: 36px; height: 36px; }
  .stat-number { font-size: 1.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
