/* Talisman Repair Estimator — styles */

:root {
  --navy: #1a2744;
  --blue: #2c4a7c;
  --gold: #b8965a;
  --gold-light: #d4b87a;
  --gold-pale: rgba(184, 150, 90, 0.12);
  --cream: #faf8f5;
  --cream-deep: #f3efe8;
  --charcoal: #2d2d2d;
  --muted: #6b7280;
  --white: #ffffff;
  --border: rgba(184, 150, 90, 0.35);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 4px 24px rgba(26, 39, 68, 0.08);
  --shadow-card: 0 2px 12px rgba(26, 39, 68, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.3;
}

a { color: var(--gold); }

img { max-width: 100%; height: auto; }

.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container--estimator {
  max-width: 1400px;
}

.container-wide {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
}

.site-header--centered .site-header__inner {
  justify-content: center;
}

.site-logo { text-decoration: none; color: inherit; }

.site-logo__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 82px;
  max-width: 186px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .site-logo__img {
    max-height: 102px;
    max-width: 232px;
  }
}

.site-logo__text { display: flex; flex-direction: column; gap: 0.15rem; }

.site-logo__primary {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
}

@media (min-width: 640px) {
  .site-logo__primary { font-size: 1.85rem; }
}

.site-logo__secondary {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.site-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
}

.site-nav a { color: var(--navy); text-decoration: none; }
.site-nav a:hover { color: var(--gold); }

.btn-call-mobile {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .site-nav { display: flex; }
  .btn-call-mobile { display: none; }
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 3rem 1.25rem 3.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero__inner {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-pale);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.75rem);
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero__lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: #4f5663;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.hero__lead-emphasis {
  color: var(--navy);
  font-family: inherit;
  font-weight: 500;
  letter-spacing: inherit;
}

.hero__trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: left;
}

.hero__trust-bar--wizard {
  max-width: none;
  margin-top: 0.85rem;
  text-align: left;
}

@media (min-width: 540px) {
  .hero__trust-bar { grid-template-columns: 1fr 1fr 1fr; }
  .hero__trust-bar--wizard { grid-template-columns: 1fr 1fr 1fr; }
}

.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  font-size: 0.75rem;
  color: var(--navy);
  line-height: 1.4;
}

.trust-pill svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 1px;
}

.trust-pill strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(184, 150, 90, 0.45);
  border-radius: 2px;
  color: var(--navy);
  background: var(--white);
}

.wizard {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  margin: 1rem auto 2.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .wizard { padding: 2rem 2.25rem; margin-top: 1.25rem; }
}

.step-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.progress { margin-bottom: 1rem; }

.progress__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
}

.progress__meta span:last-child { color: var(--muted); }

.progress__bar { display: flex; gap: 4px; }

.progress__dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
}

.progress__dot.is-active { background: var(--gold); }

.step-title { font-size: 1.25rem; margin: 0 0 0.5rem; }

.step-help { font-size: 0.875rem; color: var(--muted); margin: 0 0 1rem; }

.step-help--strong { font-weight: 500; color: var(--navy); }

.option-grid { display: grid; gap: 1rem; }

@media (min-width: 480px) {
  .option-grid--2 { grid-template-columns: 1fr 1fr; }
}

/* Repair type selection — wide grid on desktop, stacked on mobile */
.option-grid--repairs {
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .option-grid--repairs { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .option-grid--repairs { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .option-grid--repairs { grid-template-columns: repeat(5, 1fr); }
}

.option-grid--repairs .option-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  padding: 1rem 0.7rem 1.05rem;
  gap: 0.55rem;
  border-color: #ebe6de;
}

.option-grid--repairs .option-card:hover {
  box-shadow: 0 3px 16px rgba(26, 39, 68, 0.07);
}

.option-grid--repairs .option-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(184, 150, 90, 0.1);
}

.option-grid--repairs .option-card__icon .repair-icon,
.option-grid--repairs .option-card__icon svg {
  width: 21px;
  height: 21px;
}

.option-grid--repairs .option-card__content {
  align-items: center;
  gap: 0.3rem;
}

.option-grid--repairs .option-card__title {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: #141f38;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.option-grid--repairs .option-card__desc {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #8b9199;
  font-weight: 400;
}

