*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-900: #1B5E20;
  --green-700: #2E7D32;
  --green-600: #388E3C;
  --green-500: #4CAF50;
  --green-100: #C8E6C9;
  --green-50: #E8F5E9;
  --cream: #F5F1EB;
  --cream-light: #FAF8F5;
  --cream-dark: #E8E2D8;
  --brown: #5D4037;
  --brown-light: #8D6E63;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(27,94,32,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(27,94,32,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(27,94,32,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(27,94,32,0.15), 0 8px 20px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background-color: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.25;
  color: var(--green-900);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

/* ─── Section Tags ─── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,94,32,0.06);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green-900);
}

.logo-light { color: var(--white); }

.logo-icon {
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-600);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav a:not(.btn):hover {
  color: var(--green-700);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-900);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--green-900);
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--green-600);
}

.mobile-nav-link.btn {
  margin-top: 8px;
}

/* ─── Hero ─── */
.hero {
  padding-top: 100px;
  background: var(--cream-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 540px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-50);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.hero-detail a {
  color: var(--green-700);
  font-weight: 600;
  transition: color var(--transition);
}

.hero-detail a:hover {
  color: var(--green-500);
}

.hero-detail svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-img-main {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-float {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-light);
}

.hero-img-float img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  background: var(--white);
  color: var(--green-700);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-badge svg {
  color: #FFC107;
}

/* Hero Wave */
.hero-wave {
  margin-top: auto;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ─── Highlights ─── */
.highlights {
  background: var(--cream);
  padding: 80px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27,94,32,0.04);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--green-900);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Menu ─── */
.menu {
  background: var(--cream-light);
  padding: 100px 0;
}

.menu-header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-header .section-subtitle {
  margin: 0 auto;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-cat-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  border: 2px solid var(--cream-dark);
  border-radius: 100px;
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-cat-btn:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

.menu-cat-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(27,94,32,0.04);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  height: 200px;
  overflow: hidden;
}

.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-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-900);
}

.menu-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.menu-note a {
  color: var(--green-700);
  font-weight: 700;
}

/* ─── About ─── */
.about {
  background: var(--cream);
  padding: 100px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  width: 75%;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: -20px;
  right: 30%;
  width: 80px;
  height: 80px;
  background: var(--green-100);
  border-radius: 50%;
  z-index: -1;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-signature {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature-line {
  width: 48px;
  height: 3px;
  background: var(--green-500);
  border-radius: 2px;
}

.about-signature span {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ─── Visit ─── */
.visit {
  background: var(--cream-light);
  padding: 100px 0;
}

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-info-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.visit-info-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin-bottom: 4px;
}

.visit-info-item span,
.visit-info-item a {
  font-size: 1rem;
  color: var(--text-mid);
}

.visit-info-item a {
  color: var(--green-700);
  font-weight: 600;
  transition: color var(--transition);
}

.visit-info-item a:hover {
  color: var(--green-500);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* ─── Testimonials ─── */
.testimonials {
  background: var(--green-900);
  padding: 100px 0;
  color: var(--white);
}

.testimonials .section-tag {
  background: rgba(255,255,255,0.12);
  color: var(--green-100);
}

.testimonials .section-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.testimonial-quote {
  color: var(--green-100);
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-100);
  letter-spacing: 0.04em;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--cream);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
.footer {
  background: #0F3D12;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-info h4,
.footer-social h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-100);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-info p,
.footer-social p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-info a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-info a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .hero-visual {
    height: 520px;
  }

  .hero-img-main {
    height: 440px;
  }

  .about-layout {
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 40px;
  }

  .hero-visual {
    height: 400px;
    order: -1;
  }

  .hero-img-main {
    height: 320px;
  }

  .hero-img-float {
    left: -16px;
    width: 160px;
  }

  .hero-img-float img {
    height: 120px;
  }

  .hero-badge {
    top: 12px;
    right: -8px;
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .highlight-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 400px;
  }

  .about-img-main {
    height: 320px;
  }

  .about-img-secondary {
    width: 60%;
    height: 200px;
  }

  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-container {
    padding: 32px 16px 0;
  }

  .hero-visual {
    height: 320px;
  }

  .hero-img-main {
    height: 260px;
  }

  .menu-categories {
    gap: 8px;
  }

  .menu-cat-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
