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

:root {
  --navy: #0f1e35;
  --navy-mid: #1a3050;
  --teal: #1e7a6e;
  --teal-light: #26a08f;
  --teal-pale: rgba(30,122,110,0.07);
  --gold: #c8a96e;
  --gold-light: #dfc08d;
  --cream: #f7f4ef;
  --warm-white: #fdfbf8;
  --text-dark: #141414;
  --text-mid: #3d4a5c;
  --text-light: #6b7a8d;
  --border: rgba(15,30,53,0.11);
  --border-light: rgba(15,30,53,0.06);
  --shadow-sm: 0 2px 16px rgba(15,30,53,0.07);
  --shadow-md: 0 8px 40px rgba(15,30,53,0.10);
  --shadow-lg: 0 20px 60px rgba(15,30,53,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(253,251,248,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s, border-color 0.3s;
}
nav.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.nav-logo { display: flex; flex-direction: column; }
.nav-logo a { text-decoration: none; display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.1;
}
.nav-logo-main span { color: var(--teal); }
.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}

.nav-links li a, .nav-links li button {
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  display: block;
}
.nav-links li a:hover,
.nav-links li button:hover { color: var(--teal); background: var(--teal-pale); }
.nav-links li a.current-menu-item,
.nav-links li a.current_page_item { color: var(--teal); }

.nav-cta-wrap { margin-left: 1rem; }
.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
  border: none !important;
}
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); transition: all 0.3s;
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════ */
.site-content { padding-top: 70px; }
.section-pad { padding: 6rem 4rem; }
.section-pad-sm { padding: 4rem 4rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--teal);
}

.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.section-h2 em { font-style: italic; color: var(--teal); font-weight: 300; }

.section-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 580px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 0.85rem 2rem;
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15,30,53,0.2);
  color: #fff;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--navy);
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.22s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: gap 0.2s, opacity 0.2s;
  cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost-link:hover { gap: 0.7rem; opacity: 0.75; color: var(--teal); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: var(--teal);
  padding: 0.85rem 2rem;
  border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.22s;
  cursor: pointer;
}
.btn-white:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15,30,53,0.25);
}

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 4rem;
  position: relative;
}

.hero-eyebrow { opacity: 0; animation: fadeUp 0.8s 0.15s forwards; }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.45s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 1.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}

.hero-trust {
  margin-top: 3.5rem;
  display: flex; align-items: center; gap: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.75s forwards;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}
.trust-divider { width: 1px; height: 36px; background: var(--border); }

.hero-right {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 60% 30%, rgba(30,122,110,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(200,169,110,0.10) 0%, transparent 50%),
    linear-gradient(145deg, #0f1e35 0%, #162d4a 60%, #0f1e35 100%);
}

.hero-right-content {
  position: relative; z-index: 2;
  padding: 4rem 3.5rem;
  width: 100%;
}

.hero-pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-pull-quote span { color: var(--gold); font-style: normal; }

.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.04);
  opacity: 0; animation: fadeIn 1s 0.8s forwards;
}

.hero-stat {
  background: rgba(255,255,255,0.03);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.hero-stat:hover { background: rgba(255,255,255,0.06); }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-l {
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.hero-location-tag {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0; animation: fadeIn 1s 1s forwards;
}
.location-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
  animation: pulse-dot 2s infinite;
}

/* MDT Teaser */
.mdt-teaser { background: var(--cream); }

.mdt-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mdt-teaser-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}

.pill {
  padding: 0.45rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 400;
  transition: all 0.2s;
  cursor: default;
}
.pill:hover { border-color: var(--teal); color: var(--teal); background: rgba(30,122,110,0.04); }

.mdt-teaser-right { display: flex; flex-direction: column; gap: 1.5rem; }

