/* ============================================================
   TARA WAGNER COACHING — GLOBAL STYLESHEET
   Brand: Breakthrough Boss® / xotara.us
   Fonts: Cormorant Garamond + DM Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF7;
  --sand: #E8DDD0;
  --terracotta: #C4785A;
  --terracotta-light: #D9967C;
  --terracotta-dark: #A85E42;
  --forest: #3D5C4A;
  --forest-light: #4E7460;
  --charcoal: #2C2C2C;
  --mid-gray: #6B6B6B;
  --light-gray: #B8B0A8;
  --gold: #C8A96E;
  --gold-light: #DEC292;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── UTILITY ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1480px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.highlight { color: var(--terracotta); }
.highlight-gold { color: var(--gold); }
.highlight-forest { color: var(--forest); }

/* ── SITE NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(44, 44, 44, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247,243,238,0.08);
}
.nav-inner {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--terracotta-light); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(247,243,238,0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-member {
  font-size: 12px;
  color: rgba(247,243,238,0.4);
  font-weight: 400;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #222;
  border: 1px solid rgba(247,243,238,0.1);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(247,243,238,0.06);
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247,243,238,0.65) !important;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--cream) !important; }

/* Nav CTA buttons */
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-nav-outline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  text-decoration: none;
  transition: all 0.25s;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-nav-outline:hover { background: var(--terracotta); color: #fff; }
.btn-nav-filled {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  transition: all 0.25s;
  border-radius: 2px;
  white-space: nowrap;
}
.btn-nav-filled:hover { background: var(--terracotta-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
}
.mobile-nav-close:hover { opacity: 1; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-wrap { display: none; }
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.announcement-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.announcement-bar a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
}
.btn:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn--sm { padding: 12px 28px; font-size: 12px; }
.btn--lg { padding: 20px 52px; font-size: 15px; }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta);
}
.btn--outline:hover { background: var(--terracotta); color: #fff; }
.btn--forest { background: var(--forest); }
.btn--forest:hover { background: var(--forest-light); }
.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-light); }
.btn--cream-outline {
  background: transparent;
  border: 1.5px solid rgba(247,243,238,0.5);
  color: var(--cream);
}
.btn--cream-outline:hover { background: rgba(255,255,255,0.1); }
.btn--full { display: block; width: 100%; text-align: center; }

/* ── SECTION SHARED ── */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.section-label--gold { color: var(--gold); }
.section-label--cream { color: rgba(247,243,238,0.6); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--terracotta-light); }
.section-title--cream { color: var(--cream); }
.section-title--light { color: var(--cream); }

.section-body {
  font-size: 16px;
  color: var(--mid-gray);
  line-height: 1.85;
}
.section-body--cream { color: rgba(247,243,238,0.78); }
.section-body + .section-body { margin-top: 16px; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand), transparent);
  margin: 0 auto;
  max-width: 480px;
}
.divider--full { max-width: none; }
.divider--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ── HERO ── */
.hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 110px 24px 100px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,120,90,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(61,92,74,0.28) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
  padding: 6px 20px;
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 2px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--terracotta-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(247,243,238,0.72);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.85;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LOGO BADGE / SOCIAL PROOF STRIP ── */
.proof-strip {
  background: var(--cream);
  padding: 28px 24px;
  border-bottom: 1px solid var(--sand);
}
.proof-strip-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
}
.proof-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.proof-stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--sand);
}
@media (max-width: 600px) { .proof-divider { display: none; } }

/* ── CARD COMPONENTS ── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) { .card-grid-3 { grid-template-columns: 1fr; } }

.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 640px) { .card-grid-2 { grid-template-columns: 1fr; } }

/* Stage cards */
.stage-card {
  background: #fff;
  border-top: 3px solid var(--terracotta);
  padding: 36px 28px 40px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stage-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(44,44,44,0.08); }
.stage-card--forest { border-top-color: var(--forest); }
.stage-card--gold { border-top-color: var(--gold); }
.stage-card-icon {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}
.stage-card--forest .stage-card-icon { color: var(--forest); }
.stage-card--gold .stage-card-icon { color: var(--gold); }
.stage-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
  line-height: 1.2;
}
.stage-card p {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.stage-card .btn { font-size: 12px; padding: 12px 24px; }

/* ── TESTIMONIAL COMPONENTS ── */
.testi-card {
  background: var(--cream);
  padding: 36px 28px;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 0.8;
  display: block;
  margin-bottom: 16px;
}
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.testi-attr {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.testi-card--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(247,243,238,0.1);
}
.testi-card--dark blockquote { color: rgba(247,243,238,0.88); }
.testi-card--dark .testi-attr { color: var(--gold); }

/* ── RESULTS BULLET LIST ── */
.results-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.65;
}
.results-list li::before {
  content: '✦';
  color: var(--terracotta);
  font-size: 10px;
  margin-top: 5px;
  flex-shrink: 0;
}
.results-list--cream li { color: rgba(247,243,238,0.85); }
.results-list--cream li::before { color: var(--gold); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--charcoal);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196,120,90,0.1) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: #181818;
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 2px;
}
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  line-height: 1.8;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── STICKY CTA BAR ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { color: var(--cream); font-size: 14px; font-weight: 500; }
@media (max-width: 500px) { .sticky-cta p { display: none; } }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ── PAIN CARDS ── */
.pain-card {
  background: #fff;
  padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--terracotta);
}
.pain-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
}

