/* ═══════════════════════════════════════════════
   SAFARI TRAVEL PLUS — SHARED STYLESHEET
   Do not edit individual page <style> blocks
   Edit this file and it updates everywhere
   ═══════════════════════════════════════════════ */

/* ═══ 1. RESET ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* ═══ 2. DESIGN TOKENS ═══ */
:root {
  --forest: #1D4A2A;
  --forest-mid: #2E6B3E;
  --forest-lt: #E8F4EE;
  --gold: #C9A84C;
  --gold-lt: #E8D5A3;
  --gold-dk: #8B6914;
  --gold-pale: #FBF5E6;
  --cream: #FAF7F0;
  --cream-dk: #F0EBE0;
  --stone: #D4CBBB;
  --stone-lt: #EDE8DF;
  --white: #ffffff;
  --forest-deep: #0F2A1C;
  --teal: #13352C;
  --cream-2: #EFE9DC;
  --muted: #8A8A80;
  --text-dark: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-muted: #888888;
  --px: 6rem;
  --px-m: 1.5rem;
}

/* ═══ 3. BASE TYPOGRAPHY ═══ */
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif; line-height: 1.2; }
p { line-height: 1.75; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ═══ 4. SHARED SECTION PATTERNS ═══ */
.section-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-dk); font-family: 'DM Sans', sans-serif; font-weight: 500; margin-bottom: 0.6rem; display: block; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--forest); margin-bottom: 1rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ 5. BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; border: none; cursor: pointer; border-radius: 3px; transition: all 0.2s; }
.btn-primary { background: var(--gold); color: var(--forest); }
.btn-primary:hover { background: var(--gold-dk); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--forest); color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: #fff; }
.btn-ghost-cream { background: transparent; border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-ghost-cream:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-ghost-dark { background: transparent; border: 1.5px solid var(--forest); color: var(--forest); }
.btn-ghost-dark:hover { background: var(--forest); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; }

/* ═══ 6. HERO TRUST STRIP ═══ */
.hero-trust-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hts-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.75); font-family: 'DM Sans', sans-serif; }
.hts-item i { color: var(--gold); font-size: 0.9rem; }
.hts-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
@media(max-width:768px){ .hero-trust-strip { gap: 0.5rem 1rem; } .hts-sep { display: none; } }

/* ═══ 7. CONVERSION SECTION ═══ */
.conversion-section { background: var(--forest); padding: 100px var(--px); text-align: center; }
.conversion-section .conv-inner { max-width: 680px; margin: 0 auto; }
.conv-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-family: 'DM Sans', sans-serif; margin-bottom: 1rem; display: block; }
.conv-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.conv-body { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; line-height: 1.8; }
.conv-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.conv-fine { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 1.25rem; }
@media(max-width:768px){ .conversion-section { padding: 70px var(--px-m); } .conv-buttons { flex-direction: column; align-items: stretch; } }

/* ═══ 8. ATTRIBUTION LINE ═══ */
.attribution-line { font-size: 0.82rem; font-style: italic; color: var(--text-muted); text-align: center; padding: 2rem var(--px); border-top: 1px solid var(--stone); margin-top: 3rem; }
.attribution-line a { color: var(--gold-dk); text-decoration: underline; }
@media(max-width:768px){ .attribution-line { padding: 2rem var(--px-m); } }