.mdt-mini-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.22s;
}
.mdt-mini-card:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.mdt-mini-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--teal-pale);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.mdt-mini-icon svg { width: 18px; height: 18px; stroke: var(--teal); stroke-width: 1.5; fill: none; }
.mdt-mini-card h4 { font-size: 0.92rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.mdt-mini-card p { font-size: 0.84rem; line-height: 1.65; color: var(--text-mid); font-weight: 300; }

/* Reviews */
.reviews-section { background: var(--warm-white); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
  background: var(--cream);
  padding: 2.2rem;
  border-radius: 2px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid transparent;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.star { color: var(--gold); font-size: 0.9rem; }
.review-text {
  line-height: 1.8;
  color: var(--text-mid);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.review-author strong { display: block; font-size: 0.8rem; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; }
.review-author span { font-size: 0.75rem; color: var(--text-light); font-weight: 300; }
.review-quote-mark {
  position: absolute; top: 1.2rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; color: var(--gold); opacity: 0.2; line-height: 1;
}

/* Home CTA Banner */
.home-cta-banner {
  background: var(--navy);
  padding: 4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem;
  position: relative; overflow: hidden;
}
.home-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30,122,110,0.12), transparent);
}
.home-cta-banner-text { position: relative; z-index: 1; }
.home-cta-banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.3; margin-bottom: 0.5rem;
}
.home-cta-banner-text h3 span { color: var(--gold); }
.home-cta-banner-text p { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 300; }
.home-cta-banner-actions { position: relative; z-index: 1; display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }

/* ═══════════════════════════════════════
   OUR APPROACH PAGE
═══════════════════════════════════════ */
.approach-hero {
  background: var(--navy);
  padding: 8rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.approach-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,122,110,0.14), transparent),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,169,110,0.07), transparent);
}
.approach-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.approach-hero .eyebrow { color: var(--gold); }
.approach-hero .eyebrow::before { background: var(--gold); }
.approach-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 1.5rem;
}
.approach-hero h1 em { font-style: italic; color: var(--teal-light); }
.approach-hero p { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.6); font-weight: 300; max-width: 560px; }

.mdt-full { background: var(--warm-white); }
.mdt-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 5rem; }

.mdt-big-quote { background: var(--navy); padding: 3rem; position: relative; overflow: hidden; }
.mdt-big-quote::before {
  content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 16rem;
  color: rgba(200,169,110,0.06); position: absolute; top: -3rem; left: 0.5rem;
  line-height: 1; pointer-events: none;
}
.mdt-big-quote blockquote {
  position: relative; z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 1.2rem;
}
.mdt-big-quote blockquote span { color: var(--gold); }
.mdt-big-quote cite { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-style: normal; }

.mdt-steps-full { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.mdt-step-full { display: flex; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.step-num-full { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: rgba(30,122,110,0.3); line-height: 1; min-width: 3rem; padding-top: 0.2rem; }
.mdt-step-full h3 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.mdt-step-full p { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

.conditions-section { background: var(--cream); padding: 5rem 4rem; }
.conditions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 3rem; }
.condition-item { background: var(--cream); padding: 1.5rem; transition: background 0.2s; display: flex; align-items: center; gap: 0.8rem; }
.condition-item:hover { background: var(--warm-white); }
.condition-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.condition-item span { font-size: 0.87rem; color: var(--text-mid); font-weight: 300; }

.why-mdt-section { background: var(--warm-white); padding: 5rem 4rem; }
.why-mdt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-mdt-card { padding: 2rem; border: 1px solid var(--border); border-radius: 2px; transition: all 0.22s; position: relative; overflow: hidden; }
.why-mdt-card::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform 0.3s; }
.why-mdt-card:hover { border-color: rgba(30,122,110,0.3); box-shadow: var(--shadow-sm); }
.why-mdt-card:hover::after { transform: scaleY(1); }
.why-mdt-card h3 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.7rem; }
.why-mdt-card h3::before { content: '✓'; color: var(--teal); font-size: 0.85rem; font-weight: 500; }
.why-mdt-card p { font-size: 0.86rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

.comparison-section { background: var(--cream); }
.comparison-table { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.compare-col { background: var(--cream); padding: 0; }
.compare-col.kinetiq { background: var(--navy); }
.compare-col-header { padding: 1.8rem 2rem; border-bottom: 2px solid var(--border); }
.compare-col.kinetiq .compare-col-header { border-color: rgba(30,122,110,0.4); }
.compare-col-header-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.4rem; }
.compare-col:not(.kinetiq) .compare-col-header-label { color: var(--text-light); }
.compare-col.kinetiq .compare-col-header-label { color: var(--gold); }
.compare-col-header-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; }
.compare-col:not(.kinetiq) .compare-col-header-name { color: var(--navy); }
.compare-col.kinetiq .compare-col-header-name { color: #fff; }
.compare-rows { padding: 0.5rem 0; }
.compare-row { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1rem 2rem; border-bottom: 1px solid transparent; transition: background 0.15s; }
.compare-col:not(.kinetiq) .compare-row:hover { background: rgba(15,30,53,0.03); }
.compare-col.kinetiq .compare-row:hover { background: rgba(255,255,255,0.04); }
.compare-row-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.compare-row-text { font-size: 0.88rem; line-height: 1.6; font-weight: 300; }
.compare-col:not(.kinetiq) .compare-row-text { color: var(--text-mid); }
.compare-col.kinetiq .compare-row-text { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.services-hero { background: var(--cream); padding: 8rem 4rem 4rem; }
.discovery-banner { background: var(--teal); padding: 3rem 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; overflow: hidden; }
.discovery-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.06), transparent); }
.discovery-banner-left { position: relative; z-index: 1; }
.discovery-banner-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.discovery-banner-label::before { content: ''; display: block; width: 16px; height: 1px; background: rgba(255,255,255,0.4); }
.discovery-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic; color: #fff; line-height: 1.35; margin-bottom: 0.6rem; }
.discovery-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 500px; line-height: 1.7; }
.discovery-banner-right { position: relative; z-index: 1; flex-shrink: 0; }

