/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #FDF6E3;
  color: #1A1A1A;
  line-height: 1.6;
  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 24px; }

/* ===== FONTS ===== */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 227, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 74, 58, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(13, 74, 58, 0.08); }
.header-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #0D4A3A;
}
.logo-text { font-size: 1.15rem; }
.logo-light .logo-text { color: #FDF6E3; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A1A;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #0D4A3A;
  transition: width 0.3s ease;
}
.main-nav a:hover { color: #0D4A3A; }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  background: #0D4A3A;
  color: #FDF6E3 !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #0A3D2F; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-bar {
  width: 24px; height: 2px;
  background: #0D4A3A;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 74, 58, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  background: #FDF6E3;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.geo { position: absolute; }
.geo-circle-1 {
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(13, 74, 58, 0.04);
  top: -100px; left: -150px;
}
.geo-circle-2 {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(13, 74, 58, 0.06);
  bottom: 15%; right: 48%;
}
.geo-square-1 {
  width: 120px; height: 120px;
  background: #0D4A3A;
  top: 18%; left: 45%;
  transform: rotate(25deg);
  opacity: 0.06;
}
.geo-square-2 {
  width: 60px; height: 60px;
  background: #0D4A3A;
  bottom: 25%; left: 10%;
  transform: rotate(45deg);
  opacity: 0.08;
}
.geo-triangle {
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid rgba(13, 74, 58, 0.05);
  top: 35%; left: 5%;
  transform: rotate(-15deg);
}
.geo-dots {
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, #0D4A3A 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.15;
  bottom: 20%; right: 10%;
}
.hero-content {
  padding: 60px 60px 60px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 74, 58, 0.08);
  border: 1px solid rgba(13, 74, 58, 0.15);
  color: #0D4A3A;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #0D4A3A;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #3D3D3D;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-col {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.hero-img-wrap {
  height: 100%;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 40px;
}
.hero-floating-card {
  position: absolute;
  bottom: 60px; left: -40px;
  background: #0D4A3A;
  color: #FDF6E3;
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(13, 74, 58, 0.3);
  z-index: 3;
}
.fc-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.fc-value { display: block; font-family: 'DM Serif Display', serif; font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: #0D4A3A;
  color: #FDF6E3;
}
.btn-primary:hover { background: #0A3D2F; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13, 74, 58, 0.25); }
.btn-secondary {
  background: transparent;
  color: #0D4A3A;
  border: 2px solid #0D4A3A;
}
.btn-secondary:hover { background: rgba(13, 74, 58, 0.06); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: #0D4A3A;
  padding: 0;
}
.trust-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 1000px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FDF6E3;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 20px 24px;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(253, 246, 227, 0.2);
}

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D4A3A;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 2px;
  background: #0D4A3A;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #0D4A3A;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 520px;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: #FDF6E3;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 74, 58, 0.12);
}
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px; right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 74, 58, 0.18);
  border: 6px solid #FDF6E3;
}
.about-img-float img { width: 100%; height: 380px; object-fit: cover; }
.about-accent {
  position: absolute;
  top: -30px; right: 40px;
  width: 120px; height: 120px;
}
.accent-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #0D4A3A;
  opacity: 0.1;
}
.accent-dots {
  position: absolute;
  top: 40px; left: 30px;
  width: 60px; height: 60px;
  background-image: radial-gradient(circle, #0D4A3A 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.2;
}
.about-content { padding: 20px 0; }
.about-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A1A1A;
}
.af-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.af-icon.emerald { background: #0D4A3A; color: #FDF6E3; }
.af-icon.cream { background: rgba(13, 74, 58, 0.1); color: #0D4A3A; }

/* ===== MENU ===== */
.menu {
  padding: 120px 0;
  background: #0D4A3A;
  position: relative;
  overflow: hidden;
}
.menu-bg-shape-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(253, 246, 227, 0.03);
  top: -200px; right: -200px;
}
.menu-bg-shape-2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(253, 246, 227, 0.04);
  bottom: -100px; left: -80px;
}
.menu .section-tag { color: #FDF6E3; }
.menu .section-tag::before { background: #FDF6E3; }
.menu .section-title { color: #FDF6E3; }
.menu .section-subtitle { color: rgba(253, 246, 227, 0.7); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.menu-card {
  background: rgba(253, 246, 227, 0.06);
  border: 1px solid rgba(253, 246, 227, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.menu-card--featured { grid-column: span 2; }
.mc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.menu-card--featured .mc-img { height: 300px; }
.mc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .mc-img img { transform: scale(1.05); }
.mc-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #FDF6E3;
  color: #0D4A3A;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.mc-body { padding: 28px; }
.mc-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: #FDF6E3;
  margin-bottom: 10px;
}
.mc-body p {
  font-size: 0.95rem;
  color: rgba(253, 246, 227, 0.65);
  line-height: 1.7;
}
.menu-cta { text-align: center; }

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: #FDF6E3;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img, .gallery-item--tall { height: 100%; min-height: 400px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { height: 280px; }
.gallery-item img { min-height: 200px; }

/* ===== VISIT ===== */
.visit {
  padding: 120px 0;
  background: linear-gradient(135deg, #0D4A3A 0%, #0A3D2F 100%);
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(253, 246, 227, 0.03);
  top: -200px; left: -150px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.visit .section-tag { color: #FDF6E3; }
.visit .section-tag::before { background: #FDF6E3; }
.visit .section-title { color: #FDF6E3; }
.visit-text {
  font-size: 1.05rem;
  color: rgba(253, 246, 227, 0.75);
  margin-bottom: 36px;
  line-height: 1.8;
}
.visit-details { margin-bottom: 36px; }
.vd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.vd-item dt {
  width: 44px; height: 44px;
  background: rgba(253, 246, 227, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FDF6E3;
}
.vd-item dd {
  font-size: 1rem;
  color: rgba(253, 246, 227, 0.9);
  padding-top: 10px;
}
.vd-item dd a {
  color: #FDF6E3;
  border-bottom: 1px solid rgba(253, 246, 227, 0.3);
  transition: border-color 0.2s;
}
.vd-item dd a:hover { border-color: #FDF6E3; }
.btn-directions {
  background: #FDF6E3;
  color: #0D4A3A;
}
.btn-directions:hover { background: #f5edda; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.map-placeholder {
  background: rgba(253, 246, 227, 0.06);
  border: 1px solid rgba(253, 246, 227, 0.12);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #FDF6E3;
}
.map-placeholder svg { margin: 0 auto 20px; }
.map-placeholder p {
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
  opacity: 0.8;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FDF6E3;
  font-weight: 700;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(253, 246, 227, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.map-link:hover { border-color: #FDF6E3; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #FDF6E3;
  position: relative;
  overflow: hidden;
}
.contact-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.geo-circle-3 {
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(13, 74, 58, 0.04);
  bottom: -100px; right: -100px;
}
.geo-square-3 {
  width: 80px; height: 80px;
  background: #0D4A3A;
  opacity: 0.05;
  top: 20%; right: 15%;
  transform: rotate(30deg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-direct { display: flex; flex-direction: column; gap: 16px; }
.contact-email, .contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #0D4A3A;
  padding: 16px 24px;
  background: rgba(13, 74, 58, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(13, 74, 58, 0.1);
  transition: background 0.2s, transform 0.2s;
}
.contact-email:hover, .contact-phone:hover {
  background: rgba(13, 74, 58, 0.08);
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(13, 74, 58, 0.08);
  border: 1px solid rgba(13, 74, 58, 0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0D4A3A;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(13, 74, 58, 0.12);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #1A1A1A;
  background: #FDF6E3;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0D4A3A;
  box-shadow: 0 0 0 4px rgba(13, 74, 58, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #999; }
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { margin-bottom: 16px; }
.form-success h3 {
  font-size: 1.6rem;
  color: #0D4A3A;
  margin-bottom: 8px;
}
.form-success p { color: #666; }

/* ===== FOOTER ===== */
.footer {
  background: #092E23;
  color: #FDF6E3;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(253, 246, 227, 0.5);
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a {
  color: #FDF6E3;
  border-bottom: 1px solid rgba(253, 246, 227, 0.2);
  transition: border-color 0.2s;
}
.footer-contact a:hover { border-color: #FDF6E3; }
.footer-bottom {
  border-top: 1px solid rgba(253, 246, 227, 0.08);
  padding: 24px 0;
}
.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 40px 60px; }
  .hero-image-col { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-float { right: -20px; bottom: -20px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--featured { grid-column: span 1; }
  .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: #FDF6E3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 1001;
  }
  .main-nav.open a { font-size: 1.2rem; }
  .hero-content { padding: 90px 24px 60px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .trust-wrap { flex-direction: column; gap: 0; }
  .trust-item { padding: 14px 24px; }
  .trust-divider { width: 80%; height: 1px; }
  .about-img-main img { height: 400px; }
  .about-img-float { width: 60%; right: -10px; bottom: -15px; }
  .about-img-float img { height: 240px; }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img, .gallery-item--tall { min-height: 200px; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--wide img { height: 200px; }
  .gallery-item img { min-height: 180px; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-wrap { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .header-wrap { padding: 0 16px; }
  .hero-content { padding: 80px 16px 40px; }
  .section-title { font-size: 1.6rem; }
  .contact-form-wrap { padding: 20px; }
}
