/* =============================================
   TRUSTTIANA LUXURY STUDIOS
   Black & Gold Luxury Theme
   ============================================= */

:root {
  --black: #0A0A0A;
  --black-2: #141414;
  --charcoal: #1E1E1E;
  --gold: #C9A84C;
  --gold-light: #E2C870;
  --gold-pale: #F5EDD0;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.25);
  --cream: #FAF7F2;
  --warm-gray: #8A8680;
  --light-gray: #2E2E2E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.4rem 3rem;
  border-bottom: 1px solid var(--gold-border);
  background: var(--black);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-weight: 400;
}
.nav-cta {
  margin-left: auto;
  background: transparent;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* HERO */
.hero {
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-frame {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--charcoal);
  border: 2px solid var(--gold);
}
.hero-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
}
.hero-circle-1 { width: 240px; height: 240px; }
.hero-circle-2 { width: 180px; height: 180px; border-color: rgba(201, 168, 76, 0.4); }
.hero-circle-3 { width: 120px; height: 120px; border-color: rgba(201, 168, 76, 0.6); background: rgba(201, 168, 76, 0.08); }
.hero-texture-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
}
.hero-headline-stamp {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.8;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 480px;
  line-height: 1.7;
}
.hero-pillars {
  display: flex;
  gap: 0;
  margin-top: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--light-gray);
}
.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pillar-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-light);
}
.pillar-desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.pillar-divider {
  width: 1px;
  background: var(--light-gray);
  margin: 0 1.5rem;
}

/* JOURNEY */
.journey {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem 3rem;
}
.journey-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.7;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.journey-step {
  padding: 2rem 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.5;
  line-height: 1;
}
.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}
.journey-step p {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.65;
}

/* INSURANCE */
.insurance {
  padding: 6rem 3rem;
  background: var(--black);
  border-top: 1px solid var(--light-gray);
}
.insurance-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.insurance-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.5rem;
  font-size: 1.2rem;
}
.insurance-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.insurance-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.insurance-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.insurance-carriers {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.carrier-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  font-weight: 600;
}
.carrier-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.carrier-tag {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

/* PHILOSOPHY */
.philosophy {
  padding: 6rem 3rem;
  background: var(--black);
  border-top: 1px solid var(--light-gray);
}
.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}
.philosophy-quote {
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.philosophy-quote p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  font-weight: 400;
}
.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}
.philosophy-body p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
}
.philosophy-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.value p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* MEMBERSHIP UPSELL BANNER */
.upsell-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1408 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 4rem 3rem;
  text-align: center;
}
.upsell-inner {
  max-width: 800px;
  margin: 0 auto;
}
.upsell-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.upsell-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.upsell-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); }

/* TRUST BAR */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 2.5rem 3rem;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.trust-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CLOSING */
.closing {
  padding: 8rem 3rem;
  background: var(--charcoal);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.closing-body {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.7;
}
.closing-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.c1 { width: 200px; height: 200px; }
.c2 { width: 150px; height: 150px; border-color: rgba(201, 168, 76, 0.4); }
.c3 { width: 100px; height: 100px; border-color: rgba(201, 168, 76, 0.6); }
.closing-wordmark {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--gold-border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--light-gray);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(201, 168, 76, 0.6);
  line-height: 1.5;
  margin-top: 0.5rem;
}
.footer-links {
  display: contents;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col h5 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-left { display: none; }
  .hero-headline { font-size: 2.8rem; }
  .hero-pillars { flex-direction: column; gap: 1rem; }
  .pillar-divider { display: none; }
  .journey-steps { grid-template-columns: 1fr; }
  .insurance-inner { flex-direction: column; }
  .philosophy-values { grid-template-columns: 1fr; }
  .closing-headline { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav { padding: 1.2rem 1.5rem; }
  .hero, .journey, .insurance, .philosophy, .upsell-banner, .trust-bar, .closing, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .trust-inner { gap: 2rem; }
}

/* =============================================
   CONSULTATION PAGE
   ============================================= */

.top-nav {
  background: var(--black);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.top-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.top-nav-back {
  font-size: 0.85rem;
  color: var(--warm-gray);
  text-decoration: none;
  font-weight: 500;
}
.top-nav-back:hover { color: var(--cream); }

/* HERO */
.cons-hero {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}
.cons-hero-inner {
  max-width: 750px;
  margin: 0 auto;
}
.cons-welcome-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cons-welcome-item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cons-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.cons-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.cons-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* SECTION SHARED */
.cons-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cons-section-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* STEPS */
.cons-steps {
  padding: 5rem 1.5rem;
  background: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
}
.cons-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cons-steps-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cons-steps-header .cons-section-sub { color: rgba(250, 247, 242, 0.5); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  padding: 1.5rem;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.6;
  line-height: 1;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}
.step-card p {
  font-size: 0.875rem;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.65;
}

/* OFFERINGS — Full Services */
.cons-offerings {
  padding: 5rem 1.5rem;
  background: var(--black);
}
.cons-offerings-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cons-offerings-header {
  text-align: center;
  margin-bottom: 3rem;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offering-card {
  background: var(--charcoal);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.offering-icon {
  font-size: 1.2rem;
  color: var(--gold);
  line-height: 1;
}
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}
.offering-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* PRICING — Wig Tiers */
.cons-pricing {
  padding: 5rem 1.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.cons-pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cons-pricing-badge {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border: 1px solid var(--gold-border);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.cons-pricing-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cons-pricing-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.pricing-table {
  background: var(--black);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  text-align: left;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-label {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}
.pricing-range {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}
.pricing-note {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* INSURANCE */
.cons-insurance {
  padding: 5rem 1.5rem;
  background: var(--black);
  border-top: 1px solid var(--light-gray);
}
.cons-insurance-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.cons-insurance-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.25rem;
}
.cons-insurance-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cons-insurance-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.cons-insurance-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.insurance-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0.5rem 0;
}
.ins-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ins-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.ins-step strong { display: block; font-size: 0.9rem; color: var(--cream); margin-bottom: 0.2rem; }
.ins-step p { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.5; }
.ins-carriers-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  font-weight: 600;
  margin-top: 0.5rem;
}
.ins-carrier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* CTA */
.cons-cta {
  padding: 6rem 1.5rem;
  background: var(--charcoal);
  border-top: 1px solid var(--light-gray);
}
.cons-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cons-cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.75rem;
}
.cons-cta-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 3rem;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--black);
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--warm-gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select {
  color: var(--warm-gray);
}
.form-group select option { background: var(--black); color: var(--cream); }
.form-group textarea { resize: vertical; }
.form-submit {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.03em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { background: var(--warm-gray); cursor: not-allowed; transform: none; }
.form-privacy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.form-success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  background: var(--black);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.95rem; color: var(--warm-gray); }

/* FOOTER */
.cons-footer {
  background: var(--black);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--gold-border);
}
.cons-footer-inner { max-width: 600px; margin: 0 auto; }
.cons-footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cons-footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.45);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.cons-footer-copy { font-size: 0.8rem; color: rgba(250, 247, 242, 0.25); }

/* BOTTOM BANNER */
.bottom-banner {
  background: var(--gold);
  padding: 2rem 1.5rem;
  text-align: center;
}
.bottom-banner p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  font-style: italic;
}

/* CONSULTATION PAGE RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cons-title { font-size: 2.5rem; }
  .cons-section-title { font-size: 1.8rem; }
  .cons-pricing-title { font-size: 2rem; }
  .cons-cta-title { font-size: 2rem; }
  .upsell-headline { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .form-submit, .form-privacy, .form-full { grid-column: 1; }
  .cons-insurance-inner { flex-direction: column; }
  .cons-hero { padding: 3rem 1.5rem 4rem; }
  .cons-welcome-bar { gap: 1rem; }
  .cons-steps, .cons-offerings, .cons-pricing, .cons-insurance, .cons-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 480px) {
  .cons-title { font-size: 2rem; }
  .step-card { padding: 1.25rem 1rem; }
  .offering-card { padding: 1.5rem 1.25rem; }
}