/* ═══ 9. ENQUIRY MODAL ═══ */
.enq-modal-backdrop { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.enq-modal-backdrop.open { opacity: 1; visibility: visible; }
.enq-modal { background: #fff; border-radius: 6px; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; position: relative; transform: translateY(20px) scale(0.97); transition: transform 0.3s ease; padding: 2.5rem; }
.enq-modal-backdrop.open .enq-modal { transform: translateY(0) scale(1); }
.enq-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; cursor: pointer; color: #888; font-size:1.5rem; padding: 0.25rem; line-height: 1; transition: color 0.2s; }
.enq-close:hover { color: var(--forest); }
.enq-eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-dk); font-family: 'DM Sans', sans-serif; margin-bottom: 0.4rem; }
.enq-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #333; margin-bottom: 0.3rem; }
.enq-safari-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--forest); font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 1.2rem; border-bottom: 1px solid #e5e5e5; }
.enq-form { display: flex; flex-direction: column; gap: 1rem; }
.enq-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enq-field { display: flex; flex-direction: column; gap: 0.3rem; }
.enq-field label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; font-family: 'DM Sans', sans-serif; }
.enq-req { color: var(--gold-dk); }
.enq-field input,.enq-field textarea { border: 1px solid #ddd; background: #fff; padding: 0.75rem 0.9rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: #333; border-radius: 3px; outline: none; transition: border-color 0.2s; width: 100%; box-sizing: border-box; }
.enq-field input:focus,.enq-field textarea:focus { border-color: var(--gold); }
.enq-field textarea { resize: vertical; min-height: 80px; }
.enq-stepper { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 3px; overflow: hidden; }
.enq-stepper button { background: #f8f5f0; border: none; padding: 0.75rem 1rem; font-size: 1.1rem; cursor: pointer; color: var(--forest); transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.enq-stepper button:hover { background: #ede9e0; }
.enq-stepper input { border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; border-radius: 0; text-align: center; padding: 0.75rem 0.5rem; width: 60px; font-size: 1rem; -moz-appearance: textfield; }
.enq-stepper input::-webkit-outer-spin-button,.enq-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.enq-submit { background: var(--forest); color: #fff; border: none; padding: 1rem; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: 0.05em; cursor: pointer; border-radius: 3px; transition: background 0.2s; margin-top: 0.5rem; }
.enq-submit:hover { background: #2a5a3a; }
.enq-note { font-size: 0.75rem; color: #888; text-align: center; font-family: 'DM Sans', sans-serif; margin-top: 0.25rem; }
.enq-thanks-state { text-align: center; padding: 1rem 0; }
.enq-thanks-icon { font-size: 3.5rem; color: var(--forest); margin-bottom: 1rem; }
.enq-thanks-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--forest); margin-bottom: 0.75rem; }
.enq-thanks-body { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }
.enq-thanks-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.enq-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #25D366; color: #fff; padding: 1rem; border-radius: 4px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.enq-whatsapp-btn:hover { background: #1da851; }
.enq-continue-btn { background: none; border: 1px solid #ddd; color: #888; padding: 0.85rem; border-radius: 4px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: border-color 0.2s; }
.enq-continue-btn:hover { border-color: var(--forest); color: var(--forest); }
@media(max-width:560px){ .enq-modal { padding: 0; border-radius: 0; max-height: 100vh; height: 100%; } .enq-row-2 { grid-template-columns: 1fr; } }

/* ═══ 10. STICKY MOBILE CTA ═══ */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--forest); border-top: 1px solid rgba(255,255,255,0.1); padding: 0.75rem var(--px-m); gap: 0.75rem; }
.sticky-mobile-cta.visible { display: flex; }
.sticky-whatsapp { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: #25D366; color: #fff; padding: 0.75rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; border-radius: 3px; font-family: 'DM Sans', sans-serif; }
.sticky-plan { flex: 1.5; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--forest); padding: 0.75rem; font-size: 0.9rem; font-weight: 600; text-decoration: none; border-radius: 3px; font-family: 'DM Sans', sans-serif; }
@media(min-width:769px){ .sticky-mobile-cta { display: none !important; } }

/* ═══ 11. BREADCRUMB ═══ */
.breadcrumb { padding: 0.75rem var(--px); font-size: 0.78rem; color: var(--text-muted); background: var(--cream); border-bottom: 1px solid var(--stone); }
.breadcrumb a { color: var(--text-mid); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-dk); }
.breadcrumb span { margin: 0 0.4rem; color: var(--stone); }
@media(max-width:768px){ .breadcrumb { padding: 0.75rem var(--px-m); } }

/* ═══ 12. DESTINATION CARDS (shared grid pattern) ═══ */
.dest-card { background: #fff; border-radius: 4px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.dest-card-img { height: 220px; position: relative; background-size: cover; background-position: center; }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 60%); }
.dest-card-body { padding: 1.5rem; }
.dest-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--forest); margin-bottom: 0.4rem; }
.dest-card-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.dest-card-cta { font-size: 0.85rem; color: var(--gold-dk); font-weight: 500; text-decoration: none; }
.dest-card-cta:hover { text-decoration: underline; }
.dest-badge { position: absolute; top: 1rem; left: 1rem; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.7rem; border-radius: 2px; z-index: 1; }
.dest-badge-gold { background: var(--gold); color: var(--forest); }
.dest-badge-green { background: rgba(29,74,42,0.85); color: #fff; backdrop-filter: blur(4px); }

/* ═══ 13. SAFARI CARDS (shared grid pattern) ═══ */
.sf-card { background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #e5e5e5; transition: transform 0.3s, box-shadow 0.3s; }
.sf-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.sf-card.hidden { display: none; }
.sf-card-img { height: 170px; position: relative; background-size: cover; background-position: center; }
.sf-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%); }
.sf-card-badge { position: absolute; top: 0.75rem; left: 0.75rem; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.2rem 0.55rem; border-radius: 2px; }
.sf-card-badge-gold { background: var(--gold); color: var(--forest); }
.sf-card-badge-soft { background: #FBF5E6; color: var(--gold-dk); }
.sf-card-badge-blue { background: #E6F1FB; color: #0C447C; }
.sf-card-duration { position: absolute; bottom: 0.6rem; right: 0.75rem; font-size: 0.72rem; color: rgba(255,255,255,0.85); font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 0.25rem; }
.sf-card-body { padding: 1.1rem; }
.sf-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--forest); margin-bottom: 0.35rem; line-height: 1.3; }
.sf-card-highlights { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; }
.sf-card-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 0.75rem; }
.sf-card-price { font-size: 0.8rem; font-family: 'DM Sans', sans-serif; color: var(--text-muted); }
.sf-card-price strong { font-size: 1rem; color: var(--forest); }
.sf-card-bestfor { font-size: 0.7rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; text-align: right; }
.sf-card-actions { display: flex; gap: 0.5rem; }
.sf-card-view { flex: 1; padding: 0.6rem; background: var(--forest); color: #fff; text-decoration: none; font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; border-radius: 2px; text-align: center; transition: background 0.2s; }
.sf-card-view:hover { background: #2a5a3a; }
.sf-card-enquire { flex: 1; padding: 0.6rem; background: none; border: 1px solid var(--forest); color: var(--forest); font-size: 0.78rem; font-weight: 600; font-family: 'DM Sans', sans-serif; border-radius: 2px; cursor: pointer; transition: all 0.2s; }
.sf-card-enquire:hover { background: var(--forest); color: #fff; }

/* ═══ 14. WHY BOOK WITH US SECTION ═══ */
.trust-us-section { background: var(--cream); padding: 6rem var(--px); }
.trust-us-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.trust-us-card { background: var(--white); border: 1px solid var(--stone); border-radius: 4px; padding: 1.8rem 1.5rem; transition: box-shadow 0.3s; }
.trust-us-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.trust-us-card i { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.trust-us-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--forest); margin-bottom: 0.5rem; }
.trust-us-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
@media(max-width:900px){ .trust-us-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .trust-us-grid { grid-template-columns: 1fr; } .trust-us-section { padding: 4rem var(--px-m); } }

/* ═══ 15. ADD TO PLANNER BUTTON ═══ */
.btn-add-planner { display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; border: 1.5px solid var(--gold); color: var(--gold); padding: 0.6rem 1.1rem; font-size: 0.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; cursor: pointer; border-radius: 3px; transition: all 0.2s; white-space: nowrap; }
.btn-add-planner:hover { background: var(--gold); color: var(--forest); }
.btn-add-planner.added { background: var(--gold); color: var(--forest); }

/* ═══ 16. FILTER PILLS ═══ */
.dest-filters,.sf-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.dest-filter,.sf-filter { padding: 0.45rem 1.1rem; border: 1px solid #ddd; background: #fff; border-radius: 20px; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--text-mid); transition: all 0.2s; white-space: nowrap; }
.dest-filter.active,.dest-filter:hover,.sf-filter.active,.sf-filter:hover { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ═══ 17. REVIEWS SECTION ═══ */
.reviews-section { padding: 5rem var(--px); background: var(--white); }
.reviews-trustindex { width: 100%; max-width: 1100px; margin: 2rem auto 0; overflow-x: hidden; }
@media(max-width:768px){ .reviews-section { padding: 4rem var(--px-m); } }

/* ═══ 18. ICONIC EXPERIENCES SECTION ═══ */
.iconic-exp { margin-top: 2.5rem; }
.iconic-exp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem,2.5vw,1.9rem); color: var(--forest); margin: 0.3rem 0 0.5rem; }
.iconic-exp-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.iconic-exp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.iconic-card { position: relative; border-radius: 8px; overflow: hidden; min-height: 320px; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.iconic-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.iconic-card-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.iconic-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.2rem 1.2rem; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); }
.iconic-card-tag { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.4rem; font-family: 'DM Sans', sans-serif; }
.iconic-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.4rem; line-height: 1.3; }
.iconic-card-desc { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 0.75rem; font-family: 'DM Sans', sans-serif; }
.iconic-card-footer { display: flex; justify-content: space-between; align-items: center; }
.iconic-card-price { font-size: 0.82rem; font-weight: 600; color: var(--gold); font-family: 'DM Sans', sans-serif; }
.iconic-card-day { font-size: 0.72rem; color: rgba(255,255,255,0.55); font-family: 'DM Sans', sans-serif; }
@media(max-width:900px){ .iconic-exp-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:560px){ .iconic-exp-grid { grid-template-columns: 1fr; } .iconic-card { min-height: 260px; } }

