/*
Theme Name: Bhutan DMC Theme
Theme URI: https://dmcbhutantrips.com
Author: DMC Bhutan Trip
Author URI: https://dmcbhutantrips.com
Description: Premium WordPress theme for DMC Bhutan Trip — authentic Bhutan travel experiences with luxury design, animations, and full-featured pages.
Version: 2.0
License: Proprietary
Text Domain: bhutan-dmc
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --saffron: #C8861A;
  --saffron-light: #F5E6C8;
  --crimson: #8B1A1A;
  --forest: #2C4A2E;
  --gold: #D4A843;
  --cream: #FAF7F0;
  --text-dark: #1A1410;
  --text-mid: #4A3728;
  --text-light: #8C7B6B;
  --border: #E8DDD0;
  --shadow: rgba(26,20,16,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 2px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .5s, visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; color: var(--crimson);
  text-align: center; margin-bottom: 20px;
}
.loader-logo span { color: var(--saffron); }
.loader-bar {
  width: 180px; height: 3px;
  background: var(--border); border-radius: 3px;
  overflow: hidden; margin: 0 auto;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  animation: load 0.4s ease forwards;
}
@keyframes load { to { width: 100%; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: transparent; border-bottom: none;
  transition: transform .35s ease, background .3s, box-shadow .3s, padding .3s;
}
nav.nav-hidden { transform: translateY(-100%); }
nav.scrolled {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 12px 40px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  color: #fff; letter-spacing: .02em;
}
.nav-logo span { color: rgba(255,210,80,.95); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,.9); letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--saffron); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--saffron); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-social { display: flex; gap: 8px; }
.nav-social-link {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: all .2s;
}
.nav-social-link:hover {
  background: var(--saffron); border-color: var(--saffron);
  color: #fff; transform: translateY(-2px);
}
.nav-social-link svg { width: 14px; height: 14px; }
.nav-cta {
  background: var(--crimson); color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  padding: 10px 22px; border: none; cursor: pointer;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s; white-space: nowrap;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--saffron); transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,134,26,.3);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 22px; height: 2px; background: #fff; transition: all .3s; display: block; }

/* Dropdown */
.nav-dropdown-wrapper { position: relative; }
.nav-dropdown-wrapper .dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
  cursor: pointer; background: none; border: none;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(250,247,240,0.98);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border); border-top: 3px solid var(--saffron);
  border-radius: 6px; min-width: 310px; padding: 12px 0;
  box-shadow: 0 10px 30px rgba(26,20,16,0.15);
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
  z-index: 250; display: flex; flex-direction: column;
}
.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  padding: 10px 20px; font-size: 13px !important; font-weight: 500 !important;
  color: var(--text-mid) !important; text-transform: none !important;
  letter-spacing: 0.02em !important; transition: all 0.2s ease;
  display: block; text-align: left; border-bottom: none !important;
}
.nav-dropdown-menu a:hover {
  background: var(--saffron-light); color: var(--crimson) !important; padding-left: 24px;
}
.nav-dropdown-menu hr {
  border: none; border-top: 1px solid var(--border); margin: 8px 0;
}
.chev { font-size: 9px; transition: transform 0.3s; display: inline-block; }
.nav-dropdown-wrapper:hover .chev { transform: rotate(180deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 200;
  flex-direction: column; padding: 80px 32px 40px; gap: 0;
  overflow-y: scroll; -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 28px;
  cursor: pointer; color: var(--text-dark);
}
.mobile-menu > a {
  font-size: 22px; font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--text-dark);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu > a:hover { color: var(--saffron); }
.mobile-menu .mobile-cta {
  margin-top: 28px; background: var(--crimson); color: #fff;
  text-align: center; padding: 16px; border-radius: 2px;
  letter-spacing: .06em; font-family: 'Jost', sans-serif;
  font-size: 13px; font-weight: 500; text-transform: uppercase;
  border-bottom: none; touch-action: manipulation;
  -webkit-tap-highlight-color: transparent; display: block;
}
.mobile-social {
  display: flex; gap: 14px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.mobile-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 0; border-bottom: none !important;
  padding: 0 !important;
}
.mobile-dropdown-trigger {
  font-size: 20px; font-family: 'Cormorant Garamond', serif;
  font-weight: 500; color: var(--text-dark);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none; -webkit-user-select: none;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  width: 100%; background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; outline: none;
}
.mobile-dropdown-trigger .chev { font-size: 11px; }
.mobile-dropdown-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease-out;
  background: rgba(200,134,26,0.02);
  padding-left: 16px; display: flex; flex-direction: column;
}
.mobile-dropdown-content.open {
  max-height: 800px; border-bottom: 1px solid var(--border);
  overflow: visible;
}
.mobile-dropdown-content a {
  font-size: 14px !important; font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important; padding: 10px 0 !important;
  border-bottom: none !important; text-transform: none !important;
  letter-spacing: 0.02em !important; color: var(--text-mid) !important;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 90px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px;
  background: var(--saffron); flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 500; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title em { color: var(--saffron); font-style: italic; }
.section-body {
  font-size: 16px; color: var(--text-light);
  max-width: 580px; line-height: 1.85;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--saffron); padding: 14px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 500;
  color: var(--cream); letter-spacing: .05em; text-transform: uppercase;
  transition: transform .2s;
}
.trust-item:hover { transform: translateY(-2px); }
.trust-sep { color: rgba(250,247,240,.35); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--saffron); color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  padding: 15px 34px; border: none; cursor: pointer;
  letter-spacing: .07em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s; display: inline-block;
}
.btn-primary:hover {
  background: var(--gold); transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,134,26,.4);
}
.btn-ghost {
  background: rgba(250,247,240,.1); color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 400;
  padding: 15px 34px; border: 1px solid rgba(250,247,240,.32); cursor: pointer;
  letter-spacing: .07em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s;
  backdrop-filter: blur(8px); display: inline-block;
}
.btn-ghost:hover {
  background: rgba(250,247,240,.2);
  border-color: rgba(250,247,240,.55); transform: translateY(-3px);
}
.btn-ghost-dark {
  background: transparent; color: var(--text-dark);
  font-family: 'Jost', sans-serif; font-size: 13px;
  padding: 15px 34px; border: 1px solid var(--text-mid); cursor: pointer;
  letter-spacing: .07em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s; display: inline-block;
}
.btn-ghost-dark:hover {
  background: var(--text-dark); color: var(--cream); transform: translateY(-3px);
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: #1A1410;
}
.hero-bg-slideshow {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0; transition: opacity 2s ease-in-out;
  z-index: 0; transform: scale(1.05);
}
.hero-bg-img.active {
  opacity: 1; transform: scale(1.12);
  transition: opacity 2s ease-in-out, transform 12s ease-in-out;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(14,10,8,.85) 0%, rgba(20,14,10,.60) 45%, rgba(26,20,16,.25) 100%);
}
.hero-bloom {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse 60% 50% at 68% 38%, rgba(212,168,67,.15) 0%, transparent 65%);
  animation: bloom 9s ease-in-out infinite; pointer-events: none;
}
@keyframes bloom { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
.hero-pattern {
  position: absolute; inset: 0; z-index: 3; opacity: .025;
  background-image: repeating-linear-gradient(45deg, var(--saffron) 0, var(--saffron) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, var(--saffron) 0, var(--saffron) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
  animation: patternMove 20s linear infinite; pointer-events: none;
}
@keyframes patternMove { 0% { background-position: 0 0; } 100% { background-position: 30px 30px; } }
.hero-content {
  position: relative; z-index: 5;
  padding: 100px 40px 80px;
  max-width: 1200px; width: 100%; margin: 0 auto;
}

/* Hero staggered entrance */
@keyframes heroSlideUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes underline { to { transform: scaleX(1); transform-origin: left; } }
.hero-badge { animation: heroSlideUp .7s cubic-bezier(.2,0,.2,1) both; animation-delay: .1s; }
.hero h1 { animation: heroSlideUp .75s cubic-bezier(.2,0,.2,1) both; animation-delay: .28s; }
.hero-sub { animation: heroSlideUp .75s cubic-bezier(.2,0,.2,1) both; animation-delay: .44s; }
.hero-actions { animation: heroSlideUp .75s cubic-bezier(.2,0,.2,1) both; animation-delay: .58s; }
.hero-stats { animation: heroFadeIn .9s ease both; animation-delay: .78s; }

@keyframes cardFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,26,.18); border: 1px solid rgba(200,134,26,.45);
  padding: 8px 18px; border-radius: 20px;
  font-size: 11px; font-weight: 500; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 28px;
  cursor: pointer; transition: all .3s; backdrop-filter: blur(8px);
}
.hero-badge:hover { background: rgba(200,134,26,.3); transform: translateX(4px); }
.badge-dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,168,67,.7); }
  50% { opacity: .4; box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 1.05;
  color: var(--cream); margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero h1 em {
  color: var(--gold); font-style: italic;
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--saffron);
  transform: scaleX(0); transform-origin: right;
  animation: underline 1.5s ease forwards .6s;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); font-weight: 300;
  color: rgba(250,247,240,.82); max-width: 520px;
  margin-bottom: 36px; line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; border-top: 1px solid rgba(250,247,240,.14);
  padding-top: 36px; gap: 0;
}
.stat-item { flex: 1; padding-right: 40px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); height: 38px; width: 1px;
  background: rgba(250,247,240,.14);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 500;
  color: var(--cream); line-height: 1; margin-bottom: 6px; transition: all .3s;
}
.stat-item:hover .stat-num { color: var(--gold); transform: scale(1.08); }
.stat-label { font-size: 10px; color: rgba(250,247,240,.5); letter-spacing: .08em; text-transform: uppercase; }

