/* ============================================================
   THE ZEN COLLECTION - shared design system  (zen.css)
   v3 ELITE - 2026-06-25
   Palette: forest / blush / cream / gold  -  Cormorant Garamond + Montserrat
   Used by: index, zen-country, zen-villa, extended-stays,
            retreats, experiences, about, reviews, contact, 404
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1A3A2A;
  --forest-lt:#2B5240;
  --blush:    #C8A99A;
  --blush-lt: #E8D5CD;
  --cream:    #FAF7F2;
  --sand:     #F0EAE0;
  --charcoal: #2C2C2C;
  --muted:    #7A7065;
  --gold:     #B09060;
  --shadow:   0 8px 40px rgba(26,58,42,0.10);
  --maxw:     1120px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.8;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── utility ─── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blush); margin-bottom: 22px; display: block;
}
.ornament { color: var(--gold); font-size: 22px; letter-spacing: 12px; display: block; margin: 36px auto; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 2px; line-height: 1.25; }
.serif-italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ─── buttons ─── */
.btn-primary, .btn-outline, .btn-forest, .btn-blush, .btn-dark, .nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block; cursor: pointer;
  border: none; transition: all 0.3s; text-align: center;
}
.btn-primary { background: var(--blush); color: var(--charcoal); padding: 16px 44px; }
.btn-primary:hover { background: var(--blush-lt); }
.btn-outline { border: 1px solid rgba(255,255,255,0.6); color: #fff; padding: 16px 44px; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-forest { background: var(--forest); color: #fff; padding: 16px 34px; }
.btn-forest:hover { background: var(--forest-lt); }
.btn-blush { background: var(--blush); color: var(--charcoal); padding: 16px 34px; }
.btn-blush:hover { background: var(--blush-lt); }
.btn-dark { background: var(--forest); color: #fff; padding: 14px 36px; align-self: flex-start; margin-top: 18px; }
.btn-dark:hover { background: var(--forest-lt); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--forest);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 36px; height: 76px;
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blush); }
.nav-logo { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; text-decoration: none; }
.nav-logo .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; letter-spacing: 6px;
  color: #fff; text-transform: uppercase; display: block; line-height: 1;
}
.nav-logo .brand-sub {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--blush); display: block; margin-top: 4px;
}
.nav-cta { background: var(--blush); color: var(--charcoal); padding: 12px 26px; }
.nav-cta:hover { background: var(--blush-lt); }

/* ─── HERO (shared; page hero uses inline background-image) ─── */
.hero {
  margin-top: 76px; min-height: 600px; height: 90vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px; position: relative;
}
.hero.short { height: 60vh; min-height: 440px; }
.hero-eyebrow { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--blush); margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(34px, 6vw, 70px); color: #fff; letter-spacing: 4px;
  max-width: 860px; text-transform: uppercase;
}
.hero-divider { display: flex; align-items: center; gap: 16px; margin: 26px 0; }
.hero-divider span { color: var(--blush); font-size: 18px; }
.hero-divider .line-el { display: block; width: 60px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic;
  color: rgba(255,255,255,0.92); max-width: 600px; line-height: 1.7; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── breadcrumb ─── */
.breadcrumb { background: var(--sand); padding: 14px 0; font-size: 11px; letter-spacing: 1px; }
.breadcrumb a { color: var(--muted); text-decoration: none; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb span { color: var(--blush); margin: 0 8px; }

/* ─── press / trust strip ─── */
.press-strip { background: var(--sand); padding: 26px 24px; text-align: center; }
.press-strip .label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.press-strip .stars { color: var(--gold); font-size: 20px; letter-spacing: 6px; display: block; margin-bottom: 6px; }
.press-strip .press-line { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--muted); }

/* ─── intro / generic prose block ─── */
.block { padding: 90px 24px; }
.block.tight { padding: 64px 24px; }
.prose { max-width: 800px; margin: 0 auto; text-align: center; }
.prose h2 { font-size: clamp(28px, 4vw, 46px); color: var(--charcoal); margin-bottom: 28px; }
.prose h3 { font-size: clamp(22px, 3vw, 34px); color: var(--charcoal); margin-bottom: 20px; }
.prose p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 18px; }
.prose.left { text-align: left; }

/* ─── 4-DOOR SELECTOR ─── */
.doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.door {
  position: relative; min-height: 320px; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--forest); color: #fff;
}
.door img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s; }
.door:hover img { transform: scale(1.06); }
.door .door-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, rgba(26,58,42,0.15) 70%); z-index: 1; }
.door .door-body { position: relative; z-index: 2; padding: 28px 24px; }
.door .door-kicker { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--blush); display: block; margin-bottom: 8px; }
.door .door-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; letter-spacing: 2px; display: block; line-height: 1.1; }
.door .door-link { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 12px; display: inline-block; }