/* ═══ 19. RESPONSIVE UTILITIES ═══ */
@media(max-width:768px){
  :root { --px: var(--px-m); }
  .hide-mobile { display: none !important; }
}
@media(min-width:769px){
  .hide-desktop { display: none !important; }
}

/* Safety net for reveal animation */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ═══ 20. NAV COMPONENT — MEGA-MENU (replaces old nav) ═══ */
#mainNav{position:fixed;top:0;left:0;right:0;z-index:1000;transition:background .4s ease,box-shadow .4s ease,padding .4s ease;padding:22px 0}
/* BUG 1 defensive reset: stop a stray bare nav{position:fixed} (present in many pages' inline styles) from hijacking the inner desktop nav */
#mainNav .nav-desktop{position:static;width:auto;top:auto;left:auto;right:auto;z-index:auto;display:flex}
#mainNav.scrolled{background:var(--forest);box-shadow:0 8px 40px rgba(15,42,28,.28);padding:14px 0}
#mainNav .nav-wrap{max-width:1240px;margin:0 auto;padding:0 var(--px);display:flex;align-items:center;justify-content:space-between;gap:30px}
#mainNav .nav-logo{display:flex;align-items:center}
#mainNav .nav-logo img{height:48px;width:252px;display:block}

/* desktop nav */
.nav-desktop .nav{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}
.nav-desktop .nav>li{list-style:none;position:relative}
.nav-desktop .nav>li>a{display:flex;align-items:center;gap:6px;padding:14px 16px;color:rgba(255,255,255,.86);font-family:'DM Sans',sans-serif;font-size:12.5px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;transition:color .25s;cursor:pointer}
.nav-desktop .nav>li>a:hover,.nav-desktop .nav>li.open>a{color:var(--gold-lt)}
.nav-desktop .caret{width:8px;height:8px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-3px;transition:transform .3s ease;opacity:.7}
.nav-desktop .nav>li.open .caret{transform:rotate(225deg);margin-top:2px}

