/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: #1a1a1a;
  background: #fefdf8;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.text-emerald { color: #065f46; }

/* ── Section shared ── */
.section { padding: 6rem 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f2a1f;
  margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #065f46;
  color: #fff;
  border-color: #065f46;
}
.btn-primary:hover { background: #047857; border-color: #047857; box-shadow: 0 8px 24px rgba(6,95,70,.3); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ── */
header.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: .75rem 0;
  background: rgba(254,253,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(6,95,70,.08);
  transition: padding .3s, background .3s;
}
header.nav-scrolled .nav-logo-text { color: #065f46; }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: #fff;
  transition: color .3s;
}
.nav-logo-icon { color: #fff; transition: color .3s; }
.nav-logo-text { transition: color .3s; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-weight: 600;
  font-size: .9rem;
}
.nav-links a {
  padding: .5rem 1rem;
  border-radius: 100px;
  color: rgba(255,255,255,.85);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-cta {
  background: #fff !important;
  color: #065f46 !important;
  margin-left: .5rem;
}
.nav-cta:hover { background: #d1fae5 !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #065f46;
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 32px rgba(0,0,0,.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: rgba(255,255,255,.85);
    padding: .85rem 1rem;
    border-radius: .75rem;
    font-size: 1rem;
  }
  .nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: .5rem; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #022c22 0%, #065f46 35%, #047857 60%, #059669 100%);
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(6,95,70,.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(5,150,105,.3) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #d1fae5;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}
.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-accent {
  color: #6ee7b7;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: #fff;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-scroll-dot {
  width: 4px;
  height: 16px;
  background: rgba(255,255,255,.4);
  border-radius: 4px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50% { transform: scaleY(1.6); opacity: 1; }
}

/* ── About ── */
.about { background: #fefdf8; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6,95,70,.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 55%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(6,95,70,.2);
  border: 4px solid #fefdf8;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  color: #a7f3d0;
  opacity: .6;
}
.about-content .section-label { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.5rem; }
.about-content > p {
  color: #444;
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #d1fae5;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
}
.about-feature strong { display: block; color: #0f2a1f; font-size: .95rem; }
.about-feature-desc { font-size: .88rem; color: #666; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 480px; }
}

/* ── Menu ── */
.menu {
  background: linear-gradient(180deg, #ecfdf5 0%, #fefdf8 100%);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(6,95,70,.06);
  border: 1px solid rgba(6,95,70,.06);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(6,95,70,.12); }
.menu-card-featured {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  border-color: transparent;
}
.menu-card-featured .menu-card-title,
.menu-card-featured .menu-item-name { color: #fff; }
.menu-card-featured .menu-item-desc { color: rgba(255,255,255,.7); }
.menu-card-featured .menu-card-icon { color: #6ee7b7; }
.menu-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(6,95,70,.08);
}
.menu-card-featured .menu-card-header { border-color: rgba(255,255,255,.15); }
.menu-card-icon {
  color: #065f46;
  flex-shrink: 0;
}
.menu-card-title {
  font-size: 1.2rem;
  color: #0f2a1f;
}
.menu-list { display: flex; flex-direction: column; gap: .75rem; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}
.menu-item-name {
  font-weight: 700;
  font-size: .92rem;
  color: #1a1a1a;
}
.menu-item-desc {
  font-size: .82rem;
  color: #777;
  text-align: right;
  flex-shrink: 0;
}
.menu-note {
  color: #555;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── Gallery ── */
.gallery { background: #fefdf8; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,95,70,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
}
.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 6; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4) { grid-column: span 4; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

/* ── Visit ── */
.visit { background: #ecfdf5; }
.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(6,95,70,.1);
}
.visit-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.visit-desc { color: #555; font-size: 1.02rem; }
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.visit-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #d1fae5;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #065f46;
}
.visit-detail dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: #888; font-weight: 700; }
.visit-detail dd { color: #1a1a1a; font-weight: 600; line-height: 1.6; }
.visit-detail a { color: #065f46; transition: color .2s; }
.visit-detail a:hover { color: #047857; text-decoration: underline; }
.visit-map {
  min-height: 400px;
  background: #e5e7eb;
}

@media (max-width: 900px) {
  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
}

/* ── Contact ── */
.contact { background: #fefdf8; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(6,95,70,.08);
}
.contact-text {
  background: linear-gradient(135deg, #065f46 0%, #047857 100%);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-text .section-label { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #d1fae5; }
.contact-text .section-title { color: #fff; }
.contact-text .section-title .text-emerald { color: #6ee7b7; }
.contact-desc { color: rgba(255,255,255,.8); font-size: 1.02rem; }
.contact-form {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .8rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: .75rem;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  color: #1a1a1a;
  background: #fefdf8;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #065f46;
  box-shadow: 0 0 0 3px rgba(6,95,70,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: .75rem;
  color: #065f46;
  font-weight: 700;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .contact-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  background: #022c22;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-logo svg { color: #6ee7b7; }
.footer-tagline { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: #6ee7b7; }
.footer-hours-day { display: block; font-weight: 600; color: rgba(255,255,255,.9); }
.footer-hours-time { display: block; font-size: .85rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