/* ── FOREST VISUAL BOX ── */
.forest-box {
  background: var(--forest);
  padding: 52px 40px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.forest-box::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(196,120,90,0.15);
}
.forest-box-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.forest-box-quote::before {
  content: '"';
  font-size: 80px;
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 0;
  display: block;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
}
.forest-box-attr {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ── PRICE CARDS ── */
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(247,243,238,0.12);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: border-color 0.25s;
}
.price-card:hover { border-color: rgba(196,120,90,0.4); }
.price-card.featured {
  border-color: var(--terracotta);
  background: rgba(196,120,90,0.1);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
  border-radius: 2px;
}
.price-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.price-desc {
  font-size: 13px;
  color: rgba(247,243,238,0.5);
  margin-bottom: 28px;
  min-height: 40px;
  line-height: 1.7;
}

/* ── PROCESS STEPS ── */
.process-step {
  background: var(--warm-white);
  padding: 36px 28px;
  border-top: 2px solid var(--terracotta);
}
.process-step--forest { border-top-color: var(--forest); }
.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.process-step p { font-size: 14px; color: var(--mid-gray); line-height: 1.8; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.two-col--flip { grid-template-columns: 1.1fr 1fr; }
@media (max-width: 700px) {
  .two-col, .two-col--flip { grid-template-columns: 1fr; gap: 36px; }
}

/* ── IMG PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,120,90,0.1) 0%, rgba(61,92,74,0.1) 100%);
}
.img-placeholder-inner { position: relative; z-index: 1; text-align: center; }

/* ── QUIZ RESULTS PAGE COMPONENTS ── */
.score-hero {
  background: var(--charcoal);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.score-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,120,90,0.2) 0%, transparent 70%);
}
.score-display {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 300;
  color: var(--terracotta-light);
  line-height: 1;
}
.score-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}
.scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 640px) { .scorecard { grid-template-columns: 1fr; } }
.scorecard-item {
  background: var(--cream);
  padding: 24px 20px;
  border-top: 2px solid var(--sand);
  text-align: center;
}
.scorecard-item.active { border-top-color: var(--terracotta); }
.scorecard-cat {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}
.scorecard-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
}
.scorecard-note { font-size: 13px; color: var(--mid-gray); margin-top: 8px; line-height: 1.6; }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.form-input:focus { border-color: var(--terracotta); }
.form-input--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(247,243,238,0.15);
  color: var(--cream);
}
.form-input--dark:focus { border-color: var(--terracotta); }
.form-input--dark::placeholder { color: rgba(247,243,238,0.3); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }

/* ── GUARANTEE BOX ── */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  background: var(--cream);
  border: 1px solid var(--sand);
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 540px) { .guarantee-box { flex-direction: column; text-align: center; padding: 28px 24px; } }
.guarantee-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 24px;
}
.guarantee-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 6px;
}
.guarantee-box p { font-size: 14px; color: var(--mid-gray); line-height: 1.75; }

/* ── CREDENTIAL BADGE ── */
.credential-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(247,243,238,0.65);
}
.credential-item::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BLOG CARD ── */
.blog-card {
  background: #fff;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  display: block;
}
.blog-card:hover { border-bottom-color: var(--terracotta); transform: translateY(-3px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}
.blog-card-body { padding: 24px; }
.blog-card-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.75; }

/* ── FAQ / ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--terracotta);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.85;
}
.faq-item.open .faq-answer { display: block; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(61,92,74,0.3) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 12px;
  color: rgba(247,243,238,0.4);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(247,243,238,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }


/* ── IMAGE PLACEHOLDERS ── */
.tw-img-ph {
  background: var(--tw-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--tw-mid-gray);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(107,107,107,0.35);
  padding: 24px 16px;
}
.tw-img-ph-landscape {
  aspect-ratio: 16/9;
}
.tw-img-ph-square {
  aspect-ratio: 1/1;
}

/* ── AVATAR PLACEHOLDER ── */
.tw-avatar-ph {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tw-terracotta);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ── TESTIMONIAL CARD WITH PHOTO ── */
.tw-testi-card--photo {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tw-testi-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.tw-testi-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--tw-charcoal);
  line-height: 1.3;
}
.tw-testi-title {
  font-size: 12px;
  color: var(--tw-mid-gray);
  margin-top: 2px;
}
.tw-testi-card--photo blockquote {
  font-size: 15px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.75;
  color: var(--tw-charcoal);
  border-left: 3px solid var(--tw-terracotta);
  padding-left: 16px;
  margin: 0;
}
.testi-source {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00b67a;
  margin-top: 12px;
}
.testi-source::before {
  content: '★ ';
}

/* ── TOPBAR WITH SOCIAL ── */
.tara-topbar {
  flex-wrap: wrap;
  gap: 8px;
}
.tara-topbar .fa {
  transition: opacity 0.2s;
}
.tara-topbar a:hover .fa,
.tara-topbar a:hover {
  opacity: 1;
  color: var(--tw-gold) !important;
}

/* ── TRUSTPILOT WRAPPER ── */
.tw-trustpilot-wrap {
  max-width: 500px;
  margin: 0 auto;
}

/* ── HERO SPLIT LAYOUT ── */
.tw-hero--split {
  padding: 0;
}
.tw-hero--split .tw-hero-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .tw-hero--split .col-md-5 { display: none; }
  .tw-hero--split .col-md-7 { padding: 60px 24px !important; }
}
