/* ============================================
   SPA REPAIR SAN DIEGO
   ============================================ */

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

:root {
  --charcoal: #0f172a;
  --charcoal-2: #1e293b;
  --charcoal-3: #334155;
  --amber: #f59e0b;
  --amber-2: #d97706;
  --amber-3: #b45309;
  --cream: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --green: #10b981;
  --red: #ef4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-lg: 0 10px 40px rgba(15,23,42,0.10);
  --shadow-xl: 0 20px 60px rgba(15,23,42,0.18);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--stone-800);
  line-height: 1.65;
  background: var(--cream);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stone-900);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--stone-700); }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--stone-900);
}
.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.btn-dark {
  background: var(--charcoal);
  color: white;
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: white;
}
.btn-ghost-light {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--stone-900);
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--charcoal);
  color: var(--amber);
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}
.logo-text-sm { font-size: 0.6rem; color: var(--stone-500); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; line-height: 1; }
.logo-text-lg { font-size: 1.05rem; line-height: 1.1; }
.logo-block { display: flex; flex-direction: column; gap: 2px; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--stone-700);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); font-weight: 600; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--stone-300);
  border-radius: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--charcoal);
  position: relative;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: ''; position: absolute;
  left: 0; width: 18px; height: 2px;
  background: var(--charcoal);
}
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .mobile-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--stone-200);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 4px;
  color: var(--stone-800);
  font-weight: 500;
  border-bottom: 1px solid var(--stone-200);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 8px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: white;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15,23,42,0.5) 0%,
    rgba(15,23,42,0.55) 50%,
    rgba(15,23,42,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
  max-width: 760px;
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 .accent {
  color: var(--amber);
  display: block;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(245,158,11,0.18);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .check {
  color: var(--amber);
  font-weight: 700;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: var(--charcoal); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-cream { background: var(--stone-100); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--amber-2);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.1rem;
  color: var(--stone-500);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: white;
  border-top: 1px solid var(--stone-200);
  border-bottom: 1px solid var(--stone-200);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item .stat {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item .label {
  font-size: 0.82rem;
  color: var(--stone-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   SERVICE GRID
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--stone-100);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--amber-2);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p {
  color: var(--stone-500);
  font-size: 0.95rem;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-2);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 16px;
}
.service-card .learn:hover { gap: 10px; }

/* ============================================
   "WHY US" / FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature {
  text-align: left;
}
.feature-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber-2);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--stone-500); font-size: 0.97rem; }

/* ============================================
   SPLIT (image + text)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-flip { direction: rtl; }
.split-flip > * { direction: ltr; }
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.split-image-square { aspect-ratio: 1/1; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { font-size: 1.05rem; color: var(--stone-700); margin-bottom: 16px; }
.split-text .checks {
  list-style: none;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.split-text .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--stone-700);
}
.split-text .checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--amber);
  color: var(--charcoal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 2px;
}

@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
  position: relative;
  transition: var(--transition);
}
.price-card.featured {
  background: var(--charcoal);
  color: white;
  border-color: var(--amber);
  transform: scale(1.02);
}
.price-card.featured h3, .price-card.featured .price { color: white; }
.price-card.featured p { color: rgba(255,255,255,0.7); }
.price-card.featured ul li { color: rgba(255,255,255,0.85); }
.price-card .badge {
  position: absolute;
  top: -12px; left: 32px;
  background: var(--amber);
  color: var(--charcoal);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .tagline { font-size: 0.92rem; color: var(--stone-500); margin-bottom: 24px; }
.price-card .price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-card .price-unit {
  font-size: 0.92rem;
  color: var(--stone-500);
  margin-bottom: 24px;
}
.price-card.featured .price-unit { color: rgba(255,255,255,0.6); }
.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}
.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--stone-700);
}
.price-card ul li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 800;
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }

/* Service pricing table */
.price-table {
  width: 100%;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.price-table thead { background: var(--stone-100); }
.price-table th {
  text-align: left;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone-700);
  border-bottom: 1px solid var(--stone-200);
}
.price-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--stone-200);
  vertical-align: top;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .svc { font-weight: 600; color: var(--stone-900); }
.price-table .desc { font-size: 0.9rem; color: var(--stone-500); }
.price-table .cost { font-weight: 700; color: var(--charcoal); white-space: nowrap; text-align: right; }

@media (max-width: 720px) {
  .price-table thead { display: none; }
  .price-table tr {
    display: block;
    padding: 18px;
    border-bottom: 1px solid var(--stone-200);
  }
  .price-table td {
    display: block;
    padding: 4px 0;
    border: none;
    text-align: left !important;
  }
  .price-table .cost { margin-top: 6px; }
}

/* ============================================
   FORM
   ============================================ */
.form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stone-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 6px;
}
.form-group label .opt { color: var(--stone-400); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--stone-300);
  font-family: var(--font);
  font-size: 0.97rem;
  background: var(--cream);
  color: var(--stone-900);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 0.84rem; color: var(--stone-500); margin-top: 6px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; padding: 16px; font-size: 1rem; }
.form-disclaimer { font-size: 0.82rem; color: var(--stone-500); margin-top: 16px; text-align: center; }

@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 24px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-200);
}
.testimonial .stars {
  color: var(--amber);
  margin-bottom: 14px;
  font-size: 1rem;
}
.testimonial blockquote {
  font-size: 1rem;
  color: var(--stone-800);
  margin-bottom: 20px;
  line-height: 1.65;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--stone-200);
  padding-top: 16px;
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--amber);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial .author-info {
  font-size: 0.92rem;
}
.testimonial .author-name { font-weight: 700; color: var(--stone-900); }
.testimonial .author-loc { color: var(--stone-500); font-size: 0.85rem; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--stone-200);
  padding: 20px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--stone-900);
  cursor: pointer;
  padding: 4px 0;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--amber-2);
  transition: transform 0.3s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 14px 0 4px;
  color: var(--stone-700);
  font-size: 0.97rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--charcoal);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: -80px; bottom: 0;
  width: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
}
.cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-grid h2 { color: white; margin-bottom: 14px; }
.cta-grid p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-phone {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.cta-phone .label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.cta-phone .num { font-size: 1.5rem; font-weight: 800; color: white; }
@media (max-width: 880px) {
  .cta-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--stone-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h4 {
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer ul a { color: rgba(255,255,255,0.65); }
.footer ul a:hover { color: var(--amber); }
.footer-brand { max-width: 320px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin-top: 14px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  background: var(--charcoal);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.2), transparent 60%);
}
.page-header-content { position: relative; z-index: 1; max-width: 720px; }
.page-header h1 { color: white; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.85rem;
  color: var(--amber);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--amber); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 24px;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--charcoal);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  font-weight: 800;
}
.success-wrap h1 { margin-bottom: 12px; }
.success-wrap p { font-size: 1.1rem; color: var(--stone-500); margin-bottom: 32px; max-width: 520px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.amber { color: var(--amber-2); }
