:root {
  /* Second Nature palette: warm ivory base, plum depth, rose-gold actions only */
  --bg: #F3EFE7;         /* warm ivory, main background */
  --surface: #FBF8F2;    /* raised cards / alternating sections */
  --plum: #33263A;       /* deep aubergine feature sections, footer */
  --plum-ink: #2E2233;   /* headings on light background */
  --ink: #2A2530;        /* body text */
  --ink-soft: #6B6270;   /* muted body text, captions */
  --sage: #93A188;       /* quiet secondary: thin borders, decorative accents */
  --sage-ink: #5A6553;   /* darkened sage for eyebrow/label TEXT (passes AA) */
  --rose: #B76E79;       /* rose gold reference tone */
  --rose-deep: #8E5158;  /* rose gold for buttons / links / actions, deepened per review (AA on light + white text) */
  --rose-press: #73424B; /* pressed / hover */
  --line: #E4DED2;       /* hairline dividers */

  /* Semantic aliases so existing rules pick up the new palette */
  --color-bg: var(--bg);
  --color-surface: var(--surface);
  --color-secondary: #ECE5D8;         /* subtle warm tint for chips / tracks */
  --color-primary: var(--sage);       /* decorative borders / accents */
  --color-primary-dark: var(--plum);
  --color-accent: var(--rose-deep);   /* actions */
  --color-accent-hover: var(--rose-press);
  --color-cta-text: #FBF8F2;
  --color-text: var(--ink);
  --color-text-muted: var(--ink-soft);
  --color-border: var(--line);
  --color-text-on-dark: #F5F0E8;
  --color-text-muted-on-dark: rgba(245, 240, 232, 0.82);
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
}

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

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

nav .brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--color-text);
}

nav a.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--sage-ink);
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--color-primary-dark);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 22, 36, 0.58) 0%, rgba(31, 22, 36, 0.46) 45%, rgba(31, 22, 36, 0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: 2.75rem;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
  color: var(--color-text-on-dark);
}

.hero-content .eyebrow {
  color: rgba(247, 243, 234, 0.85);
}

.hero-content .avatar-line {
  font-style: italic;
  color: var(--color-text-muted-on-dark);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}

.hero-content .cta-note {
  color: var(--color-text-muted-on-dark);
}

.cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--color-accent);
  color: var(--color-cta-text);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.cta:hover {
  background: var(--color-accent-hover);
}

.cta-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--color-text-muted-on-dark);
}

section {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section.alt {
  max-width: 100%;
  background: var(--surface);
}

/* Plum feature sections (guarantee, and any deep-depth band) */
section.feature {
  max-width: 100%;
  background: var(--plum);
}

section.feature > .inner {
  max-width: 720px;
  margin: 0 auto;
}

section.feature .eyebrow {
  color: var(--sage);
}

section.feature h2,
section.feature p,
section.feature strong {
  color: var(--color-text-on-dark);
}

section.feature .guarantee-box {
  background: rgba(245, 240, 232, 0.06);
  border-left-color: var(--sage);
}

section.feature .guarantee-box .tier-note {
  color: var(--color-text-on-dark);
}

section.feature .cta {
  margin-top: 1.75rem;
}

.about-cta {
  margin-top: 1.75rem;
}

section.alt > .inner {
  max-width: 720px;
  margin: 0 auto;
}

section h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--plum-ink);
}