/* ─── PHOTO GRID ─── */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: 340px 340px; gap: 6px; }
.photo-grid .cell { position: relative; overflow: hidden; background: var(--forest); }
.photo-grid .cell:first-child { grid-row: 1 / 3; }
.photo-grid .cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cell-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%); }
.cell-label { position: absolute; bottom: 26px; left: 26px; font-family: 'Cormorant Garamond', serif; font-size: 26px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); text-transform: uppercase; letter-spacing: 3px; z-index: 2; }

/* gallery (property pages) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery img { width: 100%; height: 280px; object-fit: cover; }
.gallery img.tall { grid-row: span 2; height: 100%; }

/* ─── FACT STRIP ─── */
.facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; background: var(--forest); }
.fact { flex: 1 1 160px; text-align: center; padding: 36px 20px; border-right: 1px solid rgba(255,255,255,0.08); }
.fact:last-child { border-right: none; }
.fact .num { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--blush); display: block; line-height: 1; }
.fact .cap { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 10px; display: block; }

/* ─── CHIPS ─── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 8px 0 4px; }
.chip { background: var(--sand); color: var(--forest); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; padding: 9px 16px; border-radius: 2px; }

/* ─── AMENITY / FEATURE GRID ─── */
.features { background: var(--forest); padding: 70px 24px; text-align: center; }
.features h3 { font-size: clamp(22px, 3vw, 36px); color: #fff; letter-spacing: 3px; margin-bottom: 46px; text-transform: uppercase; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 38px; max-width: 1000px; margin: 0 auto; }
.feature-item { text-align: center; }
.feature-icon { font-size: 26px; color: var(--blush); display: block; margin-bottom: 12px; }
.feature-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-bottom: 8px; display: block; }
.feature-desc { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ─── SPLIT ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { background-size: cover; background-position: center; min-height: 380px; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 76px 64px; background: var(--cream); }
.split-content.dark { background: var(--forest); }
.split-content.dark h2, .split-content.dark p { color: #fff; }
.split-content.dark p { color: rgba(255,255,255,0.78); }
.split-content h2 { font-size: clamp(26px, 3vw, 42px); color: var(--charcoal); margin-bottom: 22px; }
.split-content p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }

/* ─── PRICING / OFFER CARDS ─── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: var(--maxw); margin: 0 auto; }
.card { background: #fff; box-shadow: var(--shadow); padding: 40px 32px; text-align: left; display: flex; flex-direction: column; }
.card.feature-card { border-top: 3px solid var(--gold); }
.card .card-kicker { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush); margin-bottom: 12px; display: block; }
.card h3 { font-size: 26px; color: var(--charcoal); margin-bottom: 10px; }
.card .price { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--forest); margin-bottom: 4px; display: block; }
.card .price small { font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--muted); font-style: normal; }
.card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.card ul { list-style: none; margin: 8px 0 20px; }
.card li { font-size: 13px; color: var(--charcoal); padding: 7px 0 7px 24px; position: relative; border-bottom: 1px solid var(--sand); }
.card li::before { content: "✦"; color: var(--gold); position: absolute; left: 0; }
.card .card-cta { margin-top: auto; }

/* ─── TABLE (rates / distances) ─── */
.ztable { width: 100%; max-width: 720px; margin: 0 auto; border-collapse: collapse; background: #fff; box-shadow: var(--shadow); }
.ztable th, .ztable td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--sand); font-size: 14px; }
.ztable th { background: var(--forest); color: #fff; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.ztable td:last-child { color: var(--forest); font-family: 'Cormorant Garamond', serif; font-size: 17px; }

/* ─── TESTIMONIALS / REVIEW WALL ─── */
.testimonials { background: var(--sand); padding: 90px 24px; text-align: center; }
.testimonials h3 { font-size: clamp(24px, 3vw, 40px); letter-spacing: 3px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.testi-card { background: var(--cream); padding: 44px 36px; text-align: left; }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 4px; margin-bottom: 18px; }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--charcoal); line-height: 1.8; margin-bottom: 20px; }
.testi-name { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

/* ─── FAQ (CSS-only accordion) ─── */
.faq-wrap { max-width: 800px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: 'Cormorant Garamond', serif; font-size: 21px; color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 22px; color: var(--gold); font-size: 24px; transition: transform 0.3s; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.9; }

/* ─── MISSION ─── */
.mission { background: var(--forest); padding: 96px 24px; text-align: center; }
.mission h2 { font-size: clamp(28px, 4vw, 50px); color: #fff; letter-spacing: 3px; max-width: 800px; margin: 0 auto 28px; }
.mission p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.9; max-width: 680px; margin: 0 auto 22px; }

/* ─── BANNER ─── */
.banner { height: 440px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background-size: cover; background-position: center; }
.banner h2 { font-size: clamp(28px, 5vw, 58px); color: #fff; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 18px; }
.banner p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--forest); padding: 78px 24px; text-align: center; }
.newsletter h3 { font-size: 32px; color: #fff; letter-spacing: 3px; margin-bottom: 12px; }
.newsletter p { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 1px; margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: none; background: rgba(255,255,255,0.1); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { background: var(--blush); color: var(--charcoal); font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 16px 24px; border: none; cursor: pointer; white-space: nowrap; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--blush-lt); }

/* ─── CONTACT FORM ─── */
.cform { max-width: 620px; margin: 0 auto; text-align: left; }
.cform label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: block; margin: 18px 0 6px; }
.cform input, .cform select, .cform textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--sand); background: #fff;
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--charcoal); outline: none; transition: border 0.3s;
}
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--blush); }
.cform textarea { min-height: 130px; resize: vertical; }
.cform button { margin-top: 24px; width: 100%; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); padding: 58px 24px 38px; text-align: center; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 27px; letter-spacing: 6px; text-transform: uppercase; color: #fff; margin-bottom: 8px; display: block; }
.footer-sub { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--blush); margin-bottom: 30px; display: block; }
.footer-links { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-links a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--blush); }
.footer-contact { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 2; }
.footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-social { display: flex; gap: 18px; justify-content: center; margin: 18px 0; }
.footer-social a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush); text-decoration: none; }
.footer-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.15); margin: 28px auto; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .doors { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-content { padding: 56px 32px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img.tall { grid-row: auto; }
}
@media (max-width: 768px) {
  /* Static, stacked header on mobile so EVERY nav link stays reachable (no dead-end). */
  nav { position: static; height: auto; flex-wrap: wrap; justify-content: center; padding: 12px 16px; gap: 10px 16px; }
  .nav-logo { position: static; transform: none; order: -1; width: 100%; text-align: center; }
  .nav-links { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 12px 16px; }
  .nav-cta { order: 2; }
  .hero { margin-top: 0 !important; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid .cell:first-child { grid-row: auto; }
  .photo-grid .cell { height: 230px; }
  .newsletter-form { flex-direction: column; }
  .fact { flex-basis: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 520px) {
  .doors { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   v4 DIRECT additions - 2026-07-04
   Book-direct bar, trust line, policies page blocks
   ============================================================ */

/* ─── BOOK DIRECT & SAVE BAR (sits under the fixed nav) ─── */
.direct-bar {
  margin-top: 76px;
  background: var(--gold);
  text-align: center;
  padding: 11px 18px;
}
.direct-bar a {
  color: #fff; text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  transition: opacity 0.3s;
}
.direct-bar a:hover { opacity: 0.85; text-decoration: underline; }
/* bar already clears the fixed nav, so the hero that follows it must not double-offset */
.direct-bar + .hero { margin-top: 0 !important; }

/* ─── TRUST LINE (near booking CTAs) ─── */
.trust-line {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 18px;
}

/* ─── POLICY BLOCKS (policies.html) ─── */
.policy-block { max-width: 800px; margin: 0 auto 54px; text-align: left; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block h3 {
  font-size: clamp(22px, 3vw, 30px); color: var(--charcoal); margin-bottom: 6px;
}
.policy-block .policy-kicker {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blush); display: block; margin-bottom: 10px;
}
.policy-block p { font-size: 14px; color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.policy-block ul { list-style: none; margin: 10px 0 0; }
.policy-block li {
  font-size: 14px; color: var(--charcoal); padding: 9px 0 9px 24px;
  position: relative; border-bottom: 1px solid var(--sand); line-height: 1.7;
}
.policy-block li::before { content: "\2726"; color: var(--gold); position: absolute; left: 0; }

/* keep the 6-link nav clear of the centered logo on mid-size screens */
@media (max-width: 1280px) and (min-width: 769px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 9px; letter-spacing: 1.5px; }
}
@media (max-width: 768px) {
  .direct-bar { margin-top: 0; } /* nav is static on mobile */
}