/* mega panel */
.mega{position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(12px);background:var(--cream);border-radius:4px;box-shadow:0 30px 80px -20px rgba(15,42,28,.45),0 4px 16px rgba(15,42,28,.18);opacity:0;visibility:hidden;pointer-events:none;transition:opacity .35s ease,transform .35s cubic-bezier(.2,.7,.2,1),visibility .35s;overflow:hidden;border-top:3px solid var(--gold);z-index:1001}
.nav-desktop .nav>li.open .mega{opacity:1;visibility:visible;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.mega::before{content:'';position:absolute;top:-3px;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold-dk),var(--gold-lt),var(--gold-dk))}
.mega-in{display:flex}
.mega-cols{padding:30px 34px 26px;display:grid;gap:2px 38px}
.mega-eyebrow{grid-column:1/-1;font-size:10.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--gold-dk);font-weight:700;margin-bottom:14px;font-family:'DM Sans',sans-serif}
.m-link{display:flex;flex-direction:column;padding:9px 14px 9px 0;border-radius:3px;position:relative;transition:background .2s,padding .25s}
.m-link .t{font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:600;color:var(--forest);line-height:1.1;transition:color .2s}
.m-link .d{font-size:11.5px;color:var(--muted);margin-top:1px;letter-spacing:.01em;font-family:'DM Sans',sans-serif}
.m-link::after{content:'';position:absolute;left:0;bottom:5px;width:0;height:1px;background:var(--gold);transition:width .3s ease}
.m-link:hover .t{color:var(--gold-dk)}
.m-link:hover{padding-left:8px}
.m-link:hover::after{width:22px}