/* ============================================================
   PAGE HERO (About / Contact / etc.)
   ============================================================ */
.page-hero {
  position: relative; min-height: 64vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: #1A1410;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(.35);
  animation: kenB 20s ease-in-out infinite alternate;
}
@keyframes kenB { 0% { transform: scale(1.0); } 100% { transform: scale(1.08); } }
.page-hero-content {
  position: relative; z-index: 5;
  padding: 110px 40px 90px;
  max-width: 1200px; width: 100%; margin: 0 auto;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,247,240,.4); margin-bottom: 28px;
}
.breadcrumb a { color: rgba(250,247,240,.4); }
.breadcrumb a:hover, .breadcrumb .cur { color: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 500; line-height: 1.08;
  color: var(--cream); margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.page-hero h1 em { color: var(--gold); font-style: italic; display: inline-block; position: relative; }
.page-hero h1 em::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 100%; height: 2px; background: var(--saffron);
  transform: scaleX(0); transform-origin: right;
  animation: underline 1.5s ease forwards .7s;
}
.page-hero-sub {
  font-size: clamp(15px, 2vw, 17px); font-weight: 300;
  color: rgba(250,247,240,.76); max-width: 580px; line-height: 1.9; margin-bottom: 36px;
}
.hero-trust-row { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(250,247,240,.6); letter-spacing: .04em; }
.hero-pill .tick { color: var(--gold); font-size: 14px; }

/* ============================================================
   WHY US CARDS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  padding: 36px 28px; border-radius: 4px;
  position: relative; overflow: hidden; transition: all .4s; cursor: default;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--saffron); transition: height .4s;
}
.why-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px var(--shadow); animation: cardFloat 2.5s ease-in-out infinite; }
.why-card:hover::before { height: 100%; }
.why-icon { font-size: 30px; margin-bottom: 18px; transition: transform .3s; display: block; }
.why-card:hover .why-icon { transform: scale(1.15) rotate(4deg); }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.psych-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  background: var(--saffron-light); color: var(--crimson);
  padding: 5px 12px; border-radius: 20px; margin-top: 16px;
  letter-spacing: .04em; transition: all .3s;
}
.why-card:hover .psych-tag { background: var(--saffron); color: var(--cream); }

/* ============================================================
   EMOTION BAND
   ============================================================ */
