/* therapy.handconsultsa.com — ad landing page
   ---------------------------------------------------------------------------
   Design tokens copied verbatim from handconsultsa-website/assets/site.css
   (the 25 Jul re-theme) so this page reads as part of the same family.
   Everything else is landing-page specific: no nav, no blog, no article
   styles — only what this one page needs, for load speed.

   Two deliberate deviations from the main site, both for the ad audience,
   which the brief notes skews older:
     - body text is weight 400 at 1.06rem (the main site uses a thin 300)
     - tap targets are a minimum of 48px tall
   --------------------------------------------------------------------------- */

:root {
  --cream:      #FBF9F5;
  --cream-2:    #F3EFE7;
  --ink:        #1B2523;
  --ink-soft:   #45524F;
  --navy:       #0C1A28;
  --teal:       #2FC7BF;   /* bright teal — accents on DARK bands */
  --teal-dark:  #299F98;   /* readable teal — accents on LIGHT backgrounds */
  --teal-soft:  #F4F1EC;
  --teal-line:  #E6E4DF;
  --coral:      #F17F76;   /* primary CTA */
  --coral-press:#D95F55;
  --gold:       #B08D57;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  /* clip, not hidden: `hidden` turns body into a scroll container, which
     breaks scroll position reporting in some tools and on iOS. */
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}
h1 em, h2 em { font-style: italic; color: var(--teal-dark); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.center { text-align: center; }

.eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}

section { padding: 3.5rem 0; }
h2.title { font-size: 2rem; margin-bottom: 0.75rem; }
.lead { color: var(--ink-soft); max-width: 620px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Accessibility ----------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--teal-dark); outline-offset: 2px; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  padding: 0.85rem 1.8rem; min-height: 50px;
  border-radius: 100px; border: 1px solid transparent;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.btn-primary { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-press); border-color: var(--coral-press); }
