/* ============================================================
   Ahmad Adiy Hijama — Premium wellness theme
   Palette: deep forest green, sage, cream, gold accent
   ============================================================ */

:root {
  color-scheme: light;
  --green-900: #163a2b;
  --green-800: #1e5238;
  --green-700: #266a49;
  --sage: #6f8b78;
  --cream: #f5f2ea;
  --cream-2: #efeae0;
  --paper: #ffffff;
  --ink: #23302a;
  --ink-soft: #4c5a52;
  --gold: #c9a24b;
  --gold-soft: #d9bd7a;
  --line: #e3ded3;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px -24px rgba(22, 58, 43, 0.35);
  --maxw: 1160px;

  /* Theme transition */
  --theme-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  color-scheme: dark;
  --green-900: #0d2319;
  --green-800: #122e20;
  --green-700: #1a4530;
  --sage: #5a7264;
  --cream: #111d16;
  --cream-2: #0e1912;
  --paper: #172217;
  --ink: #d8e8dc;
  --ink-soft: #8aab95;
  --gold: #d9a94e;
  --gold-soft: #e8c97a;
  --line: #1f3328;
  --shadow: 0 18px 50px -24px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; background: var(--cream); transition: background 0.3s ease; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-weight: 400;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

p { margin-bottom: 0; line-height: 1.75; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

.section { padding: 96px 0; }
.section-alt { background: var(--cream-2); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--green-900);
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.center { text-align: center; }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-soft); }

/* Dark mode: default section-title (on light-bg sections) → use light ink */
[data-theme="dark"] .section-title { color: var(--ink); }
/* Dark mode: .light section-title (on dark-bg sections like Principles/Booking) → keep readable */
[data-theme="dark"] .section-title.light { color: var(--ink); }

.lead { color: var(--ink-soft); max-width: 52ch; margin-bottom: 28px; font-size: 1.08rem; line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}
.btn-pill { padding: 13px 26px; border-radius: 999px; }
.btn-gold { background: var(--gold); color: #2a2410; }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(201, 162, 75, 0.7); }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
[data-theme="dark"] .btn-outline-light { color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 8px 0;
}
.site-header.scrolled {
  background: rgba(245, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cream); }
.site-header.scrolled .brand { color: var(--green-900); }
.brand.light { color: var(--cream); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: #2a2410;
}
.brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: 0.01em; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
}
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--gold); }

.header-cta { padding: 10px 20px; }

/* ---------- Theme Toggle ---------- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.22); transform: rotate(20deg); }
.site-header.scrolled .theme-toggle { border-color: var(--line); background: var(--cream-2); color: var(--ink); }
.site-header.scrolled .theme-toggle:hover { background: var(--line); }
.theme-toggle svg { transition: transform 0.4s ease; }

/* Dark mode icon visibility */
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--green-900); }
[data-theme="dark"] .site-header.scrolled .nav-toggle span { background: var(--ink); }