.emotion-band {
  background: linear-gradient(135deg, var(--forest) 0%, #1F3520 100%);
  padding: 90px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.emotion-band::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,168,67,.03) 0%, transparent 70%);
  animation: spin 30s linear infinite;
}
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.emotion-band .section-label { color: var(--gold); justify-content: center; }
.emotion-band .section-label::before { background: var(--gold); }
.emotion-band .section-title { color: var(--cream); max-width: 780px; margin: 0 auto 24px; }
.emotion-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 20px); font-style: italic;
  color: rgba(250,247,240,.8); max-width: 680px;
  margin: 0 auto 40px; line-height: 1.85; position: relative; z-index: 1;
}
.emotion-band blockquote cite {
  display: block; font-style: normal; font-size: 12px;
  color: rgba(250,247,240,.38); letter-spacing: .1em;
  text-transform: uppercase; margin-top: 16px;
}
.emotion-pillars { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.pillar {
  background: rgba(250,247,240,.07); border: 1px solid rgba(250,247,240,.15);
  padding: 12px 24px; border-radius: 30px;
  font-size: 12px; color: rgba(250,247,240,.85); letter-spacing: .08em;
  text-transform: uppercase; transition: all .3s; cursor: default;
}
.pillar:hover { background: rgba(212,168,67,.15); border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.view-all {
  font-size: 12px; color: var(--saffron); letter-spacing: .07em;
  text-transform: uppercase; border-bottom: 1px solid var(--saffron);
  padding-bottom: 3px; transition: all .3s;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.view-all:hover { color: var(--crimson); border-color: var(--crimson); gap: 10px; }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pkg-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: all .35s; position: relative;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px var(--shadow); }
.pkg-card.featured { border: 2px solid var(--saffron); transform: scale(1.02); }
.pkg-card.featured:hover { transform: scale(1.02) translateY(-8px); }
.pkg-featured-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--saffron); color: #fff;
  font-size: 10px; font-weight: 600; padding: 5px 14px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 20px; z-index: 2; box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.pkg-img-wrap { aspect-ratio: 4/3; position: relative; overflow: hidden; display: block; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.07); }
.pkg-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,20,16,.55) 100%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.pkg-card:hover .pkg-img-overlay { opacity: 1; }
.pkg-category-badge {
  position: absolute; bottom: 14px; left: 14px; right: auto;
  font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; background: rgba(26,20,16,.72); border: 1px solid rgba(255,255,255,.25);
  padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(8px);
  white-space: nowrap; max-width: calc(100% - 28px);
}
.pkg-body { padding: 24px; }
.pkg-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.pkg-duration { font-size: 11px; color: var(--text-light); letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.pkg-price { font-size: 15px; font-weight: 600; color: var(--saffron); }
.pkg-name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; transition: color .3s;
}
.pkg-card:hover .pkg-name { color: var(--crimson); }
.pkg-desc { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.pkg-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.pkg-tag {
  font-size: 10px; background: var(--saffron-light); color: var(--crimson);
  padding: 4px 10px; border-radius: 20px; letter-spacing: .03em;
  font-weight: 500; transition: all .3s;
}
.pkg-tag:hover { background: var(--saffron); color: var(--cream); }
.pkg-footer { display: flex; gap: 10px; }
.btn-pkg-main {
  flex: 1; background: var(--crimson); color: #fff;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600;
  padding: 11px 0; border: none; cursor: pointer; letter-spacing: .07em;
  text-transform: uppercase; border-radius: 4px; transition: all .3s;
  text-align: center; display: block;
}
.btn-pkg-main:hover { background: var(--saffron); transform: translateY(-2px); }
.btn-pkg-ghost {
  background: transparent; color: var(--text-mid);
  font-family: 'Jost', sans-serif; font-size: 11px;
  padding: 11px 14px; border: 1px solid var(--border); cursor: pointer;
  letter-spacing: .05em; border-radius: 4px; white-space: nowrap;
  transition: all .3s; display: block;
}
.btn-pkg-ghost:hover { border-color: var(--saffron); color: var(--saffron); }

/* ============================================================
   SDF SECTION
   ============================================================ */
.sdf-box {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; max-width: 1200px;
  margin: 48px auto 0; box-shadow: 0 8px 40px var(--shadow);
}
.sdf-calc { margin-top: 24px; background: var(--cream); padding: 28px; border-radius: 8px; border: 1px solid var(--border); }
.calc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; transition: all .3s;
}
.calc-row:hover { background: rgba(200,134,26,.05); margin: 0 -8px; padding: 12px 8px; border-radius: 4px; }
.calc-row:last-child { border: none; font-weight: 600; background: var(--saffron-light); margin: 8px -8px 0; padding: 14px 8px; border-radius: 6px; }
.calc-label { color: var(--text-light); }
.calc-val { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--text-dark); }
.calc-row:last-child .calc-val { color: var(--saffron); font-size: 26px; }
.sdf-right {
  background: linear-gradient(135deg, var(--forest) 0%, #1F3520 100%);
  border-radius: 8px; padding: 36px; color: var(--cream);
}
.sdf-right h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; margin-bottom: 22px; color: var(--cream); line-height: 1.25; }
.sdf-point { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; color: rgba(250,247,240,.82); line-height: 1.65; transition: transform .3s; }
.sdf-point:hover { transform: translateX(5px); }
.sdf-check { color: var(--gold); flex-shrink: 0; font-size: 16px; }
.sdf-note { font-size: 12px; color: rgba(250,247,240,.45); margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(250,247,240,.1); font-style: italic; line-height: 1.6; }
.sdf-alert { background: rgba(212,168,67,.12); border: 1px solid rgba(212,168,67,.3); border-radius: 4px; padding: 14px 16px; margin-top: 18px; font-size: 12px; color: var(--gold); line-height: 1.65; }

/* ============================================================
   URGENCY BAND
   ============================================================ */
