/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --emerald-900: #065F46;
  --emerald-700: #047857;
  --emerald-500: #10B981;
  --emerald-100: #D1FAE5;
  --emerald-50:  #ECFDF5;
  --cream:       #FDF2E9;
  --cream-light: #FEF9F3;
  --cream-dark:  #F5E6D3;
  --amber:       #D97706;
  --amber-light: #FCD34D;
  --red:         #DC2626;
  --text-dark:   #1C1917;
  --text-mid:    #44403C;
  --text-light:  #78716C;
  --white:       #FFFFFF;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --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: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 242, 233, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(253, 242, 233, 0.95);
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--emerald-900);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

/* Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--emerald-50);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--emerald-900);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--emerald-900);
  left: 0;
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(6, 95, 70, 0.88) 0%,
    rgba(6, 95, 70, 0.70) 50%,
    rgba(6, 95, 70, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 0 80px;
  margin-left: 8%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 211, 77, 0.15);
  border: 1px solid rgba(253, 211, 77, 0.4);
  color: var(--amber-light);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-accent {
  color: var(--amber-light);
  display: block;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(253, 242, 233, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(253, 242, 233, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  border-color: var(--emerald-700);
}

.btn-primary:hover {
  background: var(--emerald-900);
  border-color: var(--emerald-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(253, 242, 233, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--emerald-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--white);
  padding: 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 32px 28px;
  border-right: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: var(--emerald-50);
}

.highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
  background: var(--emerald-100);
  transform: scale(1.05);
}

.highlight-item strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--emerald-900);
  margin-bottom: 2px;
}

.highlight-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: var(--emerald-100);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

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

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}

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

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

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.menu-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.menu-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald-700);
  background: var(--emerald-50);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--emerald-100);
}

.menu-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.menu-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 600;
  padding: 20px;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
  border: 1px dashed var(--emerald-100);
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

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

.about-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
}

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

.about-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--emerald-700);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

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

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

.visit-info .section-title {
  margin-bottom: 16px;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

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

.visit-detail dt {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-50);
  border-radius: var(--radius-md);
}

.visit-detail dd {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}

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

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

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-dark);
}

.map-placeholder-inner {
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--cream) 100%);
  padding: 60px 40px;
  text-align: center;
}

.map-placeholder-inner svg {
  margin: 0 auto 16px;
  opacity: 0.7;
}

.map-placeholder p {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--emerald-900);
  margin-bottom: 16px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--emerald-700);
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.map-link:hover {
  background: var(--emerald-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--emerald-900);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253, 211, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .section-tag {
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald-500);
}

.contact-text .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 1.05rem;
  color: rgba(253, 242, 233, 0.7);
  line-height: 1.7;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  background: var(--cream-light);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

.btn-submit {
  align-self: flex-start;
  background: var(--emerald-700);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--emerald-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--emerald-900);
}

.form-success strong {
  font-family: 'Fredoka', sans-serif;
}

/* ===== FOOTER ===== */
.footer {
  background: #042e23;
  color: var(--cream);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(253, 242, 233, 0.1);
}

.footer-brand p {
  color: rgba(253, 242, 233, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 16px;
}

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

.footer-links a {
  color: rgba(253, 242, 233, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
  padding-left: 4px;
}

.footer-contact address {
  color: rgba(253, 242, 233, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.footer-contact a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(253, 242, 233, 0.4);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlights-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .highlight-item:nth-child(odd) {
    border-right: 1px solid var(--cream-dark);
  }

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

  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary {
    right: 0;
    width: 160px;
    height: 160px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

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

  .nav-link {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
  }

  .nav-link:hover {
    background: var(--emerald-50);
  }

  .hero-content {
    margin-left: 0;
    padding: 120px 24px 100px;
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .highlight-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-img-secondary {
    width: 130px;
    height: 130px;
    bottom: -20px;
    right: -10px;
  }

  .about-stats {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

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

  .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-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .about-img-secondary {
    display: none;
  }

  .about-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .stat {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .stat strong {
    font-size: 1.3rem;
  }
}