.services-grid-section { background: var(--warm-white); padding: 5rem 4rem; }
.services-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: all 0.25s; position: relative; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(30,122,110,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-top { padding: 2rem 2rem 0; }
.service-card-badge { display: inline-block; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--teal); background: var(--teal-pale); padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.2rem; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.86rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.service-card-bottom { padding: 1.5rem 2rem; margin-top: 1.5rem; border-top: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.service-price { display: flex; align-items: baseline; gap: 0.2rem; }
.price-currency { font-size: 0.9rem; color: var(--text-light); font-weight: 300; }
.price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--navy); line-height: 1; }
.price-per { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.06em; margin-left: 0.2rem; }
.service-duration { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); font-weight: 400; }

.packages-section { background: var(--cream); padding: 5rem 4rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.package-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; padding: 2.5rem; position: relative; transition: all 0.25s; }
.package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.package-card.featured { background: var(--navy); border-color: transparent; }
.package-card.featured::before { content: ''; }
.package-name { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; }
.package-card:not(.featured) .package-name { color: var(--text-light); }
.package-card.featured .package-name { color: var(--gold); }
.package-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.5rem; }
.pkg-dollar { font-size: 1.1rem; font-weight: 300; }
.package-card:not(.featured) .pkg-dollar { color: var(--text-light); }
.package-card.featured .pkg-dollar { color: rgba(255,255,255,0.5); }
.pkg-amount { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; line-height: 1; }
.package-card:not(.featured) .pkg-amount { color: var(--navy); }
.package-card.featured .pkg-amount { color: var(--gold); }
.package-desc { font-size: 0.84rem; line-height: 1.65; font-weight: 300; margin-bottom: 2rem; padding-bottom: 1.5rem; }
.package-card:not(.featured) .package-desc { color: var(--text-mid); border-bottom: 1px solid var(--border); }
.package-card.featured .package-desc { color: rgba(255,255,255,0.5); border-bottom: 1px solid rgba(255,255,255,0.08); }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.package-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.85rem; line-height: 1.5; font-weight: 300; }
.package-card:not(.featured) .package-features li { color: var(--text-mid); }
.package-card.featured .package-features li { color: rgba(255,255,255,0.65); }
.package-features li::before { content: '—'; flex-shrink: 0; font-size: 0.85rem; }
.package-card:not(.featured) .package-features li::before { color: var(--teal); }
.package-card.featured .package-features li::before { color: var(--teal-light); }