.urgency-band {
  background: linear-gradient(90deg, var(--crimson) 0%, #6B1212 100%);
  padding: 36px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.urgency-band::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { left: -100%; } 100% { left: 100%; } }
.urgency-left { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.urgency-icon { font-size: 32px; animation: tick 1s ease infinite; }
@keyframes tick { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.urgency-text { font-size: 15px; color: var(--cream); line-height: 1.6; }
.urgency-text strong { font-weight: 600; display: block; font-size: 17px; margin-bottom: 4px; }
.urgency-right { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-urg-white {
  background: var(--cream); color: var(--crimson);
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  padding: 13px 26px; border: none; cursor: pointer;
  letter-spacing: .07em; text-transform: uppercase; border-radius: 4px;
  transition: all .3s; box-shadow: 0 4px 14px rgba(0,0,0,.2);
  display: inline-block;
}
.btn-urg-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn-urg-ghost {
  background: transparent; color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 12px;
  padding: 13px 26px; border: 1px solid rgba(250,247,240,.35); cursor: pointer;
  letter-spacing: .07em; text-transform: uppercase; border-radius: 4px; transition: all .3s;
}
.btn-urg-ghost:hover { background: rgba(250,247,240,.1); border-color: var(--cream); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  padding: 32px; border-radius: 8px; transition: all .4s; position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 16px; right: 24px;
  font-family: 'Cormorant Garamond', serif; font-size: 72px;
  color: var(--saffron-light); line-height: 1; opacity: .6;
}
.testi-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px var(--shadow); border-color: var(--saffron-light); }
.stars { color: var(--saffron); font-size: 15px; margin-bottom: 18px; letter-spacing: 3px; }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--text-dark); line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--saffron) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; color: var(--crimson); flex-shrink: 0; transition: transform .3s;
}
.testi-card:hover .testi-avatar { transform: scale(1.1); }
.testi-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.testi-loc { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ============================================================
   PLANNER / CONTACT FORM
   ============================================================ */
.planner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: 1200px; margin: 0 auto; }
.planner-features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.planner-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-light); line-height: 1.6; transition: transform .3s; }
.planner-feature:hover { transform: translateX(8px); color: var(--text-dark); }
.planner-feature .check { color: var(--saffron); font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.planner-form {
  background: var(--cream); border: 2px solid var(--border); border-radius: 12px;
  padding: 40px; box-shadow: 0 16px 52px var(--shadow); transition: transform .3s, border-color .3s;
}
.planner-form:hover { transform: translateY(-4px); border-color: var(--saffron-light); }
.planner-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--text-dark); margin-bottom: 6px; }
.planner-form > p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { margin-bottom: 18px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; display: block; }
.form-input, .form-select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border);
  border-radius: 6px; background: #fff; font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--text-dark); outline: none; transition: all .3s;
  appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(200,134,26,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-form {
  width: 100%; background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 100%);
  color: var(--cream); font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  padding: 15px; border: none; cursor: pointer; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 6px; margin-top: 10px; transition: all .3s;
}
.btn-form:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,134,26,.4); }
.risk-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 14px; font-style: italic; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  border-bottom: 2px solid var(--border); padding-bottom: 28px;
  cursor: pointer; transition: all .3s; position: relative;
  text-decoration: none; color: inherit; display: block;
}
.blog-card::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--saffron); transition: width .3s;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card:hover::after { width: 100%; }
.blog-img-wrap { width: 100%; height: 200px; overflow: hidden; border-radius: 6px; margin-bottom: 18px; background: var(--border); }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-category {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--saffron); background: var(--saffron-light);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 12px; transition: all .3s;
}
.blog-card:hover .blog-category { background: var(--saffron); color: var(--cream); }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; transition: color .3s; }
.blog-card:hover .blog-title { color: var(--crimson); }
.blog-excerpt { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.blog-read { font-size: 12px; color: var(--saffron); letter-spacing: .05em; font-weight: 600; display: flex; align-items: center; gap: 7px; transition: gap .3s; }
.blog-card:hover .blog-read { gap: 11px; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.hp-gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.hp-gallery-grid > div {
  border-radius: 10px; overflow: hidden; background: #fff;
  box-shadow: 0 4px 20px rgba(26,20,16,.07); transition: transform .4s, box-shadow .4s;
}
.hp-gallery-grid > div:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,20,16,.14); }
.hp-gallery-grid > div:hover img { transform: scale(1.13) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(135deg, #1A1410 0%, #0F0C0A 100%);
  padding: 72px 40px 36px; position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  color: var(--cream); letter-spacing: .02em;
  display: block; margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--saffron); }
.footer-top > div > p { font-size: 14px; color: #FAF7F0; line-height: 1.8; margin-bottom: 22px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: rgba(250,247,240,.6);
  margin-bottom: 10px; line-height: 1.5; cursor: pointer; transition: all .3s;
}
.footer-contact-item:hover { color: var(--gold); transform: translateX(4px); }
.footer-contact-item a { color: rgba(250,247,240,.6); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250,247,240,.08); border: 1px solid rgba(250,247,240,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: all .3s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link.fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-3px); }
.social-link.ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #dc2743; transform: translateY(-3px); }
.social-link.wa:hover { background: #25D366; border-color: #25D366; transform: translateY(-3px); }
.social-link.em:hover { background: var(--saffron); border-color: var(--saffron); transform: translateY(-3px); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,247,240,.3); margin-bottom: 20px; }
.footer-col a {
  display: block; font-size: 13px; color: rgba(250,247,240,.55);
  margin-bottom: 12px; transition: all .3s; position: relative; padding-left: 0;
}
.footer-col a::before { content: '→'; position: absolute; left: -18px; opacity: 0; transition: all .3s; color: var(--saffron); }
.footer-col a:hover { color: var(--gold); padding-left: 18px; }
.footer-col a:hover::before { left: 0; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250,247,240,.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(250,247,240,.32);
  max-width: 1200px; margin: 0 auto;
}
.license-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,26,.1); border: 1px solid rgba(200,134,26,.25);
  padding: 7px 14px; border-radius: 4px; font-size: 11px;
  color: var(--gold); letter-spacing: .06em; transition: all .3s;
}
.license-badge:hover { background: rgba(200,134,26,.2); }
.footer-bottom-links a { color: rgba(250,247,240,.3); margin-left: 14px; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(250,247,240,.6); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600;
  padding: 14px 26px; border-radius: 50px; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 10px; letter-spacing: .03em;
  box-shadow: 0 6px 28px rgba(37,211,102,.4); transition: all .3s; z-index: 1000;
  animation: floatIn .5s ease both; text-decoration: none;
}
@keyframes floatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.wa-float:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 12px 40px rgba(37,211,102,.5); }
.wa-dot { width: 9px; height: 9px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }

/* ============================================================
   TOAST
   ============================================================ */