section p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Editorial measure on long-form paragraphs (66ch per review); centered blocks excluded */
section > p:not(.eyebrow):not(.final-cta-lede):not(.bonus-guarantee),
.split-text > p:not(.eyebrow),
section.feature .inner > p:not(.eyebrow) {
  max-width: 66ch;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.proof-list li {
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-primary);
  color: var(--color-text);
  font-size: 1.05rem;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.includes-list li {
  font-size: 1.05rem;
}

.includes-list li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.about-intro {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

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

.cv-list li {
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-primary);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-box {
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  background: var(--color-surface);
}

.pricing-box .tier-note {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.timeline-item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--color-primary);
  border-radius: 6px;
  background: var(--color-surface);
}

.timeline-item .milestone {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.timeline-item p:not(.milestone) {
  margin: 0;
}

.guarantee-box {
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  background: var(--color-surface);
}

.guarantee-box .tier-note {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.bonus-list {
  list-style: none;
  counter-reset: bonus;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.bonus-list li {
  counter-increment: bonus;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3.25rem;
  background: var(--color-surface);
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
}

.bonus-list li::before {
  content: counter(bonus);
  position: absolute;
  top: 1.5rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--plum);
  color: var(--color-text-on-dark);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 700;
}

.bonus-guarantee {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  background: var(--color-secondary);
  border-left: 3px solid var(--plum);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.bonus-list .objection {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 0.35rem;
}

.bonus-list .bonus-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.bonus-list .bonus-promise {
  font-style: italic;
  color: var(--plum-ink);
  margin: 0 0 0.6rem;
}

.bonus-list li p:last-child {
  margin: 0;
}

.final-cta {
  text-align: center;
  padding: 4rem 1.5rem;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--plum-ink);
}

.final-cta-lede {
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 1.75rem;
}

/* Real client proof slots: empty placeholders, real photos only */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.proof-pair {
  margin: 0;
}

.proof-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
  padding: 1.5rem;
  border: 1px dashed var(--sage);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.proof-pair figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 720px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Client testimonials */
.testimonials {
  max-width: 100%;
  background: var(--bg);
  padding: 3.5rem 1.5rem;
}

.testimonials .inner {
  max-width: 1120px;
  margin: 0 auto;
}

.t-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.t-head h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--plum-ink);
  margin: 0.4rem 0 0.5rem;
}

.t-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 1px 2px rgba(46, 34, 51, 0.05);
  display: flex;
  flex-direction: column;
}

.t-stars {
  color: var(--rose);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin: 0 0 0.85rem;
}

.t-quote {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.t-quote p {
  margin: 0 0 0.75rem;
}

.t-quote p:last-child {
  margin-bottom: 0;
}

.t-attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.t-avatar {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--plum);
  color: var(--color-text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Mobile-only collapse: cards past the second hide behind the show-more button */
.t-toggle {
  display: none;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.75rem;
  background: none;
  border: 1px solid var(--rose-deep);
  border-radius: 6px;
  color: var(--rose-deep);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 720px) {
  .t-grid:not(.is-expanded) .t-card:nth-child(n+3) {
    display: none;
  }

  .t-toggle {
    display: block;
  }

  .t-grid.is-expanded ~ .t-toggle {
    display: none;
  }
}

.t-more {
  text-align: center;
  margin: 2.25rem 0 0;
}

.t-more a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
}

.t-name {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--plum-ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.t-meta {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.3;
}

section.split {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse .split-media {
  order: -1;
}

.split-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Headshot: bias the crop toward the face so the eyes sit in the upper third */
.split-media img.about-photo {
  object-position: center 28%;
}

/* Portrait gym shot in a landscape slot: default centring cuts Igor's head off,
   so bias the crop upward to keep both faces in frame at every width. */
.split-media img.promise-photo {
  object-position: center 15%;
}

.image-band {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.image-band img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  section.split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .split-media img {
    max-height: 280px;
  }

  .hero-content {
    padding: 4.5rem 1.25rem 3rem;
  }

  .hero-content h1 {
    font-size: 2.05rem;
  }

  section h2,
  .booking h1 {
    font-size: 1.6rem;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }
}

footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--plum);
  color: var(--color-text-muted-on-dark);
  font-size: 0.9rem;
  border-top: none;
}

footer a {
  color: var(--color-text-on-dark);
}

.squeeze ~ footer {
  color: var(--color-text-muted-on-dark);
  border-top: 1px solid rgba(247, 243, 234, 0.25);
}

body:has(.squeeze) nav .brand {
  color: var(--color-text-on-dark);
}

body:has(.squeeze) nav a.nav-link {
  color: var(--color-text-muted-on-dark);
}

.squeeze-media {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.squeeze-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.squeeze-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 22, 36, 0.86) 0%, rgba(31, 22, 36, 0.95) 40%, var(--plum) 75%);
}

.squeeze {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem 4rem;
  text-align: center;
}

.squeeze h1 {
  font-family: var(--serif);
  font-size: 2.25rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--color-text-on-dark);
}

.squeeze .eyebrow {
  color: rgba(247, 243, 234, 0.85);
}