.option-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 72px;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid #e8e4de;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.option-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.option-card.is-selected {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}

.option-card--center {
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 1.35rem 1.25rem;
}

.option-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 2px;
}

.option-card__icon .repair-icon,
.option-card__icon svg {
  width: 24px;
  height: 24px;
}

.option-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.option-card--center .option-card__content {
  align-items: center;
}

.option-card__title {
  display: block;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.35;
}

.option-card__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 1.5rem;
  border: 2px dashed rgba(184, 150, 90, 0.5);
  background: rgba(250, 248, 245, 0.5);
  cursor: pointer;
  text-align: center;
}

.upload-zone:hover { border-color: var(--gold); background: var(--cream); }
.upload-zone input { display: none; }
.upload-zone__icon { font-size: 2rem; margin-bottom: 0.5rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 480px) { .photo-grid { grid-template-columns: repeat(5, 1fr); } }

.photo-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.photo-grid__item img { width: 100%; height: 100%; object-fit: cover; }

.photo-grid__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 39, 68, 0.85);
  color: white;
  cursor: pointer;
}

.field { margin-bottom: 1rem; }

.field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.35rem; }
.field label .req { color: var(--gold); }

.field--error .input {
  border-color: #e8b4b4;
  background: #fffbfb;
}

.field-error {
  font-size: 0.75rem;
  color: #991b1b;
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.field-error[hidden] { display: none; }

.consent-error {
  font-size: 0.75rem;
  color: #991b1b;
  margin: 0.5rem 0 0;
}

.consent-error[hidden] { display: none; }

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  line-height: 1.5;
}

.wizard-nav-alt {
  margin-top: 0.75rem;
  text-align: center;
}

.btn--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.btn--text:hover { color: var(--navy); }

.input, .textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 2px;
}

.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

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

.field-row { display: grid; gap: 1rem; }

@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label input { margin-top: 0.2rem; accent-color: var(--gold); }

.estimate-box {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.estimate-box__label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

.estimate-box__range {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  color: var(--navy);
  margin: 0.5rem 0 0;
  letter-spacing: 0.02em;
}

.estimate-box__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 1.5rem 0 0;
}

/* Trust — premium presentation */
.trust { margin-bottom: 0; }

.trust--premium {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  margin: 0 -1.5rem -1.5rem;
  border: none;
}

@media (min-width: 640px) {
  .trust--premium { margin: 0 -2.5rem -2.25rem; padding: 3rem 2rem; }
}

.trust__header { text-align: center; max-width: 32rem; margin: 0 auto 2rem; }

.trust__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}

.trust__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  font-weight: 400;
}

.trust__lead {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0;
}

.trust__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 540px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 184, 122, 0.25);
  border-radius: 2px;
}

.trust-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--gold-light);
}

.trust-card__icon svg { width: 22px; height: 22px; }

.trust-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.trust-card__body strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.wizard-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  justify-content: flex-end;
}

.wizard-nav .btn--primary {
  min-width: 11.5rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .wizard-nav .btn--primary {
    min-width: 13.5rem;
    padding-left: 1.65rem;
    padding-right: 1.65rem;
  }
}

.wizard-trust-reassurance {
  margin: 1.15rem 0 0;
  padding-top: 0.85rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(107, 114, 128, 0.9);
  line-height: 1.6;
}

.wizard-trust-reassurance__sep {
  margin: 0 0.55em;
  color: var(--gold);
  font-weight: 400;
  opacity: 0.85;
}

@media (max-width: 639px) {
  .wizard-nav {
    position: sticky;
    bottom: 0;
    background: var(--white);
    margin: 2rem -1.25rem -1.25rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.04);
    justify-content: stretch;
  }

  .wizard-nav .btn--primary:only-child,
  .wizard-nav .btn--primary:last-child:nth-child(1) {
    flex: 1;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--primary { flex: 1; background: var(--navy); color: var(--white); letter-spacing: 0.06em; }
.btn--primary:hover:not(:disabled) { background: var(--blue); }
.btn--gold { flex: 1; background: var(--gold); color: var(--white); letter-spacing: 0.06em; }
.btn--gold:hover:not(:disabled) { background: var(--gold-light); }
.btn--secondary { background: var(--white); color: var(--navy); border: 1px solid var(--navy); }

.alert { padding: 0.75rem 1rem; border-radius: 2px; font-size: 0.875rem; margin-bottom: 1.5rem; }
.alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert--success { background: rgba(184, 150, 90, 0.1); border: 1px solid var(--border); }

.confirmation { text-align: center; padding: 2rem 1rem; }

.confirmation__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 150, 90, 0.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.5rem;
}