#toast, .custom-toast {
  position: fixed; bottom: 90px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-dark); color: var(--cream);
  padding: 14px 28px; border-radius: 8px; font-size: 14px;
  z-index: 9999; opacity: 0; transition: all .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,.3); white-space: nowrap;
  font-family: 'Jost', sans-serif;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-reveal] { opacity: 0; transition: opacity .75s cubic-bezier(.2,0,.2,1), transform .75s cubic-bezier(.2,0,.2,1); }
[data-reveal="up"] { transform: translateY(48px); }
[data-reveal="left"] { transform: translateX(-52px); }
[data-reveal="right"] { transform: translateX(52px); }
[data-reveal="scale"] { transform: scale(.86); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.story-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; margin-top: 56px; }
.founder-card { background: linear-gradient(135deg, var(--forest) 0%, #1A2E1C 100%); border-radius: 16px; overflow: hidden; position: relative; }
.founder-photo { width: 100%; height: 320px; object-fit: cover; object-position: center top; display: block; }
.founder-info { padding: 28px 32px; position: relative; z-index: 1; }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.founder-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.founder-location { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(250,247,240,.6); margin-bottom: 20px; }
.founder-since { background: rgba(200,134,26,.15); border: 1px solid rgba(200,134,26,.3); border-radius: 8px; padding: 14px 20px; margin-bottom: 20px; }
.founder-since-label { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,247,240,.4); margin-bottom: 4px; }
.founder-since-val { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--gold); line-height: 1; }
.founder-since-sub { font-size: 11px; color: rgba(250,247,240,.4); margin-top: 3px; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-stat { background: rgba(250,247,240,.05); border: 1px solid rgba(250,247,240,.1); border-radius: 8px; padding: 14px; text-align: center; transition: all .3s; }
.mini-stat:hover { background: rgba(212,168,67,.08); border-color: rgba(212,168,67,.25); transform: translateY(-3px); }
.mini-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.mini-stat-label { font-size: 10px; color: rgba(250,247,240,.45); letter-spacing: .07em; text-transform: uppercase; }
.story-right p { font-size: 15px; color: var(--text-light); line-height: 1.95; margin-bottom: 20px; }
.story-right p strong { color: var(--text-dark); font-weight: 600; }
.story-right p.lead { font-size: 17px; color: var(--text-mid); line-height: 1.9; font-weight: 400; }
.pull-quote { background: var(--saffron-light); border-left: 4px solid var(--saffron); padding: 22px 28px; border-radius: 0 10px 10px 0; margin: 32px 0; position: relative; }
.pull-quote::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 80px; color: var(--saffron); opacity: .25; position: absolute; top: -10px; left: 16px; line-height: 1; }
.pull-quote p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; color: var(--text-dark); line-height: 1.7; position: relative; z-index: 1; margin-bottom: 12px; }
.pull-quote cite { font-style: normal; font-size: 11px; font-family: 'Jost', sans-serif; color: var(--text-light); letter-spacing: .09em; text-transform: uppercase; }
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.promise-card { background: rgba(250,247,240,.04); border: 1px solid rgba(250,247,240,.1); border-radius: 8px; padding: 32px 26px; transition: all .4s; position: relative; overflow: hidden; }
.promise-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); transition: width .4s; }
.promise-card:hover { background: rgba(250,247,240,.07); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.promise-card:hover::before { width: 100%; }
.promise-icon { font-size: 28px; margin-bottom: 16px; display: block; transition: transform .3s; }
.promise-card:hover .promise-icon { transform: scale(1.15) rotate(5deg); }
.promise-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--cream); margin-bottom: 10px; }
.promise-card p { font-size: 13px; color: rgba(250,247,240,.55); line-height: 1.8; }
.promise-tag { display: inline-block; font-size: 10px; font-weight: 600; background: rgba(200,134,26,.15); color: var(--gold); padding: 5px 12px; border-radius: 20px; margin-top: 14px; letter-spacing: .05em; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.value-card { background: #fff; border: 1px solid var(--border); padding: 34px 28px; border-radius: 4px; position: relative; overflow: hidden; transition: all .4s; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--saffron); transition: height .4s; }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 20px 40px var(--shadow); }
.value-card:hover::before { height: 100%; }
.value-icon { font-size: 28px; margin-bottom: 16px; display: block; transition: transform .3s; }
.value-card:hover .value-icon { transform: scale(1.15) rotate(4deg); }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--text-dark); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.value-tag { display: inline-block; font-size: 10px; font-weight: 600; background: var(--saffron-light); color: var(--crimson); padding: 5px 12px; border-radius: 20px; margin-top: 14px; letter-spacing: .04em; transition: all .3s; }
.value-card:hover .value-tag { background: var(--saffron); color: var(--cream); }
.milestones-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; position: relative; }
.milestones-row::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 1px; background: var(--border); }
.milestone { text-align: center; padding: 0 16px; position: relative; }
.milestone-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--saffron); border: 3px solid var(--cream); box-shadow: 0 0 0 3px var(--saffron-light); margin: 0 auto 20px; position: relative; z-index: 1; transition: transform .3s; }
.milestone:hover .milestone-dot { transform: scale(1.3); }
.milestone-year { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; color: var(--saffron); line-height: 1; margin-bottom: 8px; }
.milestone-event { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.milestone-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; }
.stats-band { background: var(--crimson); padding: 60px 40px; }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stats-inner .stat-item { padding: 0 24px; }
.stats-inner .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 500; color: var(--cream); line-height: 1; margin-bottom: 8px; }
.stats-inner .stat-label { font-size: 11px; color: rgba(250,247,240,.6); letter-spacing: .08em; text-transform: uppercase; }
.moments-section { background: var(--cream); padding: 90px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.moments-masonry { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.moment-card { position: relative; border-radius: 10px; overflow: hidden; background: #1A1410; }
.moment-img-wrap { width: 100%; height: 240px; overflow: hidden; }
.moment-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transform: scale(1.08); transition: transform .6s ease; }
.moment-card:hover .moment-img-wrap img { transform: scale(1.14); }
.moment-caption { padding: 14px 16px 16px; background: #fff; border: 1px solid var(--border); border-top: none; border-radius: 0 0 10px 10px; }
.moment-caption h4 { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 3px; }
.moment-caption p { font-size: 12px; color: var(--text-light); }
.voice-section { position: relative; padding: 90px 40px; text-align: center; overflow: hidden; }
.voice-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.2); }
.voice-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,74,46,.92) 0%, rgba(26,20,16,.88) 100%); }
.voice-inner { position: relative; z-index: 1; }
.voice-section .section-label { color: var(--gold); justify-content: center; }
.voice-section .section-label::before { background: var(--gold); }
.voice-section .section-title { color: var(--cream); max-width: 700px; margin: 0 auto 14px; }
.voice-section .section-body { color: rgba(250,247,240,.55); text-align: center; margin: 0 auto 52px; }
.voices-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.voice-card { background: rgba(250,247,240,.06); border: 1px solid rgba(250,247,240,.14); border-radius: 10px; padding: 30px 26px; text-align: left; transition: all .4s; position: relative; }
.voice-card::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 64px; color: var(--gold); opacity: .2; position: absolute; top: 12px; right: 20px; line-height: 1; }
.voice-card:hover { background: rgba(250,247,240,.1); transform: translateY(-6px); border-color: rgba(212,168,67,.3); }
.voice-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.voice-text { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-style: italic; color: rgba(250,247,240,.9); line-height: 1.75; margin-bottom: 20px; position: relative; z-index: 1; }
.voice-author { display: flex; align-items: center; gap: 12px; }
.voice-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron-light), var(--saffron)); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--crimson); flex-shrink: 0; font-family: 'Cormorant Garamond', serif; }
.voice-name { font-size: 13px; font-weight: 600; color: var(--cream); }
.voice-loc { font-size: 11px; color: rgba(250,247,240,.4); margin-top: 2px; }
.fear-band { background: var(--text-dark); padding: 60px 40px; text-align: center; }
.fear-inner { max-width: 860px; margin: 0 auto; }
.fear-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3vw,2.5rem); font-weight: 500; color: var(--cream); line-height: 1.4; margin-bottom: 18px; }
.fear-inner h2 em { color: var(--gold); font-style: italic; }
.fear-inner p { font-size: 15px; color: rgba(250,247,240,.6); max-width: 640px; margin: 0 auto 32px; line-height: 1.9; }
.fear-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.fear-pill { background: rgba(200,134,26,.1); border: 1px solid rgba(200,134,26,.25); padding: 10px 20px; border-radius: 30px; font-size: 13px; color: rgba(250,247,240,.7); letter-spacing: .03em; transition: all .3s; cursor: default; }
.fear-pill:hover { background: rgba(200,134,26,.2); color: var(--gold); transform: translateY(-2px); }
.spiritual-band { position: relative; padding: 80px 40px; text-align: center; overflow: hidden; }
.spiritual-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.25); }
.spiritual-overlay { position: absolute; inset: 0; background: rgba(26,20,16,.6); }
.spiritual-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.spiritual-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 500; color: var(--cream); line-height: 1.2; margin-bottom: 16px; }
.spiritual-inner h2 em { color: var(--gold); font-style: italic; }
.spiritual-inner p { font-size: 15px; color: rgba(250,247,240,.72); line-height: 1.9; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.photo-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.strip-photo { position: relative; overflow: hidden; height: 260px; cursor: pointer; }
.strip-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.strip-photo:hover img { transform: scale(1.08); }
.strip-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,.7) 0%, transparent 60%); opacity: 0; transition: opacity .3s; }
.strip-photo:hover .strip-photo-overlay { opacity: 1; }
.strip-photo-label { position: absolute; bottom: 16px; left: 16px; font-size: 12px; font-weight: 600; color: var(--cream); letter-spacing: .06em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: all .3s; }
.strip-photo:hover .strip-photo-label { opacity: 1; transform: translateY(0); }
.promise-section { background: var(--text-dark); padding: 90px 40px; }
.promise-section .section-label { color: var(--gold); }
.promise-section .section-label::before { background: var(--gold); }
.promise-section .section-title { color: var(--cream); }
.promise-section .section-body { color: rgba(250,247,240,.6); }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-section { padding: 90px 40px; background: var(--cream); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.mantosh-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; margin-bottom: 28px; transition: all .3s; }
.mantosh-card:hover { border-color: var(--saffron); transform: translateX(4px); }
.mantosh-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--saffron-light); flex-shrink: 0; }
.mantosh-info { flex: 1; }
.mantosh-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.mantosh-role { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--saffron); margin-bottom: 6px; }
.mantosh-note { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.mantosh-wa { display: inline-flex; align-items: center; gap: 7px; background: #25D366; color: #fff; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 20px; transition: all .2s; margin-top: 8px; }
.mantosh-wa:hover { background: #1BA851; transform: translateY(-1px); }
.mantosh-wa svg { width: 14px; height: 14px; fill: #fff; }
.info-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.info-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; transition: all .3s; cursor: pointer; }
.info-card:hover { border-color: var(--saffron); transform: translateX(5px); box-shadow: 0 4px 16px var(--shadow); }
.info-card-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--saffron-light); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-card-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.info-card-value { font-size: 14px; font-weight: 500; color: var(--text-dark); line-height: 1.4; }
.info-card-hint { font-size: 12px; color: var(--text-light); margin-top: 1px; }
.hours-card { background: var(--text-dark); border-radius: 12px; padding: 22px 26px; }
.hours-title { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid rgba(250,247,240,.07); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 13px; color: rgba(250,247,240,.55); }
.hours-time { font-size: 13px; color: rgba(250,247,240,.85); font-weight: 500; }
.open-badge { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.3); color: #25D366; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; }
.form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 42px 46px; position: relative; overflow: hidden; }
.form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron)); }
.form-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }
.form-subheading { font-size: 13px; color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.fgroup { margin-bottom: 20px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.frow .fgroup { margin-bottom: 0; }
.flabel { display: block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.flabel .req { color: var(--saffron); }
.finput, .fselect, .ftextarea {
  width: 100%; background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px; font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--text-dark); transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none; -webkit-appearance: none;
}
.finput:focus, .fselect:focus, .ftextarea:focus { border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(200,134,26,.12); }
.finput::placeholder, .ftextarea::placeholder { color: var(--text-light); }
.fselect { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C7B6B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; background-color: var(--cream); }
.ftextarea { resize: vertical; min-height: 90px; }
.fdivider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.fsection-title { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.duration-badge { background: linear-gradient(135deg, var(--saffron-light) 0%, #f0d8a0 100%); border: 1px solid rgba(200,134,26,.3); padding: 12px 18px; border-radius: 10px; text-align: center; margin-top: 8px; margin-bottom: 4px; }
.duration-badge span { font-size: 13px; color: var(--crimson); }
.duration-badge strong { font-size: 20px; font-weight: 600; color: var(--crimson); margin: 0 5px; }
.wa-alt { display: flex; align-items: center; gap: 12px; background: #F0FEF4; border: 1px solid #B7F0CE; border-radius: 8px; padding: 14px 18px; margin: 18px 0; }
.wa-alt-icon { width: 34px; height: 34px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-alt-icon svg { width: 17px; height: 17px; fill: #fff; }
.wa-alt-text { font-size: 13px; color: #155C29; line-height: 1.5; }
.wa-alt-text a { color: #0F7A35; font-weight: 600; }
.wa-alt-text a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  color: #fff; border: none; padding: 17px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; display: flex; align-items: center;
  justify-content: center; gap: 10px; font-family: 'Jost', sans-serif;
  position: relative; overflow: hidden;
}
.btn-submit::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent); transition: left .5s; }
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,134,26,.4); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-note { text-align: center; margin-top: 12px; font-size: 12px; color: var(--text-light); font-style: italic; }
.map-section { padding: 0 40px 80px; background: var(--cream); }
.map-inner { max-width: 1200px; margin: 0 auto; }
.map-frame { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 380px; border: none; display: block; }
.map-details { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }
.map-detail { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 18px; transition: all .3s; }
.map-detail:hover { border-color: var(--saffron); transform: translateY(-3px); }
.map-detail-icon { font-size: 20px; margin-bottom: 8px; }
.map-detail-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
.map-detail-val { font-size: 13px; color: var(--text-dark); font-weight: 500; line-height: 1.6; }
.faq-section { background: var(--text-dark); padding: 80px 40px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-section .section-label { color: var(--gold); }
.faq-section .section-label::before { background: var(--gold); }
.faq-section .section-title { color: var(--cream); }
.faq-section .section-title em { color: var(--gold); }
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid rgba(250,247,240,.08); }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; gap: 16px; font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 500; color: rgba(250,247,240,.82); letter-spacing: .01em; transition: color .2s; }
.faq-q:hover, .faq-q.open { color: var(--gold); }
.faq-arrow { width: 20px; height: 20px; border: 1px solid rgba(250,247,240,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; }
.faq-q.open .faq-arrow { background: var(--saffron); border-color: var(--saffron); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-a.open { max-height: 280px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; color: rgba(250,247,240,.52); line-height: 1.9; }
.cta-band { background: var(--saffron-light); border-top: 1px solid var(--border); padding: 70px 40px; text-align: center; }
.cta-band-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 500; color: var(--text-dark); line-height: 1.2; margin-bottom: 14px; }
.cta-band-title em { color: var(--saffron); font-style: italic; }
.cta-band-sub { font-size: 15px; color: var(--text-mid); margin-bottom: 34px; line-height: 1.9; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Journey section */
.journey-section { background: var(--cream); padding: 90px 40px; border-top: 1px solid var(--border); }
.journey-inner { max-width: 960px; margin: 0 auto; }
.journey-inner .section-label { justify-content: center; }
.journey-inner .section-title { text-align: center; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 40px; }
.error-404-page h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem,12vw,10rem); color: var(--saffron-light); line-height: 1; margin-bottom: 20px; }
.error-404-page h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem,3vw,2.5rem); color: var(--text-dark); margin-bottom: 16px; }
.error-404-page p { font-size: 16px; color: var(--text-light); max-width: 500px; margin: 0 auto 36px; line-height: 1.8; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid, .pkg-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .sdf-box { grid-template-columns: 1fr; gap: 36px; }
  .planner-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .story-wrap { grid-template-columns: 1fr; gap: 48px; }
  .promise-grid, .values-grid, .voices-grid { grid-template-columns: repeat(2,1fr); }
  .photo-strip { grid-template-columns: repeat(2,1fr); }
  .moments-masonry { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .milestones-row { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .milestones-row::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .map-details { grid-template-columns: 1fr; }
  .hp-gallery-grid { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-content { padding: 80px 20px 60px; }
  .hero h1 { font-size: 2.2rem; line-height: 1.1; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding-top: 28px; }
  .stat-item { flex: 1 1 45%; padding-right: 0; text-align: center; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-num { font-size: 30px; }
  .trust-bar { padding: 12px 20px; gap: 12px; }
  .trust-item { font-size: 10px; flex: 1 1 45%; text-align: center; }
  .trust-sep { display: none; }
  .section, .contact-section, .moments-section, .faq-section, .cta-band { padding: 60px 20px; }
  .section-title { font-size: 1.8rem; }
  .why-grid, .pkg-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .pkg-card.featured { transform: none; }
  .emotion-band { padding: 60px 20px; }
  .sdf-box { padding: 28px 20px; }
  .calc-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .urgency-band { flex-direction: column; text-align: center; padding: 28px 20px; gap: 18px; }
  .urgency-left { flex-direction: column; gap: 12px; }
  .urgency-right { width: 100%; flex-direction: column; }
  .btn-urg-white, .btn-urg-ghost { width: 100%; text-align: center; }
  .planner-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer-contact-item { justify-content: flex-start; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: left; gap: 12px; }
  .footer-bottom-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
  .footer-bottom-links a { margin-left: 0; }
  .wa-float { padding: 0; width: 54px; height: 54px; border-radius: 50%; font-size: 0; gap: 0; justify-content: center; bottom: 20px; right: 20px; }
  .wa-dot { display: none; }
  .packages-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .page-hero-content { padding: 80px 20px 60px; }
  .hero-trust-row { gap: 14px; }
  .form-wrap { padding: 28px 22px; }
  .frow { grid-template-columns: 1fr; }
  .map-section { padding: 0 20px 60px; }
  .moments-masonry { grid-template-columns: repeat(2,1fr); }
  .promise-grid, .values-grid, .voices-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2,1fr); }
  .milestones-row, .stats-inner { grid-template-columns: 1fr 1fr; }
  .hp-gallery-grid { grid-template-columns: repeat(2,1fr); }
  footer { padding: 52px 20px 28px; }
  .footer-col a::before { display: none; }
  .footer-col a:hover { padding-left: 0; }
}
/* ============================================================
   BLOG / ARCHIVE STYLES
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.blog-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px var(--shadow); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.blog-img-wrap { display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text-light); margin-bottom: 10px; }
.blog-cat { background: var(--saffron-light); color: var(--saffron); padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.blog-title { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; margin-bottom: 10px; line-height: 1.35; }
.blog-title a { color: var(--text-dark); text-decoration: none; }
.blog-title a:hover { color: var(--saffron); }
.blog-excerpt { font-size: .9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: .88rem; font-weight: 600; color: var(--saffron); text-decoration: none; }
.blog-read-more:hover { color: var(--crimson); }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; margin: 0 4px; background: #fff; border: 1px solid var(--border); color: var(--text-mid); text-decoration: none; font-size: .9rem; transition: all .2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

/* ============================================================
   SINGLE POST STYLES
   ============================================================ */
.single-post-content { line-height: 1.8; color: var(--text-dark); }
.single-post-content h2 { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; margin: 36px 0 16px; color: var(--crimson); }
.single-post-content h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; margin: 28px 0 12px; }
.single-post-content p { margin-bottom: 18px; }
.single-post-content img { max-width: 100%; border-radius: 12px; margin: 24px 0; }
.single-post-content ul, .single-post-content ol { padding-left: 24px; margin-bottom: 18px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote { border-left: 4px solid var(--saffron); padding: 16px 24px; background: var(--saffron-light); border-radius: 0 12px 12px 0; margin: 28px 0; font-style: italic; font-family: 'Cormorant Garamond',serif; font-size: 1.2rem; }
.post-nav-link { display: flex; flex-direction: column; gap: 6px; padding: 20px; background: #fff; border-radius: 12px; text-decoration: none; border: 1px solid var(--border); transition: all .2s; }
.post-nav-link:hover { border-color: var(--saffron); box-shadow: 0 4px 16px var(--shadow); }
.post-nav-label { font-size: .8rem; color: var(--text-light); }
.post-nav-title { font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--text-dark); }

/* ============================================================
   PACKAGE GRID (packages listing page)
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pkg-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 4px 24px var(--shadow); transition: transform .3s, box-shadow .3s; position: relative; }
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,.12); }
.pkg-card.featured { border: 2px solid var(--saffron); }
.pkg-featured-badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: var(--saffron); color: #fff; font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: .04em; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,.5) 0%, transparent 60%); }
.pkg-category-badge { position: absolute; bottom: 12px; left: 12px; right: auto; background: rgba(26,20,16,.72); backdrop-filter: blur(8px); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .07em; text-transform: uppercase; }
.pkg-body { padding: 22px; }
.pkg-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: .82rem; color: var(--text-mid); }
.pkg-price { font-weight: 700; color: var(--saffron); font-size: .9rem; }
.pkg-name { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.pkg-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.pkg-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.pkg-tag { background: var(--cream); border: 1px solid var(--border); font-size: .75rem; padding: 3px 10px; border-radius: 20px; color: var(--text-mid); }
.pkg-footer { display: flex; gap: 10px; }
.btn-pkg-main { flex: 1; text-align: center; background: var(--saffron); color: #fff; padding: 11px 16px; border-radius: 8px; font-size: .88rem; font-weight: 600; text-decoration: none; transition: background .2s; }
.btn-pkg-main:hover { background: var(--crimson); }
.btn-pkg-ghost { flex: 1; text-align: center; border: 1.5px solid var(--saffron); color: var(--saffron); padding: 11px 16px; border-radius: 8px; font-size: .88rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-pkg-ghost:hover { background: var(--saffron); color: #fff; }

/* ============================================================
   FAQ PAGE CATEGORY STYLES
   ============================================================ */
.faq-category { margin-bottom: 44px; }
.faq-cat-label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--saffron-light); }

/* ============================================================
   PRIVACY / TERMS PAGE
   ============================================================ */
.privacy-doc { }
.privacy-block { margin-bottom: 36px; }
.privacy-block h2 { font-family: 'Cormorant Garamond',serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--crimson); margin-bottom: 6px; }
.privacy-block h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.4rem; margin-bottom: 12px; color: var(--text-dark); }
.privacy-block h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.privacy-block p { font-size: .95rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 12px; }
.privacy-block ul { padding-left: 20px; margin-bottom: 14px; }
.privacy-block li { font-size: .95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 6px; }
.privacy-block a { color: var(--saffron); }
.privacy-update { font-size: .85rem; color: var(--text-light); margin-bottom: 16px !important; }

/* ============================================================
   SINGLE PACKAGE SIDEBAR
   ============================================================ */
.pkg-highlights { }
.highlights-list { display: flex; flex-direction: column; gap: 10px; }
.highlight-item { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.highlight-tick { color: var(--forest); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   404 PAGE
   ============================================================ */

@media (max-width: 1024px) {
  .blog-grid, .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .section-inner[style*="grid-template-columns:1fr 340px"] { display: block !important; }
  .pkg-sidebar { position: static !important; margin-top: 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .stat-item { flex: 1 1 100%; }
  .hp-gallery-grid { grid-template-columns: 1fr; }
  .moments-masonry { grid-template-columns: 1fr; }
  .blog-grid, .pkg-grid { grid-template-columns: 1fr; }
  .post-nav-link { display: grid; grid-template-columns: 1fr; }
  .single-post-nav { grid-template-columns: 1fr !important; }
  .wa-float::after {
    content: ''; width: 26px; height: 26px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347zM12 0C5.373 0 0 5.373 0 12c0 2.125.555 4.122 1.528 5.852L.057 24l6.305-1.654A11.882 11.882 0 0012 24c6.627 0 12-5.373 12-12S18.627 0 12 0zm0 22c-1.89 0-3.655-.52-5.164-1.427l-.37-.22-3.44.902.918-3.358-.24-.385A9.953 9.953 0 012 12C2 6.477 6.477 2 12 2s10 4.477 10 10-4.477 10-10 10z'/%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat; background-position: center; display: block;
  }
}