.payment-info-section { background: var(--warm-white); padding: 5rem 4rem; }
.payment-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.payment-card { padding: 2rem; border: 1px solid var(--border); border-radius: 2px; transition: all 0.22s; }
.payment-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.payment-card-icon { width: 42px; height: 42px; background: var(--teal-pale); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.payment-card-icon svg { width: 20px; height: 20px; stroke: var(--teal); stroke-width: 1.5; fill: none; }
.payment-card h3 { font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; }
.payment-card p { font-size: 0.85rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero { background: var(--cream); }
.about-hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 6rem; align-items: center; }
.about-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 4.5vw, 4.2rem); font-weight: 300; line-height: 1.1; color: var(--navy); margin-bottom: 0.5rem; }
.about-creds-inline { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 2rem; }
.about-bio-text p { font-size: 0.97rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 1.3rem; }
.about-bio-text p:last-child { margin-bottom: 0; }
.about-bio-text strong { color: var(--navy); font-weight: 500; }
.about-visual-block { background: var(--navy); aspect-ratio: 3/4; position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.about-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(30,122,110,0.18), transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(200,169,110,0.08), transparent 45%), linear-gradient(145deg, #0f1e35, #1a3050); }
.about-visual-mono { position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 300; color: rgba(255,255,255,0.03); line-height: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); letter-spacing: -0.06em; white-space: nowrap; }
.about-visual-content { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.about-visual-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 1.2rem; }
.about-visual-badge { display: inline-flex; align-items: center; gap: 1rem; background: var(--teal); padding: 0.8rem 1.2rem; }
.about-visual-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: #fff; line-height: 1; }
.about-visual-badge-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

.credentials-section { background: var(--cream); padding: 5rem 4rem; }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.cred-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.8rem; background: var(--cream); border-left: 3px solid var(--teal); transition: all 0.22s; }
.cred-card:hover { background: var(--warm-white); transform: translateX(4px); }
.cred-icon { font-size: 1.4rem; line-height: 1; margin-top: 0.1rem; }
.cred-content h4 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.cred-content p { font-size: 0.82rem; color: var(--text-light); font-weight: 300; line-height: 1.5; }

.philosophy-section { background: var(--warm-white); padding: 5rem 4rem; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.philosophy-items { display: flex; flex-direction: column; gap: 2rem; }
.philosophy-item { display: flex; gap: 1.2rem; }
.philosophy-item-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: rgba(30,122,110,0.2); line-height: 1; min-width: 2.5rem; }
.philosophy-item h3 { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.philosophy-item p { font-size: 0.87rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }
.philosophy-aside { background: var(--navy); padding: 2.5rem; position: sticky; top: 90px; }
.philosophy-aside-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 1rem; }
.philosophy-aside-quote span { color: var(--gold); }
.philosophy-aside-attr { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════
   FAQ PAGE
═══════════════════════════════════════ */
.faq-hero { background: var(--navy); padding: 8rem 4rem 5rem; position: relative; overflow: hidden; }
.faq-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(30,122,110,0.12), transparent); }
.faq-hero-inner { position: relative; z-index: 1; max-width: 640px; }
.faq-hero .eyebrow { color: var(--gold); }
.faq-hero .eyebrow::before { background: var(--gold); }
.faq-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.faq-hero h1 em { font-style: italic; color: var(--teal-light); }
.faq-hero p { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.8; }
.faq-main { background: var(--warm-white); padding: 5rem 4rem; }
.faq-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.faq-categories { display: flex; flex-direction: column; gap: 3rem; }
.faq-category-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--teal); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.faq-category-label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--teal); }
.faq-accordion { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 400; color: var(--navy); text-align: left; cursor: pointer; transition: color 0.2s; }
.faq-q:hover { color: var(--teal); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; background: var(--cream); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--text-mid); stroke-width: 2; fill: none; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(.16,1,.3,1), padding 0.3s; font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.4rem; }
.faq-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }
.faq-sidebar-booking { background: var(--navy); padding: 2rem; }
.faq-sidebar-booking h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300; font-style: italic; color: #fff; line-height: 1.4; margin-bottom: 0.8rem; }
.faq-sidebar-booking h3 span { color: var(--gold); }
.faq-sidebar-booking p { font-size: 0.83rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.faq-sidebar-info { background: var(--cream); padding: 2rem; border: 1px solid var(--border); }
.faq-sidebar-info h4 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--text-light); margin-bottom: 1.2rem; }
.info-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid var(--border-light); gap: 1rem; }
.info-row:last-child { border-bottom: none; }
.info-row-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); font-weight: 500; flex-shrink: 0; }
.info-row-val { font-size: 0.85rem; color: var(--navy); font-weight: 300; text-align: right; line-height: 1.5; }

