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

/* ── Tokens ── */
:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-bright: #3d7a55;
  --green-light: #e8f5ec;
  --off-white: #f5f0e8;
  --cream: #faf7f2;
  --warm: #c9a86c;
  --warm-light: #f0e0c0;
  --text: #1a2e23;
  --text-muted: #5a6b60;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(26,58,42,0.08);
  --shadow-lg: 0 12px 48px rgba(26,58,42,0.12);
}

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

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.accent { font-style: italic; color: var(--green-bright); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--off-white);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--off-white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--off-white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,58,42,0.08);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--off-white);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--green-dark); }
.nav-logo-icon { color: var(--green-bright); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245,240,232,0.85);
  border-radius: 100px;
  transition: all 0.3s;
}
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--off-white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-links a:hover { color: var(--green-dark); background: var(--green-light); }
.nav-cta {
  background: var(--off-white) !important;
  color: var(--green-dark) !important;
  font-weight: 600 !important;
}
.nav.scrolled .nav-cta { background: var(--green-dark) !important; color: var(--off-white) !important; }
.nav-cta:hover { transform: scale(1.05); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: var(--green-dark); }
.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;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3f 40%, #3d7a55 70%, #529b6e 100%);
  padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.geo-1 { width: 600px; height: 600px; background: var(--warm); top: -200px; right: -100px; }
.geo-2 { width: 400px; height: 400px; background: var(--off-white); bottom: -100px; left: -100px; }
.geo-3 { width: 200px; height: 200px; background: var(--warm-light); top: 30%; left: 40%; }
.geo-4 { width: 120px; height: 120px; background: var(--off-white); top: 20%; right: 30%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.geo-5 { width: 80px; height: 80px; background: var(--warm); bottom: 20%; right: 20%; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--warm-light);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--warm-light);
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  font-weight: 500;
}
.trust-item svg { color: var(--warm-light); }
.hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 500/620;
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--off-white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: var(--shadow);
}
.badge-number { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.1em; }
.badge-text { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--green-dark); }

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; aspect-ratio: 520/400; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--off-white);
}
.about-img-float img { width: 100%; aspect-ratio: 340/260; object-fit: cover; }
.about-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--green-bright) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.3;
  z-index: -1;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(26,58,42,0.1);
}
.stat { flex: 1; text-align: center; }
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.stat-divider { width: 1px; background: rgba(26,58,42,0.1); align-self: stretch; }

/* ── Menu ── */
.menu {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.menu-bg-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--green-light);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-sub { margin: 0 auto; }
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cat-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 2px solid rgba(26,58,42,0.12);
  border-radius: 100px;
  transition: all 0.3s;
}
.cat-btn:hover, .cat-btn.active {
  background: var(--green-dark);
  color: var(--off-white);
  border-color: var(--green-dark);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.menu-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  cursor: pointer;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  overflow: hidden;
  aspect-ratio: 280/200;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: 20px 24px 24px; }
.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.menu-card-top h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--green-dark);
}
.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 100px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--off-white);
}
.gallery-item--large { grid-column: 1 / 3; grid-row: 1 / 2; }
.gallery-item--large img { aspect-ratio: 600/400; }
.gallery-item--tall { grid-column: 3; grid-row: 1 / 3; }
.gallery-item--tall img { aspect-ratio: 400/500; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) img { aspect-ratio: 400/300; }

/* ── Visit ── */
.visit {
  padding: 120px 0;
  background: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info .section-title { margin-bottom: 16px; }
.visit-info .section-sub { margin-bottom: 40px; }
.visit-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.visit-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}
.visit-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.visit-detail p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.visit-detail a {
  color: var(--green-bright);
  transition: color 0.3s;
}
.visit-detail a:hover { color: var(--green-dark); }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-placeholder {
  width: 100%;
  height: 100%;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a3a2a 0%, #2d5a3f 50%, #3d7a55 100%);
  position: relative;
  overflow: hidden;
}
.geo-c1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--warm);
  border-radius: 50%;
  opacity: 0.06;
  top: -200px;
  left: -150px;
}
.geo-c2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--off-white);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -100px;
  right: -50px;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-label { margin-bottom: 20px; }
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--off-white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text .section-title { margin-bottom: 20px; }
.contact-text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.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: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(26,58,42,0.1);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(61,122,85,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}
.form-success.show { display: flex; }
.success-icon { color: var(--green-bright); }
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--green-dark);
}
.form-success p { color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: var(--green-dark);
  color: var(--off-white);
  padding: 80px 0 0;
}
.footer-grid {
  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: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--off-white);
}
.footer-logo-icon { color: var(--green-bright); }
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
  max-width: 300px;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--off-white); }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.5;
}
.footer-contact a { color: rgba(245,240,232,0.6); transition: color 0.3s; }
.footer-contact a:hover { color: var(--off-white); }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(245,240,232,0.8) !important; font-size: 1rem; padding: 12px 16px; width: 100%; }
  .nav-links a:hover { background: rgba(255,255,255,0.1) !important; color: var(--off-white) !important; }
  .nav-cta { background: var(--off-white) !important; color: var(--green-dark) !important; text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-trust { flex-direction: column; gap: 12px; align-items: center; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: 1 / 3; }
  .gallery-item--tall { grid-column: 1; grid-row: auto; }
  .gallery-item--tall img,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) img { aspect-ratio: 400/300; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-bg-block { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

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