/* feature panel */
.mega-feat{position:relative;width:280px;min-height:100%;background:var(--forest);overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end}
.mega-feat img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.62;transition:transform 6s ease}
.nav-desktop .nav>li.open .mega-feat img{transform:scale(1.08)}
.mega-feat::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,42,28,.1) 0%,rgba(15,42,28,.85) 100%)}
.mf-body{position:relative;z-index:2;padding:26px 26px 28px;color:#fff}
.mf-eyebrow{font-size:9.5px;letter-spacing:.32em;text-transform:uppercase;color:var(--gold-lt);font-weight:700;margin-bottom:8px;font-family:'DM Sans',sans-serif}
.mf-body h4{font-family:'Cormorant Garamond',serif;font-size:25px;font-weight:600;color:#fff;line-height:1.05;margin-bottom:10px}
.mf-body p{font-size:12.5px;color:rgba(255,255,255,.8);line-height:1.55;margin-bottom:14px;font-family:'DM Sans',sans-serif}
.mf-cta{display:inline-flex;align-items:center;gap:8px;font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-lt);font-weight:700;font-family:'DM Sans',sans-serif}
.mf-cta .arr{width:18px;height:1px;background:var(--gold-lt);position:relative;transition:width .3s}
.mega-feat:hover .mf-cta .arr{width:30px}

/* mega footer */
.mega-foot{grid-column:1/-1;margin-top:14px;padding-top:14px;border-top:1px solid var(--cream-2);display:flex;align-items:center;justify-content:space-between}
.mega-foot a.viewall{font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-dk);font-weight:700;display:inline-flex;align-items:center;gap:8px;font-family:'DM Sans',sans-serif}
.mega-foot a.viewall .arr{width:16px;height:1px;background:var(--gold-dk);transition:width .3s}
.mega-foot a.viewall:hover .arr{width:26px}
.mega-foot .note{font-size:11px;color:var(--muted);font-family:'DM Sans',sans-serif}

/* header right */
.nav-right{display:flex;align-items:center;gap:24px}
.nav-phones{display:flex;flex-direction:column;gap:2px}
.nav-phones a{font-size:12.5px;color:rgba(255,255,255,.85);font-weight:500;display:flex;align-items:center;gap:7px;letter-spacing:.02em;white-space:nowrap;font-family:'DM Sans',sans-serif}
.nav-phones a .ph{color:var(--gold)}
.nav-cta-btn{display:inline-flex;align-items:center;gap:9px;background:var(--gold);color:var(--forest-deep);font-size:11.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:13px 22px;border-radius:2px;transition:background .25s,transform .25s,box-shadow .25s;border:1px solid var(--gold);font-family:'DM Sans',sans-serif}
.nav-cta-btn:hover{background:var(--gold-lt);transform:translateY(-1px);box-shadow:0 10px 26px -8px rgba(201,168,76,.6)}