.squeeze-lede {
  font-size: 1.1rem;
  color: var(--color-text-muted-on-dark);
  margin-bottom: 1.75rem;
}

.trust-accent {
  display: block;
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  margin: 0 auto 2rem;
}

.trust-line {
  border-left: 3px solid rgba(247, 243, 234, 0.5);
  padding-left: 1rem;
  color: var(--color-text-muted-on-dark);
  font-size: 0.98rem;
  margin: 0 0 2.25rem;
  text-align: left;
}

.form-footnote {
  font-size: 0.85rem;
  color: var(--color-text-muted-on-dark);
  text-align: center;
  margin-top: 1.5rem;
}

.form-footnote a {
  color: var(--color-text-on-dark);
}

/* Booking (apply) page */

.booking {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.booking h1 {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0.5rem 0 1.25rem;
  color: var(--plum-ink);
}

.booking-lede {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.booking .trust-line {
  border-left: 3px solid var(--sage);
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  margin: 0 0 2rem;
  text-align: left;
}

.booking .calendly-inline-widget {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.booking .form-footnote {
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}

.booking .form-footnote a {
  color: var(--color-accent);
}

/* Quiz */

.quiz {
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.quiz-intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
}

.quiz-progress {
  height: 6px;
  border-radius: 3px;
  background: var(--color-secondary);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  transition: width 0.25s ease;
  width: 14.28%;
}

.quiz-step {
  display: none;
}

.quiz-step.is-active {
  display: block;
}

.quiz-step .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

.quiz-step h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 1.75rem;
}

.quiz-options {
  display: grid;
  gap: 0.75rem;
}

.quiz-option {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.quiz-option:has(input:checked) {
  border-color: var(--rose-deep);
  box-shadow: inset 0 0 0 1px var(--rose-deep);
  background: var(--color-secondary);
  font-weight: 600;
}

.quiz-option input {
  margin-right: 0.75rem;
}

.quiz-textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  font-family: var(--sans);
  font-size: 1rem;
  resize: vertical;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1rem;
}

.quiz-back {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem;
  visibility: hidden;
}

.quiz-back.is-visible {
  visibility: visible;
}

.quiz-nav .cta {
  margin-left: auto;
}

.quiz-nav .cta:disabled {
  background: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

.quiz-error {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}

.quiz-error.is-visible {
  display: block;
}

/* Opt-in / resource page */

.optin-form {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  text-align: left;
}

.optin-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.optin-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--color-surface);
}

.optin-form button {
  justify-self: start;
}

.door-open {
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
}

.guide-checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.guide-checklist li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  font-size: 1.02rem;
}

.guide-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--color-primary);
  font-weight: 700;
}

.confirmation {
  max-width: 560px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.confirmation h1 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0.75rem 0 1.25rem;
}

/* Squeeze page (lead magnet capture). Own sq- prefix so the legacy
   .squeeze- rules from the old booking design cannot interfere. */
.sq-body {
  background: var(--bg);
}

.sq-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.sq-media img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.sq-brand {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage-ink);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.sq-form-side h1 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--plum-ink);
  margin: 0 0 1rem;
}

.sq-lede {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.sq-form {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.sq-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.sq-form .optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.sq-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--surface);
  color: var(--ink);
}

.sq-form input:focus {
  outline: 2px solid var(--rose-deep);
  outline-offset: 1px;
}

.sq-form button {
  justify-self: start;
}

.sq-error {
  color: var(--rose-press);
  font-size: 0.9rem;
  margin: 0;
  display: none;
}

.sq-error.is-visible {
  display: block;
}

.sq-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  max-width: 420px;
}

@media (max-width: 760px) {
  .sq-page {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-top: 2rem;
  }

  .sq-media img {
    max-width: 100%;
    max-height: 340px;
  }

  .sq-form-side h1 {
    font-size: 1.6rem;
  }
}

/* Thank-you and nurture-exit pages */
.thanks-lede {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto 1.75rem;
}

.thanks-email {
  font-size: 0.9rem;
  color: var(--sage-ink);
  margin-top: 1rem;
}

.thanks-bridge {
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  text-align: left;
  max-width: 560px;
}

.thanks-bridge p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
}

.thanks-bridge .cta {
  margin-top: 1rem;
}
