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

:root {
  --emerald: #047857;
  --emerald-dark: #065f46;
  --emerald-light: #06b6d4;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --green: #10b981;
  --green-light: #34d399;
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #6b7280;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,232,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4,120,87,.08);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Russo One', sans-serif;
  font-size: 1.15rem;
  color: var(--emerald-dark);
  letter-spacing: .04em;
}

.logo-icon {
  color: var(--emerald);
}

.logo .dot {
  color: var(--green);
}

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

.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: .938rem;
  transition: background var(--transition), color var(--transition);
}

.nav a:not(.btn):hover {
  background: rgba(4,120,87,.08);
  color: var(--emerald-dark);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .938rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--emerald);
  color: var(--cream);
}

.btn-accent:hover {
  background: var(--emerald-dark);
  box-shadow: 0 8px 24px rgba(4,120,87,.3);
}

.btn-emerald {
  background: var(--emerald);
  color: var(--cream);
}

.btn-emerald:hover {
  background: var(--emerald-dark);
  box-shadow: 0 8px 24px rgba(4,120,87,.3);
}

.btn-cream {
  background: var(--cream);
  color: var(--emerald-dark);
  border: 2px solid var(--cream);
}

.btn-cream:hover {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 8px 24px rgba(4,120,87,.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.063rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── MENU TOGGLE ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--emerald-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}

.geo--1 {
  width: 600px;
  height: 600px;
  background: var(--emerald);
  top: -200px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

.geo--2 {
  width: 300px;
  height: 300px;
  background: var(--green);
  bottom: 15%;
  left: -80px;
  animation: float 6s ease-in-out infinite reverse;
}

.geo--3 {
  width: 150px;
  height: 150px;
  background: var(--emerald-light);
  top: 30%;
  left: 10%;
  animation: float 5s ease-in-out infinite;
}

.geo--4 {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  top: 20%;
  right: 25%;
  animation: float 7s ease-in-out infinite reverse;
}

.geo--5 {
  width: 200px;
  height: 200px;
  background: var(--emerald);
  bottom: 5%;
  right: 10%;
  opacity: .06;
  animation: float 9s ease-in-out infinite;
}

.geo--6 {
  width: 60px;
  height: 60px;
  background: var(--green);
  top: 50%;
  left: 45%;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--emerald), var(--green), var(--emerald-light));
}

.hero-card--img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(4,120,87,.15));
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,120,87,.08);
  color: var(--emerald);
  font-weight: 600;
  font-size: .813rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--emerald);
  display: block;
}

.hero-sub {
  font-size: 1.063rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── STATS ─── */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: -40px;
  padding: 0 0 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 4px solid var(--emerald);
}

.stat-card:nth-child(2) { border-left-color: var(--green); }
.stat-card:nth-child(3) { border-left-color: var(--emerald-light); }
.stat-card:nth-child(4) { border-left-color: var(--green-light); }

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

.stat-num {
  font-family: 'Russo One', sans-serif;
  font-size: 1.75rem;
  color: var(--emerald);
}

.stat-card:nth-child(2) .stat-num { color: var(--green); }
.stat-card:nth-child(3) .stat-num { color: var(--emerald-light); }
.stat-card:nth-child(4) .stat-num { color: var(--green-light); }

.stat-label {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-weight: 600;
  font-size: .813rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.063rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── MENU ─── */
.menu {
  background: var(--cream);
}

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/3.2;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--emerald);
  color: var(--cream);
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 50px;
}

.menu-card-body {
  padding: 24px 28px 28px;
}

.menu-card-body h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.menu-card-body p {
  font-size: .938rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
  background: var(--white);
}

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

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--emerald);
  border-radius: var(--radius);
  z-index: 0;
  opacity: .12;
}

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

.about-content .section-title {
  margin-bottom: 24px;
}

.about-content > p {
  font-size: 1.063rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.value-icon {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.value-item span {
  font-size: .938rem;
  color: var(--gray);
}

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

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

.highlight-block {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.highlight-block--green {
  background: var(--green);
  color: var(--white);
}

.highlight-block--cream {
  background: var(--cream-dark);
  color: var(--dark);
}

.highlight-block--emerald {
  background: var(--emerald);
  color: var(--cream);
}

.highlight-num {
  font-family: 'Russo One', sans-serif;
  font-size: 3rem;
  opacity: .2;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.highlight-block h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.highlight-block p {
  font-size: .938rem;
  line-height: 1.7;
  opacity: .88;
}

/* ─── CTA ─── */
.cta {
  background: var(--white);
  padding: 100px 0;
}

.cta-card {
  background: var(--emerald);
  border-radius: var(--radius);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.cta-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}

.cta-pattern svg {
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .section-tag {
  color: var(--green-light);
}

.cta-content .section-title {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.063rem;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cta-icon {
  color: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-info-item strong {
  display: block;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .7;
  margin-bottom: 2px;
}

.cta-info-item span,
.cta-info-item a {
  font-size: 1rem;
  color: var(--cream);
}

.cta-info-item a:hover {
  text-decoration: underline;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-left .section-tag {
  margin-bottom: 12px;
}

.contact-left .section-title {
  margin-bottom: 16px;
}

.contact-left > p {
  font-size: 1.063rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--dark);
}

.contact-detail svg {
  color: var(--emerald);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--emerald);
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--emerald-dark);
  text-decoration: underline;
}

/* ─── FORM ─── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(4,120,87,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(4,120,87,.08);
  border-radius: var(--radius-sm);
  color: var(--emerald-dark);
  font-size: .938rem;
}

.form-success svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,.1);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .938rem;
  opacity: .65;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .5;
  margin-bottom: 4px;
}

.footer-links a,
.footer-links span {
  font-size: .938rem;
  opacity: .7;
  transition: opacity var(--transition);
  line-height: 1.5;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--green-light);
}

.footer-links address {
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .875rem;
  opacity: .5;
}

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--emerald);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 80;
  transition: transform var(--transition), opacity var(--transition);
  cursor: pointer;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card--img {
    max-height: 400px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 40px;
  }

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 32px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 100;
    box-shadow: -8px 0 32px rgba(0,0,0,.1);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1.063rem;
  }

  .nav .btn-accent {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  .hero {
    padding: 96px 0 0;
    min-height: auto;
  }

  .hero-card {
    padding: 32px;
  }

  .hero-stats {
    margin-top: -24px;
    padding: 0 0 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }

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

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

  .cta-card {
    padding: 36px 24px;
  }

  .contact-form {
    padding: 28px;
  }

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

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

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

  .hero-card {
    padding: 24px;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .stat-num {
    font-size: 1.5rem;
  }
}