/* ═══════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════ */
.blog-hero { background: var(--cream); padding: 8rem 4rem 4rem; }
.blog-coming-soon { background: var(--warm-white); padding: 5rem 4rem; }
.blog-coming-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.blog-placeholder { background: var(--cream); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; opacity: 0.6; transition: opacity 0.2s; }
.blog-placeholder:hover { opacity: 0.8; }
.blog-placeholder-top { height: 180px; background: var(--navy); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-placeholder-top::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(30,122,110,0.2), transparent); }
.blog-placeholder-cat { position: relative; z-index: 1; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 500; }
.blog-placeholder-body { padding: 1.8rem; }
.blog-placeholder-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--navy); line-height: 1.35; margin-bottom: 0.8rem; }
.blog-placeholder-body p { font-size: 0.82rem; line-height: 1.7; color: var(--text-light); font-weight: 300; }
.blog-coming-label { display: inline-block; margin-top: 1rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 500; background: var(--teal-pale); padding: 0.3rem 0.8rem; border-radius: 100px; }
.blog-subscribe { background: var(--navy); padding: 4rem; text-align: center; position: relative; overflow: hidden; }
.blog-subscribe::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(30,122,110,0.12), transparent); }
.blog-subscribe-inner { position: relative; z-index: 1; max-width: 480px; margin: 0 auto; }
.blog-subscribe h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; font-style: italic; color: #fff; line-height: 1.3; margin-bottom: 0.8rem; }
.blog-subscribe h3 span { color: var(--gold); }
.blog-subscribe p { font-size: 0.88rem; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }
.blog-subscribe-form { display: flex; gap: 0.8rem; }
.blog-subscribe-form input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 0.85rem 1.2rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 300; border-radius: 2px; outline: none; transition: border-color 0.2s; }
.blog-subscribe-form input::placeholder { color: rgba(255,255,255,0.3); }
.blog-subscribe-form input:focus { border-color: var(--teal); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 3.5rem 4rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2rem; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 0.3rem; }
.footer-brand-name span { color: var(--teal-light); }
.footer-brand-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 300; line-height: 1.6; margin-top: 0.8rem; max-width: 220px; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links li a { font-family: 'DM Sans', sans-serif; font-size: 0.83rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links li a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 0.8rem; }
.footer-contact-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); font-weight: 500; }
.footer-contact-val { font-size: 0.83rem; color: rgba(255,255,255,0.55); font-weight: 300; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.2); font-weight: 300; }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal-light); }
  50% { opacity: 0.5; box-shadow: 0 0 3px var(--teal-light); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--warm-white); padding: 1rem; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 999; gap: 0.3rem; }
  .nav-hamburger { display: flex; }
  .nav-cta-wrap { display: none; }
  .section-pad { padding: 4rem 1.5rem; }
  .section-pad-sm { padding: 3rem 1.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 1.5rem; }
  .mdt-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .home-cta-banner { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
  .approach-hero, .services-hero, .about-hero, .faq-hero, .blog-hero { padding: 6rem 1.5rem 3rem; }
  .mdt-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .why-mdt-grid { grid-template-columns: 1fr; }
  .comparison-table { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .payment-cards { grid-template-columns: 1fr; }
  .discovery-banner { flex-direction: column; padding: 2.5rem 1.5rem; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual-block { aspect-ratio: 16/9; }
  .cred-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-aside { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .blog-coming-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 2.6rem; }
  .hero-trust { flex-wrap: wrap; gap: 1.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .blog-subscribe-form { flex-direction: column; }
}

/* ═══════════════════════════════════════
   DROPDOWN NAVIGATION
═══════════════════════════════════════ */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  cursor: pointer;
  display: block;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-wrap.open .nav-dropdown-trigger {
  color: var(--teal);
  background: var(--teal-pale);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  list-style: none;
  z-index: 1001;
  overflow: hidden;
}
.nav-dropdown-wrap.open .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 0.75rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid var(--border-light);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--teal); background: var(--teal-pale); }
.nav-dropdown li a.current-page-item { color: var(--teal); }

/* Mobile dropdown */
@media (max-width: 1024px) {
  .nav-dropdown-trigger { width: 100%; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--teal);
    margin-left: 1rem;
    background: transparent;
  }
  .nav-dropdown li a {
    padding: 0.5rem 0.85rem;
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-left .section-lead { margin-bottom: 2rem; }
.contact-info-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-info-row { display: flex; gap: 1rem; font-size: 0.88rem; line-height: 1.6; }
.contact-info-label { color: var(--text-light); font-weight: 400; min-width: 60px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding-top: 0.1rem; }
.contact-info-val { color: var(--text-mid); font-weight: 300; }
.contact-form-right { background: var(--warm-white); border: 1px solid var(--border); border-radius: 2px; padding: 2.5rem; }
.contact-form-row { margin-bottom: 1.25rem; }
.contact-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); font-weight: 400; }
.contact-required { color: var(--teal); }
.contact-input { border: 1.5px solid var(--border); border-radius: 2px; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text-dark); outline: none; transition: border-color 0.2s; background: #fff; }
.contact-input:focus { border-color: var(--teal); }
.contact-textarea { resize: vertical; min-height: 120px; }
.contact-radio-group { display: flex; gap: 1.5rem; padding-top: 0.6rem; }
.contact-radio-label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; color: var(--text-mid); font-weight: 300; cursor: pointer; }
.contact-form-note { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 0.75rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   PACKAGE POPULAR BADGE
═══════════════════════════════════════ */
.package-popular-badge {
  position: absolute;
  top: 0; right: 0;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #0f1e35;
  background: var(--gold);
  padding: 4px 14px;
  border-radius: 0 2px 0 2px;
}

@media (max-width: 768px) {
  .contact-form-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-row--2 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   SVG LOGO
═══════════════════════════════════════ */
.nav-logo { display: flex; align-items: center; }
.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

@media (max-width: 1024px) {
  .nav-logo-img { height: 22px; }
}

/* WordPress custom logo size override */
.custom-logo { height: 26px !important; width: auto !important; }
@media (max-width: 1024px) {
  .custom-logo { height: 22px !important; }
}

/* ═══════════════════════════════════════
   BLOG POST CONTENT STYLES
   High specificity to override Gutenberg
═══════════════════════════════════════ */

body.single-post article .kinetiq-post-content,
body.single-post article .kinetiq-post-content p,
body.single-post article .kinetiq-post-content span,
body.single-post article .kinetiq-post-content div {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--text-mid) !important;
  background: none !important;
  font-size: 1rem !important;
  line-height: 1.9 !important;
  font-weight: 300 !important;
}

body.single-post article .kinetiq-post-content > p:first-of-type {
  font-size: 1.08rem !important;
  color: var(--text-dark) !important;
}

body.single-post article .kinetiq-post-content p {
  margin-bottom: 1.5rem !important;
}

body.single-post article .kinetiq-post-content h1,
body.single-post article .kinetiq-post-content h2,
body.single-post article .kinetiq-post-content h3,
body.single-post article .kinetiq-post-content h4,
body.single-post article .kinetiq-post-content h5,
body.single-post article .kinetiq-post-content h6 {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--navy) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 0.9rem !important;
  background: none !important;
}