.btn-wa { background: #128C7E; border-color: #128C7E; color: #fff; }
.btn-wa:hover { background: #0e7568; border-color: #0e7568; }
.btn-wa-ghost { background: transparent; border-color: rgba(255,255,255,0.65); color: #fff; }
.btn-wa-ghost:hover { background: rgba(255,255,255,0.14); }
.btn-block { width: 100%; }

/* Header — logo only. No nav: this is a landing page, not the website. ----- */
.site-header { background: var(--cream); border-bottom: 1px solid var(--cream-2); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.logo { text-decoration: none; line-height: 1; }
.logo .l1 {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: 1.35rem; letter-spacing: 0.12em; color: var(--ink);
}
.logo .l2 {
  display: block; margin-top: 3px; font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.3em; color: var(--teal-dark);
}
.header-wa {
  font-size: 0.88rem; padding: 0.6rem 1.15rem; min-height: 44px;
  white-space: nowrap;
}
.header-wa .label-long { display: none; }
.header-wa .label-short { display: inline; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; padding: 0;
  background: var(--navy);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,26,40,0.72) 0%, rgba(12,26,40,0.88) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 2.25rem; padding-bottom: 2.25rem; }
.hero-copy { max-width: 640px; }
.hero .eyebrow { color: var(--teal); }
/* Kept modest on small screens so the form isn't pushed too far down —
   the current headline is long. */
.hero h1 { color: #fff; font-size: 1.85rem; margin-bottom: 0.9rem; }
.hero h1 em { color: var(--teal); }
.hero-sub { color: #dfe6e4; font-size: 1.05rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* Lead form card ---------------------------------------------------------- */
.form-card {
  background: var(--cream); border-radius: 14px; padding: 1.3rem 1.15rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.form-card h2 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.form-card .form-intro { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.9rem; }
.form-card .privacy {
  margin-top: 0.7rem; font-size: 0.82rem; color: var(--ink-soft); text-align: center;
}

.field { margin-bottom: 0.75rem; }
.field label {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.3rem;
}
.field .optional { text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field textarea {
  display: block; width: 100%;
  font-family: var(--sans); font-size: 1.02rem; color: var(--ink);
  padding: 0.65rem 0.85rem; min-height: 48px;
  background: #fff;
  border: 1px solid #cfd3cf; border-radius: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 62px; resize: vertical; line-height: 1.45; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(41,159,152,0.18);
}
.field.invalid input, .field.invalid textarea { border-color: var(--coral-press); }
.field .err {
  display: none; margin-top: 0.35rem;
  font-size: 0.84rem; color: var(--coral-press);
}
.field.invalid .err { display: block; }

/* Honeypot — hidden from people, visible to bots. Not display:none, which
   some bots specifically skip. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status { margin-top: 0.9rem; font-size: 0.95rem; }
.form-status.err { color: var(--coral-press); }

.form-success { text-align: center; padding: 1.5rem 0.5rem; }
.form-success .tick {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--teal-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--ink-soft); margin-bottom: 1.25rem; }

/* Conditions -------------------------------------------------------------- */
.conditions { background: var(--teal-soft); }
/* Flex rather than grid so the odd seventh card centres under the row above
   instead of sitting alone in the left column. */
.cond-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem; margin-top: 2rem;
}
.cond {
  flex: 1 1 100%;
  display: flex; gap: 0.85rem; align-items: flex-start; text-align: left;
  background: var(--cream); border: 1px solid var(--teal-line);
  border-radius: 10px; padding: 1.05rem 1.15rem;
}
.cond .ci { color: var(--teal-dark); font-size: 1.15rem; line-height: 1.4; flex: none; }
.cond h3 { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; line-height: 1.4; }

/* Outcomes ---------------------------------------------------------------- */
.outcomes-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.25rem;
}
.outcome { text-align: center; }
.outcome .oi {
  width: 58px; height: 58px; margin: 0 auto 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--teal-soft);
  border: 1px solid var(--teal-line); color: var(--teal-dark); font-size: 1.4rem;
}
.outcome h3 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; margin-bottom: 0.25rem; }
.outcome p { color: var(--ink-soft); font-size: 0.95rem; }

/* Trust band -------------------------------------------------------------- */
.trust { background: var(--navy); color: #dfe6e4; }
.trust h2 { color: #fff; }
.trust h2 em { color: var(--teal); }
.trust .eyebrow { color: var(--teal); }
.trust p { color: #c3ccc9; }
.trust-img { border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.cred-list { list-style: none; margin-top: 1.5rem; }
.cred-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cred-list li:last-child { border-bottom: none; }
.cred-list .ci { color: var(--teal); flex: none; font-size: 1.1rem; }
.cred-list strong { display: block; color: #fff; font-weight: 600; font-size: 1rem; }
.cred-list span { font-size: 0.92rem; color: #aeb9b6; }

/* Testimonials ------------------------------------------------------------ */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.25rem;
}
.testi {
  background: #fff; border: 1px solid var(--teal-line);
  border-radius: 12px; padding: 1.4rem;
}
.testi blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; line-height: 1.45; color: var(--ink); margin-bottom: 0.9rem;
}
.testi .who { font-weight: 600; font-size: 0.95rem; }
.testi .cond-tag {
  display: block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--teal-dark); margin-top: 0.15rem;
}


/* FAQ --------------------------------------------------------------------- */
.faq { background: var(--teal-soft); }
.faq-list { max-width: 780px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--teal-line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.05rem 2.2rem 1.05rem 0;
  position: relative;
  font-family: var(--serif); font-size: 1.25rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%;
  transform: translateY(-50%); color: var(--teal-dark); font-size: 1.5rem;
  font-family: var(--sans);
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item .answer { padding: 0 0 1.2rem; color: var(--ink-soft); font-size: 1rem; }

/* Closing CTA ------------------------------------------------------------- */
.closing { background: var(--navy); }
.closing .eyebrow { color: var(--teal); }
.closing h2 { color: #fff; }
.closing h2 em { color: var(--teal); }
.closing .lead { color: #c3ccc9; }
/* The form card sits on a cream background inside this dark band, so undo
   the light-on-dark colours for anything inside it. */
.closing .form-card h2 { color: var(--ink); }
.closing .form-card h2 em { color: var(--teal-dark); }
.closing-alt {
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.14); text-align: center;
}
.closing-alt p { color: #c3ccc9; font-size: 0.95rem; margin-bottom: 0.9rem; }

/* Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--navy); color: #9aa5a2;
  padding: 2.5rem 0 6rem; font-size: 0.92rem;
}
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.foot-grid h3 {
  font-family: var(--sans); font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--teal); margin-bottom: 0.5rem;
}
.site-footer a { color: #cfd8d5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; }
.foot-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.foot-social svg { width: 20px; height: 20px; fill: #9aa5a2; }
.foot-social a:hover svg { fill: #fff; }
.foot-bottom {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; color: #7d8a87;
}

/* Sticky mobile CTA — points at the form, so it reinforces the single goal
   rather than competing with it. Hidden once the form is on screen. */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(251,249,245,0.97);
  border-top: 1px solid var(--cream-2);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.09);
  transform: translateY(110%); transition: transform 0.25s ease;
}
.sticky-cta.show { transform: translateY(0); }

/* Narrow phones: the strapline under the logo wraps awkwardly at full
   letter-spacing, so tighten it rather than let it break in two. */
@media (max-width: 430px) {
  .logo .l1 { font-size: 1.15rem; letter-spacing: 0.08em; }
  .logo .l2 { font-size: 0.48rem; letter-spacing: 0.16em; }
  .hero h1 { font-size: 1.7rem; }
}

/* ── Tablet ─────────────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  section { padding: 4.5rem 0; }
  h2.title { font-size: 2.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.12rem; }
  .hero .wrap { padding-top: 4rem; padding-bottom: 4rem; }
  .hero-actions { flex-direction: row; }
  .form-card { padding: 1.5rem 1.6rem; }
  .cond { flex: 0 1 calc(50% - 0.375rem); }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .header-wa .label-long { display: inline; }
  .header-wa .label-short { display: none; }
  .site-footer { padding-bottom: 2.5rem; }
}

/* ── Desktop ────────────────────────────────────────────────────────────── */
@media (min-width: 1000px) {
  .hero .wrap {
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem; align-items: center;
    padding-top: 4rem; padding-bottom: 4rem;
  }
  /* Shade from the left so the copy stays legible while the photograph is
     still visible on the right, behind and around the form card. */
  .hero-media::after {
    background: linear-gradient(90deg,
      rgba(12,26,40,0.94) 0%, rgba(12,26,40,0.80) 45%, rgba(12,26,40,0.58) 100%);
  }
  /* Held down deliberately: the current headline is long, and at a larger
     size it pushes the call to action below the fold. */
  .hero h1 { font-size: 2.75rem; }
  .cond { flex: 0 1 calc(33.333% - 0.5rem); }
  .outcomes-grid { grid-template-columns: repeat(4, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .trust .wrap {
    display: grid; grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem; align-items: center;
  }
  .trust-img { margin-bottom: 0; }
  .closing .wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3.5rem; align-items: center;
  }
  .closing-alt { text-align: left; }
  /* The sticky bar is a mobile pattern — on desktop the form is always visible. */
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Sections carried over from the original therapy.handconsultsa.com
   (added 8 Aug 2026 at Robyn's request)
   ═══════════════════════════════════════════════════════════════════════════ */

/* In-page section tabs. These are anchors to sections further down this same
   page — not links away to other pages — so the "one page, one goal" rule
   still holds: every one of them leads toward the form. */
.section-tabs { display: none; }
.section-tabs a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.86rem; font-weight: 500; padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.section-tabs a:hover { color: var(--teal-dark); border-bottom-color: var(--teal-dark); }

/* The promise line from the original hero. */
.hero-promise {
  color: #cfd8d5; font-size: 0.98rem; line-height: 1.6;
  margin: -0.5rem 0 1.5rem; padding-left: 0.9rem;
  border-left: 2px solid var(--teal);
}

/* Services */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; margin-top: 2.5rem; }
.service-copy h3 {
  font-family: var(--sans); font-weight: 600; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal-dark); margin-bottom: 0.6rem;
}
.service-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.service-copy strong { color: var(--ink); font-weight: 600; }
.service-copy .btn { margin-top: 0.5rem; }
.service-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.service-photos figure { margin: 0; border-radius: 10px; overflow: hidden; }
.service-photos img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Video band */
.video-band { background: var(--navy); }
.video-band h2 { color: #fff; }
.video-band h2 em { color: var(--teal); }
.video-band .eyebrow { color: var(--teal); }
/* Full-bleed: break out of the centred .wrap so the loop spans the whole
   viewport. `overflow-x: clip` on body stops the 100vw creating a scrollbar. */
.video-loop {
  display: block;
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 2rem;
  background: #000;
}

/* Home exercise programme */
.exercises { background: var(--teal-soft); }
.ex-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 2.25rem;
}
.ex-grid figure { margin: 0; border-radius: 10px; overflow: hidden; background: #fff; }
.ex-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

@media (min-width: 700px) {
  .ex-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}
@media (min-width: 1000px) {
  .section-tabs { display: flex; gap: 1.5rem; align-items: center; }
  .hero-promise { font-size: 1rem; }
}

/* Video testimonials — poster, then the patient's story below it. */
.vid-name { font-weight: 600; font-size: 1.05rem; }
.vid-name .cond-tag {
  display: block; font-weight: 400;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal-dark); margin-top: 0.2rem;
}
@media (min-width: 700px) { .video-grid { grid-template-columns: 1fr 1fr; } }


/* Testimonials — each quote shown with that patient's own video.
   The YouTube player is embedded directly (no poster image, as asked).
   loading="lazy" means a player is only fetched as it nears the viewport,
   so eight embeds don't punish the initial page load. */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.25rem; }
.testi-card {
  margin: 0; background: #fff;
  border: 1px solid var(--teal-line); border-radius: 12px; overflow: hidden;
}
.testi-video { aspect-ratio: 16 / 9; background: #000; }
.testi-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.testi-card figcaption { padding: 1.1rem 1.25rem 1.35rem; }
.vid-name { font-weight: 600; font-size: 1.05rem; }
.vid-name .cond-tag {
  display: block; font-weight: 400; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal-dark); margin-top: 0.2rem;
}
.clinical-note {
  color: var(--ink-soft); font-size: 0.88rem; line-height: 1.55;
  background: var(--teal-soft); border-radius: 8px;
  padding: 0.7rem 0.85rem; margin-top: 0.85rem;
}
.clinical-note span {
  display: block; font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal-dark); margin-bottom: 0.2rem;
}
.testi-card blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  line-height: 1.45; color: var(--ink);
  margin-top: 0.85rem; padding-left: 0.9rem;
  border-left: 2px solid var(--coral);
}
@media (min-width: 800px)  { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1150px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* Thank-you page ---------------------------------------------------------- */
.thanks { background: var(--cream); padding: 4rem 0 5rem; }
.thanks-tick {
  width: 74px; height: 74px; margin: 0 auto 1.5rem;
  border-radius: 50%; background: var(--teal-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
}
.thanks h1 { font-size: 2.1rem; margin-bottom: 0.9rem; }
.thanks h1 em { font-style: italic; color: var(--teal-dark); }
.thanks .lead { margin: 0 auto 2rem; }
.thanks-actions {
  display: flex; flex-direction: column; gap: 0.75rem;
  justify-content: center; align-items: center; margin-bottom: 3rem;
}
.thanks-details {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem;
  max-width: 640px; margin: 0 auto; padding-top: 2.5rem;
  border-top: 1px solid var(--teal-line);
}
.thanks-details h2 {
  font-family: var(--sans); font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--teal-dark); margin-bottom: 0.5rem;
}
.thanks-details address { font-style: normal; color: var(--ink-soft); }
.thanks-details p { color: var(--ink-soft); }
@media (min-width: 700px) {
  .thanks h1 { font-size: 2.7rem; }
  .thanks-actions { flex-direction: row; }
  .thanks-details { grid-template-columns: 1fr 1fr; }
}
