:root {
  --bg: #f7f5ee;
  --surface: #ffffff;
  --surface-alt: #f0eddf;
  --text: #2a2a1e;
  --muted: #6b6748;
  --primary: #4a5216;
  --accent: #8a9a3a;
  --border: #ddd8c0;
  --shadow: 0 20px 50px rgba(50, 48, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(247, 245, 238, 0.92);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
}

.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--primary);
  color: white;
}
.btn-light {
  background: var(--surface);
  border: 1px solid var(--border);
}
.full { width: 100%; }

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a6420;
  font-weight: 700;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.lead,
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 800px;
}

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

.hero-card,
.service-card,
.info-card,
.contact-card,
.quote-card,
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, #f0f2e0 0%, #fdf8ec 100%);
}

.hero-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.two-col,
.contact-grid,
.story-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.info-grid,
.cards-grid {
  display: grid;
  gap: 20px;
}

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

.info-card,
.service-card {
  padding: 24px;
}

.cards-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.service-card ul {
  padding-left: 20px;
  margin: 0;
}

.quote-card {
  padding: 30px;
  font-size: 1.2rem;
  color: var(--primary);
  font-style: italic;
}

.testimonial {
  padding: 28px;
  max-width: 900px;
}

.testimonial-name {
  font-weight: 700;
  margin-top: 8px;
}

.contact-section {
  background: #2a2e1a;
  color: #f5f3e8;
}

.contact-section .eyebrow { color: #b5c484; }
.contact-section p { color: #d5d0bf; }

.contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.contact-item + .contact-item {
  margin-top: 20px;
}

.contact-item span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0a880;
  margin-bottom: 6px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 36px;
  background: var(--surface);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-wrap p {
  margin: 6px 0 0;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.social-links a:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.journey-image-wrap {
  margin-top: 24px;
}

.journey-img {
  border-radius: 20px;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 24px;
  padding: 36px;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  color: var(--text);
}

.modal h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.modal-subtitle {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: 20px 0;
}

.form-success p {
  font-size: 1.05rem;
  color: var(--primary);
}

#open-booking-btn {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

/* Introduction Video */
.intro-video-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.intro-video-wrap h2 {
  margin-bottom: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .story-wrap,
  .cards-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 44px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