body.single-post article .kinetiq-post-content h2 {
  font-size: 1.9rem !important;
  padding-left: 1rem !important;
  border-left: 3px solid var(--teal) !important;
}

body.single-post article .kinetiq-post-content h3 { font-size: 1.5rem !important; }
body.single-post article .kinetiq-post-content h4 { font-size: 1.2rem !important; }

body.single-post article .kinetiq-post-content strong,
body.single-post article .kinetiq-post-content b {
  color: var(--navy) !important;
  font-weight: 600 !important;
  font-family: 'DM Sans', sans-serif !important;
}

body.single-post article .kinetiq-post-content em,
body.single-post article .kinetiq-post-content i {
  font-style: italic !important;
  color: var(--teal) !important;
}

body.single-post article .kinetiq-post-content ul,
body.single-post article .kinetiq-post-content ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 0 1.5rem 0 !important;
}

body.single-post article .kinetiq-post-content ul li,
body.single-post article .kinetiq-post-content ol li {
  position: relative !important;
  padding-left: 1.5rem !important;
  margin-bottom: 0.65rem !important;
  font-size: 0.97rem !important;
  line-height: 1.75 !important;
  color: var(--text-mid) !important;
  font-weight: 300 !important;
  font-family: 'DM Sans', sans-serif !important;
}

