/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #FAF8F5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.2; }
.label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1B4332;
  margin-bottom: 16px;
}
.label.center { text-align: center; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1B4332;
  margin-bottom: 24px;
}
.section-title.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn-primary {
  background: #1B4332;
  color: #FAF8F5;
}
.btn-primary:hover { background: #2D6A4F; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,67,50,0.2); }
.btn-ghost {
  background: transparent;
  color: #1B4332;
  border: 1px solid rgba(27,67,50,0.3);
}
.btn-ghost:hover { border-color: #1B4332; background: rgba(27,67,50,0.05); }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(27,67,50,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1B4332;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1B4332;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1B4332;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(27,67,50,0.3);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #1B4332; color: #FAF8F5; border-color: #1B4332; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1B4332;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #B7E4C7 0%, #74C69D 25%, #40916C 50%, #1B4332 80%, #081C15 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.7);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #FAF8F5;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-em { font-style: italic; font-weight: 300; opacity: 0.85; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(250,248,245,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-primary { background: #FAF8F5; color: #1B4332; }
.hero-actions .btn-primary:hover { background: #fff; }
.hero-actions .btn-ghost { color: #FAF8F5; border-color: rgba(250,248,245,0.4); }
.hero-actions .btn-ghost:hover { background: rgba(250,248,245,0.1); border-color: rgba(250,248,245,0.7); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,248,245,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Sections ── */
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid rgba(27,67,50,0.07); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.about-text p {
  color: #4a4a4a;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(27,67,50,0.1);
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1B4332;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27,67,50,0.15);
}

/* ── Menu ── */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.menu-card {
  border-radius: 8px;
  overflow: hidden;
  background: #FAF8F5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(27,67,50,0.1); }
.menu-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.menu-card h3 {
  font-size: 1.5rem;
  color: #1B4332;
  padding: 28px 28px 0;
}
.menu-card p {
  font-size: 0.9rem;
  color: #555;
  padding: 12px 28px 32px;
  line-height: 1.7;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── Visit ── */
.visit { background: #fff; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.visit-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; color: #1B4332; }
.visit-detail strong {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #1B4332;
  margin-bottom: 4px;
}
.visit-detail span, .visit-detail a {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.visit-detail a:hover { color: #1B4332; }
.visit-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 4px 24px rgba(27,67,50,0.08);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1B4332;
  font-weight: 400;
}
.form-group input, .form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(27,67,50,0.2);
  background: transparent;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #1B4332; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-success {
  text-align: center;
  padding: 60px 20px;
}
.form-success svg { margin: 0 auto 20px; }
.form-success h3 {
  font-size: 1.8rem;
  color: #1B4332;
  margin-bottom: 12px;
}
.form-success p { color: #666; font-size: 0.9rem; }

.contact-info h3 {
  font-size: 1.4rem;
  color: #1B4332;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #555;
  font-size: 0.9rem;
}
.contact-item svg { color: #1B4332; flex-shrink: 0; }
.contact-item a { color: #555; transition: color 0.3s; }
.contact-item a:hover { color: #1B4332; }
.contact-divider {
  height: 1px;
  background: rgba(27,67,50,0.1);
  margin: 32px 0;
}
.contact-note {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
}

/* ── Footer ── */
.footer {
  background: #1B4332;
  color: rgba(250,248,245,0.7);
  padding: 80px 0 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.7;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-links a:hover { color: #FAF8F5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .menu-grid { gap: 24px; }
  .contact-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #FAF8F5;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 101; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-height: 400px; }
  .about-image img { height: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 240px; }
}