.site-header.nav-open { background: var(--cream); }
[data-theme="dark"] .site-header.nav-open { background: var(--paper); }
.site-header.nav-open .nav-toggle span { background: var(--green-900); }
[data-theme="dark"] .site-header.nav-open .nav-toggle span { background: var(--ink); }
.site-header.nav-open .brand { color: var(--green-900); }
[data-theme="dark"] .site-header.nav-open .brand { color: var(--ink); }
.site-header.nav-open .theme-toggle { border-color: var(--line); background: var(--cream-2); color: var(--ink); }

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  padding: 10px 24px 24px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .mobile-nav {
  background: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a { 
  color: var(--ink); 
  text-decoration: none; 
  padding: 14px 0; 
  border-bottom: 1px solid var(--line); 
  font-weight: 500;
  font-size: 1.05rem;
}
.mobile-nav.open { 
  display: flex; 
  animation: slideDown 0.3s ease forwards; 
  transform-origin: top; 
}
@keyframes slideDown {
  from { opacity: 0; transform: scaleY(0.95); }
  to { opacity: 1; transform: scaleY(1); }
}
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-top: 120px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("images/hero.png") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,45,34,0.92) 0%, rgba(30,82,56,0.78) 55%, rgba(30,82,56,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: 90px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--gold-soft); }
.hero-sub { max-width: 48ch; color: rgba(255,255,255,0.85); font-size: 1.02rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: blur(6px);
}
.hero-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-800);
  flex-wrap: wrap;
}
.hero-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-portrait {
  border-radius: 200px 200px 18px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.about-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* Blur overlay for face privacy */
.face-blur {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 55%;
  height: 30%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}
.about-badge {
  position: absolute; left: -10px; bottom: 26px;
  background: var(--green-800); color: #fff;
  padding: 14px 22px; border-radius: 14px; text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { font-family: var(--font-display); font-size: 1.8rem; display: block; color: var(--gold-soft); }
.about-badge span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.check-list li::before {
  content: "\2713"; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(38,106,73,0.12); color: var(--green-700);
  display: grid; place-items: center; font-size: 0.7rem;
}

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
}
.mini-card p { font-size: 0.88rem; color: var(--ink-soft); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; font-size: 0.8rem; font-family: "Segoe UI Symbol", "Apple Symbols", system-ui, sans-serif; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.feature-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(38,106,73,0.1); color: var(--green-700);
  font-size: 1.2rem; margin-bottom: 18px;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--green-900); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   PRINCIPLES
   ============================================================ */
.principles { background: var(--green-800); color: #fff; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 46px; }
.principle { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 22px; }
.principle-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold-soft); display: block; margin-bottom: 10px; }
.principle h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin-bottom: 12px; }
.principle p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.75; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.services-note { color: var(--ink-soft); max-width: 34ch; font-size: 0.92rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media { position: relative; background: radial-gradient(circle at center, #f4ecd8 0%, #ffffff 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.service-media img { width: 100%; height: 220px; object-fit: contain; }
[data-theme="dark"] .service-media { background: radial-gradient(circle at center, #1f2a24 0%, #111d16 100%); }
.service-price {
  position: absolute; top: 12px; left: 12px;
  background: rgba(22,58,43,0.9); color: var(--gold-soft);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
}
.service-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--green-900); margin-bottom: 8px; letter-spacing: -0.01em; }
.service-body > p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.service-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.service-points li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink); }
.service-points li::before { content: "\2713"; color: var(--green-700); font-size: 0.75rem; }
.service-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--cream);
  color: var(--green-900); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.service-cta:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }

/* Dark mode: use a lighter surface so text is visible */
[data-theme="dark"] .service-cta {
  background: var(--green-700);
  color: #fff;
  border-color: var(--green-700);
}
[data-theme="dark"] .service-cta:hover {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-note { color: var(--ink); font-size: 0.92rem; font-weight: 400; max-width: 72ch; margin-bottom: 40px; opacity: 0.9; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 24px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-icon {
  display: grid; place-items: center; margin: 0 auto 16px;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(201,162,75,0.14); color: var(--gold); font-size: 1.4rem;
}
.benefit h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--green-900); margin-bottom: 10px; letter-spacing: -0.01em; }
.benefit p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  border: 1px solid var(--line); background: var(--paper);
  padding: 8px 18px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; color: var(--ink-soft);
  transition: all 0.25s ease;
}
.filter.active, .filter:hover { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  background: radial-gradient(circle at center, #f4ecd8 0%, #e8dfc8 100%);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px -6px rgba(22, 58, 43, 0.15);
  cursor: pointer;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover {
  box-shadow: 0 16px 40px -12px rgba(22, 58, 43, 0.3);
  transform: translateY(-4px);
}
[data-theme="dark"] .gallery-item {
  background: radial-gradient(circle at center, #1f2a24 0%, #111d16 100%);
  box-shadow: 0 4px 16px -6px rgba(0,0,0,0.4);
}
[data-theme="dark"] .gallery-item:hover {
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.6);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 10px;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 58, 43, 0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius-lg);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.hidden { display: none; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--green-900); color: #fff; text-align: center; position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.4; color: var(--gold-soft); margin: 20px 0 10px; }
.testimonial-track { max-width: 720px; margin: 0 auto; position: relative; min-height: 150px; }
.testimonial {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease; display: flex; flex-direction: column; align-items: center;
}
.testimonial.active { opacity: 1; visibility: visible; position: relative; }
.testimonial p.quote { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; margin-bottom: 22px; color: #fff; }
.testimonial .avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; margin-bottom: 10px; border: 2px solid var(--gold-soft); }
.testimonial .stars { color: var(--gold-soft); margin-bottom: 6px; font-family: "Segoe UI Symbol", "Apple Symbols", system-ui, sans-serif; }
.testimonial .name { font-weight: 500; letter-spacing: 0.02em; }
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: 0.25s;
}
.testimonial-dots button.active { background: var(--gold); width: 26px; border-radius: 999px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 500; color: var(--green-900);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.5;
}
.faq-q .icon { flex: none; transition: transform 0.3s ease; color: var(--gold); font-size: 1.3rem; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }

/* Dark mode FAQ */
[data-theme="dark"] .faq-q { color: var(--ink); }
[data-theme="dark"] .faq-a p { color: var(--ink-soft); }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--green-800); color: #fff; }
.booking-note { color: rgba(255,255,255,0.8); margin-bottom: 34px; }
.booking-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.8rem; color: rgba(255,255,255,0.82); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.9);
  border: 1px solid transparent; border-radius: 10px;
  padding: 12px 14px; font-family: var(--font-body); font-size: 0.9rem; 
  color: #23302a;
  color-scheme: light;
  outline: none; transition: box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: 0 0 0 3px rgba(201,162,75,0.5); }