/* burger */
.nav-burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;cursor:pointer;border:none;background:transparent;padding:0;z-index:1200}
.nav-burger span{display:block;height:2px;width:26px;background:#fff;border-radius:2px;transition:transform .35s ease,opacity .25s ease;margin:0 auto}
body.menu-open .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.menu-open .nav-burger span:nth-child(2){opacity:0}
body.menu-open .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
body.menu-open .nav-burger span{background:var(--gold-lt)}

/* mobile slide-in panel */
.mpanel{position:fixed;inset:0;z-index:1100;background:var(--forest-deep);transform:translateX(100%);transition:transform .5s cubic-bezier(.6,0,.2,1);display:flex;flex-direction:column;overflow-y:auto;-webkit-overflow-scrolling:touch;visibility:hidden}
body.menu-open .mpanel{transform:translateX(0);visibility:visible}
.mpanel::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold-dk),var(--gold-lt),var(--gold-dk))}
.mp-head{display:flex;align-items:center;justify-content:space-between;padding:22px 24px 18px;border-bottom:1px solid rgba(255,255,255,.08)}
.mp-head .nav-logo img{height:42px;width:auto}
.mp-close{width:42px;height:42px;border:none;background:transparent;color:var(--gold-lt);font-size:26px;cursor:pointer;line-height:1}
.mp-scroll{padding:8px 0 30px;flex:1}
.mp-link{display:block;padding:17px 26px;color:#fff;font-family:'Cormorant Garamond',serif;font-size:25px;font-weight:600;border-bottom:1px solid rgba(255,255,255,.06);transition:color .2s,padding-left .25s}
.mp-link:hover,.mp-link:active{color:var(--gold-lt);padding-left:32px}
.mp-acc{border-bottom:1px solid rgba(255,255,255,.06)}
.mp-acc-h{display:flex;align-items:center;justify-content:space-between;padding:17px 26px;color:#fff;font-family:'Cormorant Garamond',serif;font-size:25px;font-weight:600;cursor:pointer;user-select:none;transition:color .2s}
.mp-acc.open .mp-acc-h,.mp-acc-h:active{color:var(--gold-lt)}
.mp-acc-h .plus{position:relative;width:18px;height:18px;flex:0 0 18px}
.mp-acc-h .plus::before,.mp-acc-h .plus::after{content:'';position:absolute;background:var(--gold);border-radius:2px;transition:transform .35s ease,opacity .3s}
.mp-acc-h .plus::before{top:8px;left:0;width:18px;height:2px}
.mp-acc-h .plus::after{left:8px;top:0;width:2px;height:18px}
.mp-acc.open .mp-acc-h .plus::after{transform:rotate(90deg);opacity:0}
.mp-acc-body{max-height:0;overflow:hidden;transition:max-height .45s cubic-bezier(.4,0,.2,1);background:rgba(0,0,0,.18)}
.mp-acc.open .mp-acc-body{max-height:720px}
.mp-sub{display:flex;flex-direction:column;padding:6px 0 14px}
.mp-sub a{display:flex;flex-direction:column;padding:11px 26px 11px 30px;color:rgba(255,255,255,.88);transition:color .2s,padding-left .25s;border-left:2px solid transparent}
.mp-sub a:active,.mp-sub a:hover{color:var(--gold-lt);border-left-color:var(--gold);padding-left:34px}
.mp-sub a .st{font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:500;line-height:1.15}
.mp-sub a .sd{font-size:11.5px;color:var(--muted);letter-spacing:.02em;margin-top:1px;font-family:'DM Sans',sans-serif}
.mp-sub .mp-viewall{color:var(--gold-lt);font-size:11px;letter-spacing:.18em;text-transform:uppercase;font-weight:700;font-family:'DM Sans',sans-serif;padding-top:6px}
.mp-foot{padding:24px 26px 36px;border-top:1px solid rgba(255,255,255,.08);background:var(--teal)}
.mp-foot .nav-cta-btn{display:flex;justify-content:center;width:100%;padding:16px;font-size:13px;margin-bottom:20px}
.mp-foot .mp-phones a{display:flex;align-items:center;gap:10px;color:#fff;font-size:15px;padding:7px 0;font-weight:500;font-family:'DM Sans',sans-serif}
.mp-foot .mp-phones a .ph{color:var(--gold)}
.mp-foot .mp-meta{margin-top:14px;font-size:12px;color:var(--stone);letter-spacing:.02em;line-height:1.7;font-family:'DM Sans',sans-serif}
.mp-foot .mp-meta .tag{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:17px;color:var(--gold-lt);display:block;margin-bottom:4px}
body.menu-open{overflow:hidden}

/* breakpoints */
@media(max-width:1100px){.nav-phones{display:none}.nav-desktop .nav>li>a{padding:12px 11px;font-size:11.5px}}
@media(max-width:920px){.nav-desktop,#mainNav .nav-right .nav-cta-btn{display:none}.nav-burger{display:flex}}
@media(min-width:921px){.nav-burger,.mpanel{display:none}}
/* ═══ END NAV COMPONENT ═══ */

/* preserved: tablet horizontal-padding token (was bundled in the old nav responsive block) */
@media(min-width:769px) and (max-width:1100px){:root{--px:2.5rem}}

/* ═══ 21. FOOTER COMPONENT ═══ */
footer { background:#0F2A1C; }
.foot-main { display:grid;grid-template-columns:260px 1fr 1fr 1fr 1fr;gap:2.5rem;padding:4rem var(--px) 3rem; }
/* Logo — simple image version used by footer.html */
.foot-logo { display:block;margin-bottom:1.2rem;text-decoration:none; }
.foot-logo img { width:180px;height:auto; }
/* Legacy logo mark elements */
.foot-logo-row { display:flex;align-items:center;gap:.8rem;margin-bottom:1.2rem; }
.foot-logo-mark { width:40px;height:40px;border:1px solid rgba(201,168,76,.4);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.foot-logo-mark svg { width:19px;height:19px;fill:var(--gold); }
.foot-brand-name { font-family:'Playfair Display',serif;font-size:1.35rem;color:var(--gold);letter-spacing:.08em;text-transform:uppercase; }
.foot-brand-sub { font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-lt);display:block;margin-top:2px; }
/* Divider, copy, tagline */
.foot-divider { width:2rem;height:1px;background:var(--gold);opacity:.3;margin:.9rem 0; }
.foot-about { color:rgba(255,255,255,.38);font-size:.9rem;line-height:1.9;margin-bottom:.9rem; }
.foot-tagline { font-family:'Playfair Display',serif;font-style:italic;font-size:1.05rem;color:var(--gold);opacity:.65;margin-bottom:1.2rem; }
/* Social icons */
.foot-socials { display:flex;gap:.5rem; }
.foot-soc { width:38px;height:38px;border-radius:50%;border:1px solid rgba(201,168,76,.2);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.45);font-size:1rem;transition:all .22s;text-decoration:none; }
.foot-soc:hover { border-color:var(--gold);color:var(--gold); }
/* Footer columns */
.foot-col h5 { font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem; }
.foot-col h5::after { content:'';display:block;width:1.4rem;height:1px;background:var(--gold);opacity:.35;margin-top:.35rem; }
.foot-col ul { list-style:none; }
.foot-col ul li { margin-bottom:.48rem; }
.foot-col ul li a { font-size:.92rem;color:rgba(255,255,255,.4);transition:color .2s;display:block;padding:.1rem 0;text-decoration:none; }
.foot-col ul li a:hover { color:var(--gold-lt); }
/* Contact rows */
.foot-contact-row { display:flex;align-items:flex-start;gap:.65rem;margin-bottom:.85rem;color:rgba(255,255,255,.4);font-size:.88rem; }
.foot-contact-row i { color:var(--gold);font-size:1rem;flex-shrink:0;margin-top:2px; }
.foot-contact-row a { color:rgba(255,255,255,.4);transition:color .2s;text-decoration:none; }
.foot-contact-row a:hover { color:var(--gold-lt); }
/* Newsletter */
.foot-nl p { color:rgba(255,255,255,.38);font-size:.88rem;line-height:1.85;margin-bottom:1rem; }
.foot-nl-row { display:flex; }
.foot-nl-row input { flex:1;background:rgba(255,255,255,.05);border:1px solid rgba(201,168,76,.18);border-right:none;padding:.7rem .9rem;color:var(--white);font-family:'DM Sans',sans-serif;font-size:.85rem;outline:none;transition:border-color .2s; }
.foot-nl-row input::placeholder { color:rgba(255,255,255,.2); }
.foot-nl-row input:focus { border-color:rgba(201,168,76,.45); }
.foot-nl-btn { background:var(--gold);border:none;padding:.7rem .95rem;cursor:pointer;color:var(--forest);display:flex;align-items:center;justify-content:center;transition:background .25s;flex-shrink:0; }
.foot-nl-btn:hover { background:var(--gold-lt); }
/* Footer validation strip */
.foot-val { border-top:1px solid rgba(201,168,76,.1);border-bottom:1px solid rgba(201,168,76,.1);padding:1.8rem var(--px);display:flex;align-items:center;justify-content:space-between;gap:1rem; }
.fv { display:flex;align-items:center;gap:.8rem;flex:1; }
.fv-sep { width:1px;height:40px;background:rgba(201,168,76,.12);flex-shrink:0; }
.fv i { color:var(--gold);font-size:1.6rem;opacity:.7;flex-shrink:0; }
.fv h6 { font-size:.74rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-lt);margin-bottom:.15rem; }
.fv p { font-size:.84rem;color:rgba(255,255,255,.34);line-height:1.5; }
/* Footer bottom bar */
.foot-bottom { padding:1rem var(--px);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem;border-top:1px solid rgba(255,255,255,.06); }
.foot-bottom p { font-size:.8rem;color:rgba(255,255,255,.2); }
.foot-bot-links { display:flex;gap:1.2rem; }
.foot-bot-links a { font-size:.8rem;color:rgba(255,255,255,.25);transition:color .2s;text-decoration:none; }
.foot-bot-links a:hover { color:var(--gold-lt); }
/* Footer responsive */
@media(max-width:768px) {
  .foot-main { grid-template-columns:1fr;padding:2.8rem var(--px-m) 2rem;gap:2rem; }
  .foot-val { flex-direction:column;align-items:flex-start;padding:1.8rem var(--px-m);gap:1.3rem; }
  .fv-sep { display:none; }
  .foot-bottom { flex-direction:column;text-align:center;padding:1rem var(--px-m);gap:.6rem; }
  .foot-bot-links { flex-wrap:wrap;justify-content:center;gap:.8rem; }
}
@media(min-width:769px) and (max-width:1100px) {
  .foot-main { grid-template-columns:1fr 1fr;padding:3rem var(--px);gap:2rem; }
  .foot-val { flex-wrap:wrap;padding:1.6rem var(--px); }
  .fv-sep:nth-child(4),.fv-sep:last-child { display:none; }
}

/* ── DYNAMIC PRICE DISPLAY ── */
.saf-price-display { display:flex; flex-direction:column; align-items:flex-end; }
.saf-price-from { font-size:0.62rem; letter-spacing:0.26em; text-transform:uppercase; color:rgba(255,255,255,0.4); font-family:'DM Sans',sans-serif; }
.saf-price-amount { font-family:'Cormorant Garamond',serif; font-size:3rem; color:var(--gold); font-weight:500; line-height:1; }
.saf-price-basis { font-size:0.7rem; color:rgba(255,255,255,0.35); font-family:'DM Sans',sans-serif; }
.saf-price-badge { font-size:0.65rem; background:var(--gold); color:var(--forest); padding:0.15rem 0.5rem; border-radius:2px; font-family:'DM Sans',sans-serif; font-weight:700; margin-top:0.3rem; display:inline-block; }
