/* ═══════════════════════════════════
   TETHERED — Theme CSS
   Dark, intimate, editorial
   ═══════════════════════════════════ */

/* Fonts */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;

  /* Palette */
  --bg: #0a0906;
  --bg-surface: #110e09;
  --bg-card: #18130d;
  --ember: #c8873a;
  --ember-dim: #8a5c26;
  --ember-glow: rgba(200, 135, 58, 0.15);
  --ivory: #f0e6d3;
  --ivory-dim: #b8a88a;
  --ivory-muted: #6b5d4a;
  --border: rgba(200, 135, 58, 0.12);
  --border-bright: rgba(200, 135, 58, 0.25);
}

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

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

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, #1a100a 0%, var(--bg) 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(200, 100, 30, 0.18) 0%, transparent 70%);
  animation: drift1 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 0; right: 10%;
  background: radial-gradient(circle, rgba(180, 80, 20, 0.12) 0%, transparent 70%);
  animation: drift2 22s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  background: radial-gradient(circle, rgba(200, 135, 58, 0.08) 0%, transparent 70%);
  animation: drift3 15s ease-in-out infinite;
}

.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -20px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -40px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px 100px;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--ivory-dim);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: var(--ember-dim);
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--ivory-muted);
  flex-wrap: wrap;
}

.meta-dot {
  width: 3px;
  height: 3px;
  background: var(--ember-dim);
  border-radius: 50%;
}

/* ── RITUALS ───────────────────────── */

.rituals {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.rituals-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 64px;
  max-width: 600px;
  line-height: 1.2;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ritual-card {
  background: var(--bg-surface);
  padding: 40px 36px;
  transition: background 0.3s ease;
}

.ritual-card:hover {
  background: var(--bg-card);
}

.ritual-icon {
  color: var(--ember);
  margin-bottom: 20px;
}

.ritual-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 14px;
}

.ritual-card p {
  font-size: 0.88rem;
  color: var(--ivory-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ritual-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember-dim);
  border: 1px solid var(--border);
  padding: 4px 12px;
}

/* ── GUIDING ───────────────────────── */

.guiding {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.guiding-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.guiding-body {
  font-size: 0.95rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ember-dim);
  line-height: 1;
  padding-top: 4px;
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--ivory-muted);
  line-height: 1.7;
}

/* ── MANIFESTO ─────────────────────── */

.manifesto {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.manifesto-quote {
  margin-bottom: 56px;
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.5;
}

.manifesto-rule {
  width: 1px;
  height: 48px;
  background: var(--border-bright);
  margin: 0 auto 56px;
}

.manifesto-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: left;
}

.value h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ember);
  margin-bottom: 10px;
}

.value p {
  font-size: 0.82rem;
  color: var(--ivory-muted);
  line-height: 1.7;
}

/* ── CLOSING ───────────────────────── */

.closing {
  padding: 140px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 135, 58, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--ivory-dim);
  margin-bottom: 48px;
}

.closing-services {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.closing-services span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

/* ── FOOTER ────────────────────────── */

.footer {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ember);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--ivory-muted);
  line-height: 1.6;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 0.75rem;
  color: var(--ivory-muted);
  line-height: 1.7;
}

.footer-copy {
  margin-top: 12px;
  font-style: italic;
}

/* ── RESPONSIVE ────────────────────── */

@media (max-width: 900px) {
  .ritual-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-values { grid-template-columns: repeat(2, 1fr); }
  .guiding-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

/* ═══════════════════════════════════
   INTAKE OPTIMIZATIONS
   Trust bar, quick-pick, progress, testimonials, multi-step form
   ═══════════════════════════════════ */

/* ── TRUST BAR ─────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ember);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
  min-width: 160px;
}

.trust-item span { color: var(--ivory-dim); }

.trust-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 20px;
  flex-shrink: 0;
}

/* ── SERVICE QUICK-PICK ─────────────── */
.service-quickpick {
  margin-bottom: 48px;
}

.quickpick-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 16px;
}

.quickpick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quickpick-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ivory-dim);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}

.quickpick-btn:hover {
  border-color: var(--ember-dim);
  background: var(--bg-surface);
}

.quickpick-btn.selected {
  border-color: var(--ember);
  background: rgba(200, 135, 58, 0.08);
}

.qp-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
}

.qp-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ember);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── PROGRESS BAR ───────────────────── */
.form-progress {
  margin-bottom: 36px;
}

.progress-steps {
  display: flex;
  align-items: center;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.done {
  opacity: 0.7;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ivory-muted);
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.progress-step.active .step-dot {
  background: var(--ember);
  border-color: var(--ember);
}

.progress-step.done .step-dot {
  background: var(--ember-dim);
  border-color: var(--ember-dim);
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  white-space: nowrap;
}

.progress-step.active .step-label { color: var(--ivory); }

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 12px;
}

/* ── TESTIMONIALS ────────────────────── */
.testimonials-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg-card);
}

.testimonial-card { padding: 0; }

.t-stars {
  color: var(--ember);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-text {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ivory-dim);
  line-height: 1.65;
  margin-bottom: 12px;
}

