/* ── 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;
  background: #faf8f5;
  color: #1a2e23;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: #1a2e23; }
.section-header p { font-size: 1.1rem; color: #5a7060; max-width: 560px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #059669;
  color: #fff;
  box-shadow: 0 4px 16px rgba(5,150,105,0.3);
}
.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,150,105,0.4);
}
.btn-secondary {
  background: transparent;
  color: #1a2e23;
  border: 2px solid #1a2e23;
}
.btn-secondary:hover {
  background: #1a2e23;
  color: #fff;
  transform: translateY(-2px);
}
.btn-nav {
  background: #059669;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
}
.btn-nav:hover { background: #047857; }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,46,35,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(26,46,35,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a2e23;
}
.logo-icon { color: #059669; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn-nav) {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d5a47;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn-nav):hover { color: #059669; }
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #059669;
  transition: width 0.25s ease;
}
.nav-links a:not(.btn-nav):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2e23;
  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 {
  padding: 120px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a2e23;
}
.hero-text h1 .accent { color: #059669; }
.hero-desc {
  font-size: 1.1rem;
  color: #5a7060;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 500px;
}
.hero-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,35,0.12);
}
.hero-card--main {
  width: 100%;
  aspect-ratio: 5/4;
}
.hero-card--main img { width: 100%; height: 100%; object-fit: cover; }

/* Stat cards */
.stat-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(26,46,35,0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 3s ease-in-out infinite;
}
.stat-card--1 { top: -20px; left: -40px; animation-delay: 0s; }
.stat-card--2 { bottom: 60px; right: -30px; animation-delay: 1s; }
.stat-card--3 { bottom: -20px; left: 20px; animation-delay: 2s; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #059669;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a7060;
  line-height: 1.4;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── About ── */
.about { padding: 100px 24px; background: #f0f7f2; }
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; min-height: 500px; }
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,46,35,0.1);
}
.about-img--1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  aspect-ratio: 4/5;
}
.about-img--2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  aspect-ratio: 7/6;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 24px;
  color: #1a2e23;
}
.about-content p {
  color: #5a7060;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2e23;
}
.about-feature svg { color: #059669; flex-shrink: 0; }

/* ── Menu ── */
.menu { padding: 100px 24px; }
.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.menu-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,46,35,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,46,35,0.12);
}
.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.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.05); }
.menu-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #059669;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}
.menu-card-body { padding: 28px; }
.menu-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #1a2e23;
}
.menu-card-body p {
  color: #5a7060;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Gallery ── */
.gallery { padding: 100px 24px; background: #f0f7f2; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
}
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--1 { grid-column: 1 / 7; grid-row: 1 / 2; }
.gallery-item--2 { grid-column: 7 / 10; grid-row: 1 / 2; }
.gallery-item--3 { grid-column: 10 / 13; grid-row: 1 / 2; }
.gallery-item--4 { grid-column: 1 / 5; grid-row: 2 / 3; }
.gallery-item--5 { grid-column: 5 / 13; grid-row: 2 / 3; }

/* ── Testimonials ── */
.testimonials { padding: 100px 24px; }
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(26,46,35,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,46,35,0.1);
}
.testimonial-quote {
  color: #d1fae5;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #3d5a47;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #059669;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-author span {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2e23;
}

/* ── Visit ── */
.visit { padding: 100px 24px; background: #1a2e23; color: #fff; }
.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-info .section-tag { color: #6ee7b7; }
.visit-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: #fff;
}
.visit-desc {
  color: #8fa898;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.visit-details { display: flex; flex-direction: column; gap: 24px; }
.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.visit-detail svg { color: #059669; flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  color: #c8dcc8;
  font-size: 1rem;
  line-height: 1.6;
}
.visit-detail a:hover { color: #fff; }

/* Form */
.visit-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(8px);
}
.visit-form h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #fff;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #6b8a72; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #059669;
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(5,150,105,0.2);
  border: 1px solid rgba(5,150,105,0.4);
  border-radius: 10px;
  color: #6ee7b7;
  font-size: 0.9rem;
  text-align: center;
}

/* ── Footer ── */
.footer { padding: 60px 24px 32px; background: #142219; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: #6b8a72; font-size: 0.95rem; margin-top: 12px; line-height: 1.7; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #8fa898;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact p { color: #8fa898; font-size: 0.9rem; }
.footer-contact a { color: #8fa898; font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { color: #4a6b54; font-size: 0.8rem; }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 400px; order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 360px; }
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(26,46,35,0.08);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 12px 32px rgba(26,46,35,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-visual { min-height: 320px; }
  .stat-card--1 { left: 0; top: -10px; }
  .stat-card--2 { right: 0; }
  .stat-card--3 { left: 0; bottom: -10px; }
  .stat-number { font-size: 2rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item--1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item--2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item--3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item--4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item--5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .visit-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 280px; }
  .stat-card { padding: 14px 18px; }
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 0.7rem; }
}

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