/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f7f4ee;
  color: #1a2e23;
  line-height: 1.6;
  -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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Libre Baskerville', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2e23;
  margin-bottom: 20px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.btn-primary {
  background-color: #1a3c2a;
  color: #f5f0e8;
  border: 2px solid #1a3c2a;
}
.btn-primary:hover {
  background-color: #2d6a4f;
  border-color: #2d6a4f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 60, 42, 0.25);
}
.btn-outline {
  background-color: transparent;
  color: #1a3c2a;
  border: 2px solid #1a3c2a;
}
.btn-outline:hover {
  background-color: #1a3c2a;
  color: #f5f0e8;
  transform: translateY(-2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 60, 42, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(26, 60, 42, 0.1); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a3c2a;
}
.nav-logo-text { letter-spacing: -0.01em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d4a3a;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.nav-links a:hover { background: rgba(26, 60, 42, 0.06); color: #1a3c2a; }
.nav-cta {
  background: #1a3c2a !important;
  color: #f5f0e8 !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #2d6a4f !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a3c2a;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #2d6a4f;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: #1a2e23;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: #2d6a4f;
  font-style: italic;
}
.hero-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3d5a48;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a3c2a;
}
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5a7d68;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 60, 42, 0.15);
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 700px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 60, 42, 0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.2);
  border: 4px solid #f7f4ee;
}
.hero-img-float img { width: 100%; height: 240px; object-fit: cover; }
.hero-img-float-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: rgba(26, 60, 42, 0.88);
  color: #f5f0e8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-pattern {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  opacity: 0.1;
  background-image: radial-gradient(circle, #1a3c2a 1px, transparent 1px);
  background-size: 12px 12px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a7d68;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
  padding: 120px 24px;
  background: #1a3c2a;
  color: #f5f0e8;
}
.about-grid .container { max-width: 1200px; margin: 0 auto; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-1 {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}
.about-img-1 img { width: 100%; height: 620px; object-fit: cover; }
.about-img-2 {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  border: 4px solid #1a3c2a;
}
.about-img-2 img { width: 100%; height: 300px; object-fit: cover; }
.about-img-2-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26, 60, 42, 0.9));
}
.about-year {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #95d5b3;
}
.about-year-num {
  display: block;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5f0e8;
}
.about-text .section-eyebrow { color: #95d5b3; }
.about-text .section-title { color: #f5f0e8; }
.about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #b7e4c7;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #a8c4b6;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #d8f3dc;
}
.about-value svg { color: #95d5b3; flex-shrink: 0; }

/* ── Menu ── */
.menu {
  padding: 120px 24px;
  background: #f7f4ee;
}
.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.menu-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d5a48;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-category {
  background: #fff;
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(26, 60, 42, 0.06);
  border: 1px solid rgba(26, 60, 42, 0.06);
  transition: all 0.3s ease;
}
.menu-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 60, 42, 0.12);
}
.menu-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3c2a;
  margin-bottom: 20px;
}
.menu-cat-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #1a2e23;
}
.menu-cat-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5a7d68;
  margin-bottom: 24px;
}
.menu-list { display: flex; flex-direction: column; gap: 10px; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #2d4a3a;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 60, 42, 0.06);
}
.menu-list li:last-child { border-bottom: none; }
.menu-list li span:last-child {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d6a4f;
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: 4px;
}
.menu-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9rem;
  color: #5a7d68;
  font-style: italic;
}

/* ── Gallery ── */
.gallery {
  padding: 100px 24px 120px;
  background: #f0ede6;
}
.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(26, 60, 42, 0.75));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #f5f0e8;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.gallery-item--wide { grid-column: span 7; height: 420px; }
.gallery-item:nth-child(2) { grid-column: span 5; height: 420px; }
.gallery-item:nth-child(3) { grid-column: span 5; height: 420px; }
.gallery-item:nth-child(4) { grid-column: span 4; height: 420px; }
.gallery-item:nth-child(5) { grid-column: span 4; height: 420px; }

/* ── Visit ── */
.visit {
  padding: 120px 24px;
  background: #f7f4ee;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.visit-info .section-eyebrow { color: #2d6a4f; }
.visit-info .section-title { color: #1a2e23; margin-bottom: 16px; }
.visit-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d5a48;
  margin-bottom: 40px;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail svg { color: #2d6a4f; 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: #5a7d68;
  margin-bottom: 4px;
}
.visit-detail-value {
  display: block;
  font-size: 0.95rem;
  color: #1a2e23;
  line-height: 1.6;
}
.visit-detail-value a {
  color: #1a3c2a;
  border-bottom: 1px solid rgba(26, 60, 42, 0.2);
  transition: border-color 0.2s ease;
}
.visit-detail-value a:hover { border-color: #1a3c2a; }
.visit-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.visit-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.12);
  height: 500px;
  min-height: 400px;
}
.visit-map iframe { width: 100%; height: 100%; }

/* ── Footer ── */
.footer {
  background: #1a2e23;
  color: #a8c4b6;
  padding: 80px 24px 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #7fa88f;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #95d5b3;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: #7fa88f;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #d8f3dc; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #7fa88f;
}
.footer-contact a {
  color: #7fa88f;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: #d8f3dc; }
.footer-contact svg { color: #95d5b3; flex-shrink: 0; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(149, 213, 179, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: #5a7d68;
}
.footer-bottom a { color: #7fa88f; transition: color 0.2s ease; }
.footer-bottom a:hover { color: #d8f3dc; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-visual { height: 560px; }
  .about-layout { gap: 48px; }
  .gallery-item--wide { grid-column: span 8; }
  .gallery-item:nth-child(2) { grid-column: span 4; }
  .gallery-item:nth-child(3) { grid-column: span 4; }
  .gallery-item:nth-child(4) { grid-column: span 6; }
  .gallery-item:nth-child(5) { grid-column: span 6; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247, 244, 238, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(26, 60, 42, 0.08);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 32px rgba(26, 60, 42, 0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; order: -1; }
  .hero-img-float { left: -16px; bottom: -24px; width: 200px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-scroll-indicator { display: none; }

  .about { padding: 80px 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-img-1 img { height: 400px; }
  .about-img-2 { width: 180px; right: -16px; bottom: -24px; }
  .about-img-2 img { height: 220px; }

  .menu { padding: 80px 24px; }
  .menu-grid { grid-template-columns: 1fr; }

  .gallery { padding: 80px 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    height: 260px;
  }

  .visit { padding: 80px 24px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-map { height: 320px; min-height: 280px; }
  .visit-cta { flex-direction: column; }
  .visit-cta .btn { justify-content: center; }

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

@media (max-width: 480px) {
  html { font-size: 15px; }
  .hero { padding: 96px 20px 60px; }
  .hero-visual { height: 320px; }
  .hero-img-float { width: 160px; left: -8px; bottom: -16px; }
  .hero-img-float img { height: 180px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { width: 32px; height: 1px; }

  .about-img-1 img { height: 300px; }
  .about-img-2 { width: 140px; right: -8px; bottom: -16px; }
  .about-img-2 img { height: 170px; }

  .menu-category { padding: 28px 24px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    height: 240px;
  }
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