body.single-post article .kinetiq-post-content ul li::before {
  content: '—' !important;
  position: absolute !important;
  left: 0 !important;
  color: var(--teal) !important;
}

body.single-post article .kinetiq-post-content ol { counter-reset: post-counter !important; }
body.single-post article .kinetiq-post-content ol li::before {
  content: counter(post-counter) !important;
  counter-increment: post-counter !important;
  position: absolute !important;
  left: 0 !important;
  color: var(--teal) !important;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
}

body.single-post article .kinetiq-post-content blockquote {
  margin: 2.5rem 0 !important;
  padding: 1.8rem 2rem 1.8rem 2.5rem !important;
  background: var(--navy) !important;
  border: none !important;
  border-left: none !important;
  border-radius: 2px !important;
  position: relative !important;
}

body.single-post article .kinetiq-post-content blockquote::before {
  content: '\201C' !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 5rem !important;
  color: rgba(200,169,110,0.25) !important;
  position: absolute !important;
  top: -0.5rem !important;
  left: 1rem !important;
  line-height: 1 !important;
}

body.single-post article .kinetiq-post-content blockquote p {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

body.single-post article .kinetiq-post-content a {
  color: var(--teal) !important;
  border-bottom: 1px solid rgba(30,122,110,0.4) !important;
  text-decoration: none !important;
}

body.single-post article .kinetiq-post-content a:hover {
  opacity: 0.75 !important;
  border-color: var(--teal) !important;
}

body.single-post article .kinetiq-post-content img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 2px !important;
  margin: 2rem 0 !important;
  display: block !important;
  box-shadow: var(--shadow-md) !important;
}

body.single-post article .kinetiq-post-content hr {
  border: none !important;
  border-top: 1px solid var(--border) !important;
  margin: 3rem 0 !important;
}

body.single-post article .kinetiq-post-content table { width:100% !important; border-collapse:collapse !important; margin:2rem 0 !important; }
body.single-post article .kinetiq-post-content th { background:var(--navy) !important; color:#fff !important; padding:0.75rem 1rem !important; text-align:left !important; font-weight:500 !important; font-size:0.78rem !important; letter-spacing:0.06em !important; text-transform:uppercase !important; }
body.single-post article .kinetiq-post-content td { padding:0.75rem 1rem !important; border-bottom:1px solid var(--border) !important; color:var(--text-mid) !important; font-weight:300 !important; }
body.single-post article .kinetiq-post-content tr:nth-child(even) td { background:var(--cream) !important; }

.post-meta-bar { display:flex; align-items:center; gap:1.5rem; font-size:0.78rem; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.4); flex-wrap:wrap; }
.post-meta-divider { width:1px; height:14px; background:rgba(255,255,255,0.15); display:inline-block; }

#reading-progress { position:fixed; top:70px; left:0; width:0%; height:3px; background:var(--teal); z-index:999; transition:width 0.1s linear; }