.confirmation__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .confirmation__actions { flex-direction: row; justify-content: center; }
}

.section { padding: 3rem 1rem; }
.section--white { background: var(--white); border-top: 1px solid var(--border); }
.section--navy { background: var(--navy); color: var(--white); text-align: center; }
.section--navy h2 { color: var(--white); }
.section--navy a { color: var(--gold-light); }

.faq dt { font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.faq dd { color: var(--muted); margin: 0 0 1.5rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer__name { font-family: var(--font-serif); color: var(--navy); }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact-intro {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  padding: 0 0.5rem;
}

.results-step__greeting {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  text-align: center;
  margin: 0 0 1.5rem;
}

.results-step__cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.results-step .trust--premium {
  margin: 1.5rem 0 0;
  border-radius: 2px;
}

.results-step .estimate-box {
  margin-bottom: 0;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.hero-section-wrap {
  background: var(--cream-deep);
  padding: 0.35rem 0 1.5rem;
}

/* Desktop — fit repair step above the fold; trim hero + card padding, keep card size */
@media (min-width: 1024px) {
  .site-header__inner {
    padding: 0.6rem 1.5rem;
  }

  .hero {
    padding: 0.9rem 1.5rem 0.75rem;
  }

  .hero__inner {
    max-width: 56rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: none;
    color: #4a5160;
    margin-bottom: 0;
  }

  .hero__lead-emphasis {
    font-weight: 500;
  }

  .hero-section-wrap {
    padding-top: 0.4rem;
    padding-bottom: 1rem;
  }

  .wizard {
    padding: 1rem 1.75rem 0.85rem;
    margin-top: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .wizard:has(.option-grid--repairs) {
    padding-bottom: 0;
  }

  .progress {
    margin-bottom: 0.5rem;
  }

  .progress__meta {
    margin-bottom: 0.2rem;
  }

  .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .step-help {
    font-size: 0.8125rem;
    margin-bottom: 0.6rem;
  }

  .option-grid--repairs {
    gap: 0.65rem;
    margin-bottom: 0.25rem;
  }

  .wizard:has(.option-grid--repairs) .wizard-nav {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: 0.65rem;
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    padding: 0.65rem 1.75rem 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--white) 28%);
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 -10px 24px rgba(255, 255, 255, 0.95);
  }

  .wizard:has(.option-grid--repairs) .wizard-trust-reassurance {
    margin-top: 0;
    padding-top: 0.35rem;
    padding-bottom: 0.65rem;
    font-size: 0.6rem;
    letter-spacing: 0.17em;
  }

  .wizard-nav {
    margin-top: 1rem;
    padding-top: 0.65rem;
  }

  .wizard-trust-reassurance {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
  }
}

/* Shopify embed — seamless in-page experience (auto-detect iframe or ?embed=1) */
html.embed-mode,
html.embed-mode body {
  background: transparent;
  margin: 0;
}

html.embed-mode .embed-chrome,
html.embed-mode .site-header,
html.embed-mode .site-footer,
html.embed-mode .section--white,
html.embed-mode .section--navy {
  display: none !important;
}

html.embed-mode main {
  padding: 0;
}

html.embed-mode .hero {
  padding: 0.5rem 1rem 0.35rem;
  margin: 0;
  border-bottom: none;
  background: transparent;
}

html.embed-mode .hero h1 {
  margin-bottom: 0.5rem;
}

html.embed-mode .hero::before,
html.embed-mode .hero::after {
  display: none;
}

html.embed-mode .hero-section-wrap {
  background: transparent;
  padding: 0 0 0.25rem;
}

html.embed-mode .container--estimator {
  padding-top: 0;
}

html.embed-mode .wizard {
  box-shadow: none;
  border: none;
  margin-top: 0;
}
