/* ============================================================
   Perfect Practice — Main Stylesheet
   Theme: Light, airy, modern — white + gold
   Gold: #D9A50C  |  Near-black: #1A1A1A  |  White: #FFFFFF
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --gold:         #D9A50C;
  --gold-dark:    #8B5800;
  --gold-logo:    #D9A50C;
  --gold-muted:   #B08A0C;
  --gold-light:   #EDD878;
  --gold-pale:    #FBF6DC;
  --gold-subtle:  #F3EBC8;
  --near-black:   #1A1A1A;
  --charcoal:     #2D2D2D;
  --text:         #3A3A3A;
  --text-muted:   #777777;
  --white:        #FFFFFF;
  --off-white:    #FEFDF8;
  --bg-alt:       #F8F5E6;
  --border:       #E4CC88;
  --border-light: rgba(217, 165, 12, 0.18);

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width:    1120px;
  --radius:       4px;
  --section-pad:  88px 0;
  --transition:   0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--near-black); }
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem);  font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem);  font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-pad); }

/* ===== NAV LOGO WITH IMAGE ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  max-height: 36px;
  width: auto;
  max-width: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-logo);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.15;
}
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== HERO LOGO (home page) ===== */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.hero-logo-img {
  height: 96px;
  width: auto;
  margin-bottom: 14px;
  object-fit: contain;
}
.hero-brand-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  width: 100%;
  text-align: center;
}

/* Stats row below hero */
.stats-row {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-row-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) {
  .stats-row-inner { grid-template-columns: repeat(2, 1fr); }
}
.stat-cell {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
/* (nav-logo styles defined above) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--near-black) !important;
  padding: 7px 18px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; inset-inline: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 0.875rem; color: var(--near-black); }
  .nav-cta { margin: 8px 24px 0; text-align: center; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--near-black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--near-black); border-color: var(--near-black); }
.btn-outline:hover { background: var(--near-black); color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--near-black); }

/* ===== HERO ===== */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
/* Soft gold gradient wash in corner */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(201,162,39,0.07) 100%);
  pointer-events: none;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero h1 { margin-left: auto; margin-right: auto; }
.hero-lead { margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-text {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  background: var(--gold-pale);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.hero h1 {
  color: var(--near-black);
  margin-bottom: 22px;
  line-height: 1.15;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual panel */
.hero-visual {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px;
  height: 4px;
  background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
}
.stat-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.stat-item:last-child { border-bottom: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ===== GOLD ACCENT BAR ===== */
.accent-bar {
  background: var(--gold);
  padding: 14px 0;
}
.accent-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.accent-item {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--near-black);
  padding: 4px 24px;
  border-right: 1px solid rgba(0,0,0,0.18);
}
.accent-item:last-child { border-right: none; }
@media (max-width: 700px) { .accent-item { border-right: none; padding: 4px 14px; } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 16px;
}
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 1rem; text-wrap: balance; }

/* Section background variants */
.section-alt { background: var(--bg-alt); }
.section-gold { background: var(--gold-pale); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,39,0.14);
  transform: translateY(-2px);
}
.card-top-bar {
  width: 36px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
  border-radius: 2px;
}
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--text-muted); font-size: 0.93rem; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 16px;
  transition: gap var(--transition), color var(--transition);
}
.card-link:hover { color: var(--gold); gap: 10px; }
.card-link::after { content: '→'; }

/* ===== ABOUT SECTION ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 800px) { .about-split { grid-template-columns: 1fr; gap: 40px; } }
.about-body p { color: var(--text); font-size: 0.97rem; }
.about-creds-list { margin-top: 24px; border-top: 1px solid var(--border); }
.about-creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
}
.cred-bullet { color: var(--gold); font-size: 0.48rem; margin-top: 6px; flex-shrink: 0; }
.about-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.about-headshot {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 36px rgba(0,0,0,0.13);
  display: block;
}
.about-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.2);
  display: block;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px 24px;
  border-radius: var(--radius);
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: -12px;
  display: block;
}
.testimonial-text {
  font-style: italic;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.testimonial-author { font-weight: 700; font-size: 0.875rem; color: var(--near-black); }
.testimonial-detail { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 108px 24px 56px;
  text-align: center;
}
.page-hero h1 { color: var(--near-black); margin-bottom: 12px; }
.page-hero p  { color: var(--text-muted); max-width: 480px; margin: 0 auto; text-wrap: balance; }
.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}

/* ===== MISSION PAGE ===== */
.mission-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text);
}
.mission-body h2 {
  margin-top: 52px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-dark);
  border-left: 4px solid var(--gold);
  padding: 18px 28px;
  margin: 40px 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote-muted {
  color: var(--text-muted);
  background: var(--off-white);
  border-left-color: var(--border);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

/* ===== EXPERTISE PAGE ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 800px) { .expertise-grid { grid-template-columns: 1fr; gap: 40px; } }
.subject-block { margin-bottom: 36px; }
.subject-block:last-child { margin-bottom: 0; }
.subject-block h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--charcoal);
  padding: 5px 13px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 2px;
  transition: all var(--transition);
}
.tag:hover { background: var(--gold-pale); border-color: var(--gold); }

.highlight-box {
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
}
.highlight-box h3 { font-size: 1rem; margin-bottom: 8px; }
.highlight-box p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== RATES PAGE ===== */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-bottom: 52px;
}
.rate-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
@media (max-width: 580px) { .rate-grid-2 { grid-template-columns: 1fr; } }