.t-meta {
  font-size: 0.72rem;
  color: var(--ivory-muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── MULTI-STEP FORM ────────────────── */
.form-step {
  display: none;
  flex-direction: column;
  gap: 28px;
}

.form-step.active {
  display: flex;
}

.step-nav {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.step-nav-between {
  justify-content: space-between;
}

.step-nav-top {
  padding-top: 0;
  padding-bottom: 8px;
}

.step-next {
  background: var(--ember);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s;
}

.step-next:hover { background: #d4923f; }

.step-back {
  background: transparent;
  color: var(--ivory-muted);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.step-back:hover { color: var(--ivory); }

/* ── CONFIRM STEP ───────────────────── */
.confirm-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
}

.confirm-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 16px;
}

.confirm-service {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  margin-bottom: 20px;
}

.confirm-service strong {
  color: var(--ember);
  font-weight: 600;
}

.confirm-note {
  font-size: 0.85rem;
  color: var(--ivory-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ── INTAKE FORM FOOTER (submit row) ── */
.intake-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}

/* ═══════════════════════════════════
   PACKAGES PAGE
   ═══════════════════════════════════ */

/* ── HEADER ─────────────────────────── */

.packages-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 6, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.packages-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.packages-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ember);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.packages-nav {
  display: flex;
  gap: 32px;
}

.packages-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.packages-nav a:hover,
.packages-nav a.nav-active {
  color: var(--ivory);
}

/* ── PACKAGES HERO ────────────────────── */

.pkgs-hero-push { height: 64px; }

.pkg-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.pkg-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 60% 30%, #1a100a 0%, var(--bg) 70%);
}

.pkg-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  max-width: 680px;
}

.pkg-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.pkg-hero-lede {
  font-size: 1.05rem;
  color: var(--ivory-dim);
  max-width: 500px;
  line-height: 1.8;
}

/* ── PACKAGES GRID ─────────────────────── */

.packages-grid-section {
  padding: 80px 0 100px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.pkg-card:hover {
  border-color: var(--border-bright);
}

.pkg-card-featured {
  border-color: var(--ember-dim);
}

.pkg-card-featured:hover {
  border-color: var(--ember);
}

.pkg-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ember);
  padding: 5px 12px;
}

.pkg-card-icon {
  color: var(--ember);
  margin-bottom: 20px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
  line-height: 1.2;
}

.pkg-tagline {
  font-size: 0.85rem;
  color: var(--ivory-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pkg-price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ember);
}

.pkg-price-note {
  font-size: 0.78rem;
  color: var(--ivory-muted);
}

.pkg-features {
  list-style: none;
  margin-bottom: 24px;
}

.pkg-features li {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pkg-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ember-dim);
  font-size: 0.75rem;
  top: 8px;
}

.pkg-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ivory-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pkg-cta {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.pkg-cta-primary {
  background: var(--ember);
  color: var(--bg);
}

.pkg-cta-primary:hover {
  background: #d4923f;
  color: var(--bg);
}

.pkg-cta-secondary {
  background: transparent;
  color: var(--ember);
  border: 1px solid var(--ember-dim);
}

.pkg-cta-secondary:hover {
  border-color: var(--ember);
  color: var(--ember);
}

/* ── PROCESS NOTE ─────────────────────── */

.pkg-process-note {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 48px;
}

.pkg-process-inner { max-width: 700px; }

.pkg-process-text {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-top: 16px;
}

/* ── INTAKE FORM ──────────────────────── */

.intake-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.intake-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}

.intake-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.2;
}

.intake-subtitle {
  font-size: 0.92rem;
  color: var(--ivory-muted);
  margin-bottom: 56px;
  line-height: 1.7;
}

.intake-form { display: flex; flex-direction: column; gap: 28px; }

.form-row { display: flex; flex-direction: column; gap: 28px; }

.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.required { color: var(--ember); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ivory-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ember-dim);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238a5c26' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option { background: var(--bg-card); color: var(--ivory); }

.form-group textarea { resize: vertical; min-height: 140px; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--ivory-muted);
  line-height: 1.6;
  max-width: 380px;
}

.form-submit {
  background: var(--ember);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-submit:hover:not(:disabled) { background: #d4923f; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── FORM FEEDBACK ────────────────────── */

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(200, 135, 58, 0.08);
  border: 1px solid var(--ember-dim);
  padding: 24px 28px;
  color: var(--ember);
}

.form-success strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.form-success p { font-size: 0.82rem; color: var(--ivory-dim); }

.form-error {
  background: rgba(180, 60, 40, 0.1);
  border: 1px solid rgba(180, 60, 40, 0.3);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: #e07060;
}

/* ── RESPONSIVE ────────────────────── */

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .quickpick-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-strip { grid-template-columns: 1fr; }
  .trust-bar { gap: 8px; }
  .trust-sep { display: none; }
}

@media (max-width: 600px) {
  .packages-header-inner,
  .packages-inner,
  .intake-inner { padding: 0 24px; }
  .pkg-hero-content { padding: 60px 24px; }
  .packages-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
  .form-disclaimer { max-width: none; }
  .pkg-process-note { padding: 32px 24px; }
  .quickpick-grid { grid-template-columns: 1fr; }
  .progress-steps { gap: 6px; }
  .step-label { display: none; }
  .trust-bar { flex-direction: column; align-items: flex-start; }
}