.field textarea { resize: vertical; }
.booking-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.form-status { grid-column: 1/-1; font-size: 0.9rem; color: var(--gold-soft); min-height: 1em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; margin-top: 40px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: start; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.contact-card.wide { grid-column: 1 / -1; }
.contact-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(38,106,73,0.1); color: var(--green-700);
  display: grid; place-items: center; font-size: 1.1rem;
}
.contact-card h3 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-800); margin-bottom: 6px; font-weight: 600; }
.contact-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }
.contact-card.wide p { display: flex; justify-content: space-between; gap: 20px; }

.contact-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.contact-card:hover .contact-btn {
  color: var(--green-700);
}

.email-image {
  height: 24px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  mix-blend-mode: multiply;
  margin-top: 2px;
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
}

.email-image-footer {
  height: 18px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: invert(1);
  mix-blend-mode: screen;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.75); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin: 14px 0 18px; font-size: 0.9rem; max-width: 30ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: var(--cream);
  display: grid; place-items: center; text-decoration: none; font-size: 0.9rem;
  transition: 0.25s;
}
.socials a:hover { background: var(--gold); color: #2a2410; border-color: var(--gold); }
.footer-col h4 { color: var(--cream); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.88rem; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; pointer-events: none; }
.reveal.in { opacity: 1; transform: none; pointer-events: auto; }

/* Dark mode card headings override */
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .service-body h3,
[data-theme="dark"] .benefit h3,
[data-theme="dark"] .contact-card h3 {
  color: var(--ink);
}

/* Dark mode card icons override */
[data-theme="dark"] .feature-icon,
[data-theme="dark"] .contact-icon {
  color: var(--gold);
  background: rgba(217, 169, 78, 0.1); /* Gold with low opacity */
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-wa {
  position: fixed !important;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
  right: calc(24px + env(safe-area-inset-right, 0px)) !important;
  left: auto !important;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 99999 !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
  margin: 0 !important;
}
.floating-wa:hover {
  transform: scale(1.08) translateY(-4px) translateZ(0);
  -webkit-transform: scale(1.08) translateY(-4px) translateZ(0);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  background: #20b858;
}
.floating-wa svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-media { max-width: 380px; }
  .feature-grid, .service-grid, .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 66px 0; }
  .feature-grid, .service-grid, .principle-grid, .benefit-grid, .about-cards, .contact-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 1; }
  .booking-form { grid-template-columns: 1fr; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 34px; }
  .footer-brand, .footer-col { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; justify-content: center; }
  .principle { border-top: 0; padding-top: 0; }
  .hero { min-height: 560px; padding-top: 100px; }
  .hero-content { padding-bottom: 120px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-strip-inner { font-size: 0.95rem; gap: 12px; padding: 14px 16px; justify-content: center; text-align: center; }
  .hero-strip .dot { width: 4px; height: 4px; }
  .contact-card.wide p { flex-direction: column; gap: 2px; }
  .about-badge { padding: 10px 16px; bottom: 16px; }
  .about-badge strong { font-size: 1.4rem; }

  .floating-wa {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px)) !important;
    right: calc(20px + env(safe-area-inset-right, 0px)) !important;
    left: auto !important;
    width: 54px;
    height: 54px;
  }
  .floating-wa svg { width: 30px; height: 30px; }
}