.rate-group-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}
.rate-group-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.rate-group-divider span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.rate-assurance {
  max-width: 660px;
  margin: 26px auto 4px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--near-black);
}

/* Package comparison table */
.pkg-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 52px;
}
.pkg-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
  background: var(--gold-subtle);
  color: var(--text-muted);
  padding: 10px 24px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.pkg-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
  padding: 18px 24px;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--gold-pale);
  transition: background var(--transition);
}
.pkg-table-row:hover { background: #fdf7e0; }
.pkg-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--near-black);
}
.pkg-rate {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
}
.pkg-rate small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.pkg-discount {
  color: var(--accent) !important;
  font-size: 1.1rem !important;
}
.pkg-total {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.pkg-valid {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pkg-band {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--gold-pale);
  margin-bottom: 52px;
  overflow: hidden;
}
.pkg-option {
  flex: 1;
  padding: 28px 36px;
  text-align: center;
}
.pkg-band-divider {
  width: 1px;
  height: 72px;
  background: var(--border);
  flex-shrink: 0;
}
.pkg-option-count {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 5px;
}
.pkg-option-detail {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.pkg-option-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 580px) {
  .pkg-band { flex-direction: column; }
  .pkg-band-divider { width: 100%; height: 1px; }
  .pkg-option { padding: 22px 24px; }
}

/* ===== RESERVED WEEKLY SLOT ===== */
.reserved-slot {
  max-width: 760px;
  margin: 0 auto;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.reserved-slot-lead {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.reserved-slot-terms { text-align: left; }
.reserved-slot-terms li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--near-black);
  font-size: 0.95rem;
  line-height: 1.5;
}
.reserved-slot-terms li:last-child { border-bottom: none; }
.reserved-slot-cta { margin: 18px 0 0; font-size: 0.9rem; font-weight: 600; }
.policy-box-single { max-width: 760px; margin: 0 auto; }
.reserved-slot-terms li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 7px;
}
@media (max-width: 580px) {
  .reserved-slot { padding: 26px 22px; }
}
@media (max-width: 580px) {
  .pkg-table-head { display: none; }
  .pkg-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
    padding: 16px;
  }
  .pkg-table-row > div:last-child {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    color: var(--text-muted);
  }
  .pkg-table-row > div:last-child::before { content: 'Valid for: '; font-weight: 600; color: var(--near-black); }
}

.rate-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: all var(--transition);
  border-top: 3px solid var(--border);
}
.rate-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-dark);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.rate-card:hover { border-color: var(--gold); border-top-color: var(--gold); box-shadow: 0 4px 24px rgba(201,162,39,0.14); }
.rate-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--near-black);
  margin-bottom: 16px;
}
.rate-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--near-black);
  line-height: 1;
}
.rate-price sup { font-size: 1.3rem; vertical-align: top; margin-top: 8px; }
.rate-per { font-size: 0.8rem; color: var(--text-muted); margin: 6px 0 20px; }
.rate-features { text-align: left; }
.rate-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.rate-features li:last-child { border-bottom: none; }
.rate-features li::before { content: '◆'; color: var(--gold); font-size: 0.42rem; flex-shrink: 0; }

.policy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.policy-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.policy-box h3 { margin-bottom: 8px; font-size: 1rem; }
.policy-box p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== CONTACT FORM ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .contact-wrapper { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-of-type { border-top: 1px solid var(--border); margin-top: 24px; }
.contact-icon {
  width: 34px; height: 34px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.contact-value { font-size: 0.93rem; color: var(--near-black); margin-top: 2px; }
.contact-value a { color: var(--gold-dark); }
.contact-value a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #D8D0B0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.77rem; color: var(--text-muted); margin-top: 6px; }

/* Radio buttons styled as selectable pill chips */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.radio-label {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.radio-pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: all 0.15s ease;
  user-select: none;
  cursor: pointer;
}
.radio-label:hover .radio-pill {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.radio-label input[type="radio"]:checked + .radio-pill {
  border-color: var(--gold-dark);
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-weight: 700;
}
.form-message {
  padding: 13px 18px;
  border-radius: var(--radius);
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}
.form-message.success { background: #F0FAF0; border: 1px solid #82C87A; color: #246E24; display: block; }
.form-message.error   { background: #FFF4F4; border: 1px solid #E08080; color: #7A2020; display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gold-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { color: var(--near-black); margin-bottom: 14px; }
.cta-section p  { color: var(--text-muted); max-width: 460px; margin: 0 auto 30px; text-wrap: balance; }
.cta-section .hero-actions { justify-content: center; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--near-black);
  padding: 56px 0 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2A2A;
  margin-bottom: 24px;
}
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-tagline { font-size: 0.875rem; color: #AAA; line-height: 1.75; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #888;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: #AAA; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #888;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== UTILITIES ===== */
.text-gold   { color: var(--gold-dark); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }
