/* ============================================
   Sev Lives Counseling LLC — Stylesheet
   ============================================ */

:root {
  --bg-cream: #faeae3;           /* soft blush (matches business card) */
  --bg-warm: #f3d8d0;            /* deeper blush for alt sections */
  --surface: #ffffff;
  --sage: #c69589;               /* dusty rose - accents, links */
  --sage-dark: #1a1a1a;          /* charcoal - matches card text */
  --sage-light: #e8c4ba;         /* soft blush highlight */
  --terracotta: #b07765;         /* deeper rose accent */
  --text-deep: #1a1a1a;
  --text-muted: #6b5d5a;         /* warm muted gray */
  --border-soft: #eccfc7;        /* soft blush border */
  --shadow-soft: 0 4px 24px rgba(60, 30, 30, 0.06);
  --shadow-medium: 0 8px 32px rgba(60, 30, 30, 0.09);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container-max: 1180px;
  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-deep);
  background: var(--bg-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sage-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p { color: var(--text-deep); }

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--sage-dark); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 234, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-deep);
}

.nav-brand:hover { color: var(--sage); }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: transparent;
  border: 1.5px solid var(--text-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-deep);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

.nav-links a {
  color: var(--text-deep);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover { color: var(--sage-dark); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.nav-cta {
  background: var(--sage-dark);
  color: var(--bg-cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--sage);
  color: var(--bg-cream) !important;
  transform: translateY(-1px);
}

.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--sage-dark);
  transition: var(--transition);
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: inherit;
  text-align: center;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--bg-cream);
}

.btn-primary:hover {
  background: var(--sage);
  color: var(--bg-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage-dark);
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--bg-cream);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition);
  margin-left: 0.2rem;
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 149, 137, 0.22), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 196, 186, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.5rem, 5.2vw, 3.8rem);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--sage);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  max-width: 380px;
  width: 100%;
}

.hero-card-eyebrow {
  display: block;
  color: var(--sage);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.hero-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential-tag {
  background: var(--bg-warm);
  color: var(--sage-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-warm { background: var(--bg-warm); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-top: 1rem;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--sage-light);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== APPROACH / STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--sage);
  font-weight: 500;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step p { color: var(--text-muted); }

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 149, 137, 0.18), transparent 70%);
  pointer-events: none;
}

.page-header h1 { margin-bottom: 0.8rem; position: relative; }

.page-header p {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===== CONTENT LAYOUT ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.content-grid h2 {
  font-size: 1.95rem;
  margin-bottom: 1rem;
}

.content-grid p {
  margin-bottom: 1rem;
  color: var(--text-deep);
}

.profile-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-soft);
  position: sticky;
  top: 100px;
}

.profile-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-warm), var(--sage-light));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-deep);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  overflow: hidden;
  border: 1.5px solid var(--text-deep);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.profile-card .role {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* ===== INFO CARDS ===== */
.info-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-soft);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--sage-dark);
}

.info-card ul { list-style: none; }

.info-card li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.info-card li:last-child { border-bottom: none; }

.info-card li .label { color: var(--text-deep); }
.info-card li .value { color: var(--sage-dark); font-weight: 500; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  background: var(--bg-warm);
  color: var(--sage-dark);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

/* ===== PRICE HIGHLIGHT ===== */
.price-card {
  background: var(--sage-dark);
  color: var(--bg-cream);
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
}

.price-card h3 {
  color: var(--bg-cream);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--bg-cream);
  font-weight: 500;
  display: block;
  margin: 0.5rem 0;
}

.price-card p {
  color: rgba(250, 234, 227, 0.85);
  font-size: 0.95rem;
}

/* ===== FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  background: var(--surface);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.contact-info h2 { font-size: 1.6rem; margin-bottom: 1rem; }

.contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-row .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 1.1rem;
}

.contact-info-row .label-small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-info-row .value-text {
  color: var(--text-deep);
  font-weight: 500;
}

.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.contact-form h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.contact-form .form-lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.form-field { margin-bottom: 1.2rem; }

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-deep);
  margin-bottom: 0.5rem;
}

.form-field label .required { color: var(--terracotta); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-deep);
  transition: all var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(198, 149, 137, 0.18);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
  line-height: 1.55;
}

.honeypot { display: none; }

/* ===== CTA BAND ===== */
.cta-band {
  text-align: center;
  padding: 5rem 0;
  background: var(--sage-dark);
  color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 196, 186, 0.18), transparent 70%);
}

.cta-band > .container { position: relative; }

.cta-band h2 {
  color: var(--bg-cream);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.cta-band p {
  color: rgba(250, 234, 227, 0.85);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-band .btn-primary {
  background: var(--bg-cream);
  color: var(--sage-dark);
}

.cta-band .btn-primary:hover {
  background: var(--surface);
  color: var(--sage-dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1f1a18;
  color: rgba(250, 234, 227, 0.85);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid h4 {
  color: var(--bg-cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.footer-grid p, .footer-grid li {
  color: rgba(250, 234, 227, 0.72);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.footer-grid ul { list-style: none; }

.footer-grid a { color: rgba(250, 234, 227, 0.85); }
.footer-grid a:hover { color: var(--bg-cream); }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--bg-cream);
  margin-bottom: 0.3rem;
  display: block;
}

.footer-tagline {
  font-style: italic;
  color: rgba(250, 234, 227, 0.65);
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(250, 234, 227, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(250, 234, 227, 0.55);
  font-size: 0.88rem;
}

/* ===== APPOINTMENT WIZARD ===== */
.wizard {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.wizard-steps {
  background: var(--bg-cream);
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--border-soft);
}

.wizard-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  color: var(--text-muted);
  position: relative;
}

.wizard-step + .wizard-step::before {
  content: '';
  position: absolute;
  top: -0.6rem;
  left: 17px;
  width: 1.5px;
  height: 1.4rem;
  background: var(--border-soft);
}

.wizard-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.wizard-step.active { color: var(--text-deep); }

.wizard-step.active .wizard-step-num {
  background: var(--text-deep);
  color: var(--bg-cream);
  border-color: var(--text-deep);
}

.wizard-step.completed .wizard-step-num {
  background: var(--sage);
  color: var(--surface);
  border-color: var(--sage);
  font-size: 0.85rem;
}

.wizard-step strong {
  font-weight: 500;
  display: block;
  color: inherit;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.wizard-step-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: block;
}

.wizard-content { padding: 2.5rem 2.5rem 2rem; }

.wizard-panel { display: none; }

.wizard-panel.active {
  display: block;
  animation: wizardFade 320ms ease;
}

@keyframes wizardFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-panel h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.wizard-panel .panel-lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.wizard-panel h3 {
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-deep);
  letter-spacing: 0;
}

.wizard-panel h3:first-of-type { margin-top: 0; }

.wizard-panel .field-hint {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: -0.2rem 0 0.8rem;
}

/* Card-style radio options */
.option-cards {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.option-card {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.3rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--surface);
  transition: all var(--transition);
}

.option-card:hover {
  border-color: var(--sage);
  background: var(--bg-cream);
}

.option-card input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--text-deep);
  cursor: pointer;
  flex-shrink: 0;
}

.option-card:has(input:checked) {
  border-color: var(--text-deep);
  background: var(--bg-cream);
}

.option-card-body strong {
  display: block;
  color: var(--text-deep);
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
}

.option-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.option-card-meta {
  font-size: 0.88rem;
  color: var(--sage);
  font-weight: 500;
  white-space: nowrap;
}

/* Checkbox/radio grouped list */
.choice-group {
  display: grid;
  gap: 0.5rem;
}

.choice-group label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-cream);
  font-size: 0.95rem;
  transition: all var(--transition);
  color: var(--text-deep);
}

.choice-group label:hover {
  border-color: var(--sage);
  background: var(--surface);
}

.choice-group label:has(input:checked) {
  border-color: var(--text-deep);
  background: var(--surface);
}

.choice-group input[type="checkbox"],
.choice-group input[type="radio"] {
  accent-color: var(--text-deep);
  cursor: pointer;
  flex-shrink: 0;
}

.choice-group .muted {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: auto;
}

.choice-group-2col {
  grid-template-columns: 1fr 1fr;
}

.wizard-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-soft);
}

.wizard-actions .btn-primary { margin-left: auto; }

.form-field input.input-error,
.form-field select.input-error,
.form-field textarea.input-error {
  border-color: var(--terracotta);
  background: rgba(176, 119, 101, 0.05);
}

.wizard-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 800px) {
  .wizard { grid-template-columns: 1fr; }
  .wizard-steps {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    gap: 0.5rem;
  }
  .wizard-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 0.5rem;
    flex: 1;
  }
  .wizard-step + .wizard-step::before { display: none; }
  .wizard-step strong { font-size: 0.85rem; }
  .wizard-step-detail { display: none; }
  .wizard-content { padding: 2rem 1.4rem 1.5rem; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions .btn { width: 100%; margin-left: 0; }
  .choice-group-2col { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.mt-md { margin-top: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual { order: -1; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .profile-card { position: static; max-width: 360px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid var(--border-soft);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { width: 100%; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .nav-brand { font-size: 1.3rem; }
}
