/* ============================================================
   FLOURISHING — design system

   Display face is Cormorant Garamond, the closest match to the
   wordmark set into the olive-branch photo. Body is DM Sans.
   ============================================================ */

:root {
  --cream:  #F7F4ED;   /* page base */
  --paper:  #FFFFFF;   /* cards, video frame */
  --sand:   #EFE8DE;   /* alternating band */
  --bark:   #33302B;   /* text + footer */
  --olive:  #7C8464;   /* primary accent */
  --taupe:  #B9A590;   /* secondary accent */

  --bark-70: rgba(51, 48, 43, .70);
  --bark-52: rgba(51, 48, 43, .52);
  --bark-14: rgba(51, 48, 43, .14);
  --bark-08: rgba(51, 48, 43, .08);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --gut: clamp(1.5rem, 5vw, 3.25rem);
  --section: clamp(5rem, 12vw, 10rem);
  --maxw: 1200px;
  --r: 18px;               /* card radius */
  --shadow: 0 24px 60px -34px rgba(51, 48, 43, .40);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--bark);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1rem, .95rem + .25vw, 1.09rem);
  line-height: 1.72;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

/* Images carry width/height attributes so the browser can reserve space, but
   those are presentational hints that make the height definite — which makes
   the browser ignore any aspect-ratio we set. height:auto hands control back. */
img { height: auto; }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.9rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: var(--section); }
.band-sand { background: var(--sand); }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.5rem;
}

.lede {
  font-size: clamp(1.12rem, 1.02rem + .5vw, 1.4rem);
  line-height: 1.66;
  color: var(--bark-70);
  max-width: 42ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 2.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--bark);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); background: #221f1b; box-shadow: 0 14px 28px -18px rgba(51,48,43,.8); }
.btn:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

.btn-olive { background: var(--olive); }
.btn-olive:hover { background: #6A7255; }

.btn-quiet {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark-14);
}
.btn-quiet:hover { background: var(--bark); color: var(--cream); }

.btn-block { width: 100%; }

.tlink {
  text-decoration: none;
  border-bottom: 1px solid var(--bark-14);
  padding-bottom: 2px;
  transition: border-color .25s ease;
}
.tlink:hover { border-color: currentColor; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--bark-08); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: .3em;   /* optical balance for the tracking */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--bark-70);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--bark); }

.nav-links a.btn { color: var(--cream); }
.nav-cta { padding: .8rem 1.6rem; font-size: .74rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--bark);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--bark-08);
    padding: .5rem var(--gut) 1.75rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .95rem 0; font-size: 1rem; }
  .nav-links .nav-cta { margin-top: .85rem; text-align: center; }
}

/* ============================================================
   Hero — copy beside Christina's welcome video
   ============================================================ */

.hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); }

/* Headline and copy stack in the left column; the video spans both rows on the
   right. On narrow screens the order becomes headline → video → copy, so
   Christina's face is visible without scrolling past a wall of text. */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-areas:
    "head media"
    "copy media";
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: 1.9rem;
  align-content: center;
}
.hero-head  { grid-area: head; align-self: end; }
.hero-copy  { grid-area: copy; align-self: start; }
.hero-media { grid-area: media; align-self: center; }
.hero h1 em { font-style: italic; color: var(--olive); }
.hero .lede { margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Video frame */
.hero-video {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(51,48,43,.05), rgba(51,48,43,.30));
  transition: background-color .3s ease, opacity .3s ease;
}
.video-play:hover { background: linear-gradient(180deg, rgba(51,48,43,.10), rgba(51,48,43,.38)); }
.video-play span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  color: var(--bark);
  box-shadow: 0 12px 30px -12px rgba(51,48,43,.55);
  transition: transform .25s ease;
}
.video-play:hover span { transform: scale(1.06); }
.video-play svg { margin-left: 4px; }   /* optical centring of the triangle */
.video-play[hidden] { display: none; }

.video-cap {
  margin-top: .95rem;
  font-size: .84rem;
  color: var(--bark-52);
  text-align: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "media" "copy";
    row-gap: 1.9rem;
  }
  .hero-head { align-self: auto; }
  .hero .lede { max-width: none; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: clamp(2.75rem, 13vw, 3.6rem); }
  .hero .lede { font-size: 1.06rem; }
}

/* ============================================================
   Value strip
   ============================================================ */

.strip { border-block: 1px solid var(--bark-08); padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.strip-item { display: flex; gap: 1rem; align-items: flex-start; }
.strip-item svg { flex: 0 0 auto; margin-top: .2rem; color: var(--olive); }
.strip-item h3 {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: .3rem;
}
.strip-item p { font-size: .92rem; color: var(--bark-52); line-height: 1.6; }

/* ============================================================
   Gathering cards
   ============================================================ */

.section-head { max-width: 44rem; margin-bottom: clamp(2.75rem, 6vw, 4.25rem); }
.section-head h2 { margin-bottom: 1.15rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
}

.card {
  --accent: var(--olive);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(51,48,43,.04), 0 14px 34px -26px rgba(51,48,43,.34);
  transition: transform .32s ease, box-shadow .32s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card--girls { --accent: #C6708A; }
.card--teens { --accent: #7E7A63; }
.card--women { --accent: var(--olive); }

.card-figure { margin: 0; background: var(--sand); }
.card-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.card-body {
  padding: clamp(1.6rem, 3vw, 2.1rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.15rem;
}

.card-age {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.card-body > p { color: var(--bark-70); font-size: .96rem; margin: 0; }

/* Start date sits high in the card and is the first hard fact you read.
   The tinted band is what makes it register before the description. */
.card-start {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .1rem .6rem;
  margin: 0;
  padding: .6rem .9rem .65rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--bark);
}
/* A cohort that's already running: same block, muted so it doesn't read
   like a call to action. */
.card-start--session {
  background: var(--bark-08);
  color: var(--bark-52);
}
/* Doubled class so this wins regardless of source order — at equal
   specificity `.card-start span` below would otherwise take it. */
.card-start.card-start--session span { color: var(--bark-52); }

.card-note {
  margin: 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--bark-52);
}

.card-start span {
  font-family: var(--sans);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-season { font-size: .93rem; color: var(--bark-52); }
.card-season em { font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: var(--bark); }

.card-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.card-topics li {
  font-size: .76rem;
  padding: .3rem .8rem;
  border: 1px solid var(--bark-14);
  border-radius: 999px;
  color: var(--bark-52);
}

.card-meta {
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid var(--bark-08);
  display: flex;
  flex-direction: column;
  gap: .95rem;
}
.card-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1rem;
  font-size: .88rem;
}
.card-meta dt { color: var(--bark-52); }
.card-meta dd { margin: 0; text-align: right; font-weight: 500; }

.card-limit {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.card .btn { background: var(--accent); }
.card .btn:hover { background: var(--bark); }

/* `.card .btn` outranks `.btn-quiet`, so the secondary style must be
   restated at matching specificity or it renders as a solid CTA. */
.card .btn-quiet {
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark-14);
}
.card .btn-quiet:hover { background: var(--bark); color: var(--cream); }

/* ============================================================
   How it works
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: clamp(1.75rem, 4vw, 2.75rem);
  counter-reset: step;
}
.step { counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--taupe);
  margin-bottom: .9rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--bark-14);
}
.step h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: .5rem;
}
.step p { font-size: .93rem; color: var(--bark-52); line-height: 1.65; }

/* ============================================================
   About
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: minmax(220px, .6fr) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-photo { border-radius: var(--r); overflow: hidden; background: var(--sand); }
.about-photo img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: 50% 28%;
}
.about h2 { margin-bottom: 1.3rem; }
.about-body { color: var(--bark-70); max-width: 46ch; }
.about-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--bark);
  margin-top: 1.75rem;
}
@media (max-width: 780px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 330px; }
}

/* ============================================================
   Verse
   ============================================================ */

.quote { text-align: center; }
.quote blockquote {
  margin: 0 auto;
  max-width: 20ch;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.14;
  font-style: italic;
  text-wrap: balance;
}
.quote cite {
  display: block;
  margin-top: 1.9rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bark-52);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { max-width: 46rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--bark-14); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  transition: color .2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--olive); }
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq .faq-a { padding-bottom: 1.6rem; color: var(--bark-70); font-size: .97rem; max-width: 60ch; }

/* ============================================================
   Closing
   ============================================================ */

.closing { text-align: center; }
.closing h2 { margin-bottom: 1.3rem; }
.closing .lede { margin-inline: auto; margin-bottom: 2.4rem; }
.closing-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--bark);
  color: rgba(247, 244, 237, .62);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  font-size: .88rem;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.site-footer .brand { color: var(--cream); font-size: 1.3rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.footer-nav a { text-decoration: none; transition: color .2s ease; }
.footer-nav a:hover { color: var(--cream); }
.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(247, 244, 237, .15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(247, 244, 237, .46);
}

/* ============================================================
   Reveal
   ============================================================ */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.skip { position: absolute; left: -9999px; }
.skip:focus {
  left: var(--gut); top: .5rem; z-index: 100;
  background: var(--bark); color: var(--cream);
  padding: .7rem 1.2rem; border-radius: 6px;
}

/* ============================================================
   Registration modal
   ============================================================ */

.modal {
  width: min(700px, calc(100vw - 2rem));
  max-height: min(90vh, 950px);
  padding: 0;
  border: 0;
  border-radius: var(--r);
  background: var(--cream);
  color: var(--bark);
  overflow: hidden;
}
.modal::backdrop { background: rgba(30, 27, 23, .55); backdrop-filter: blur(4px); }
.modal[open] { animation: modal-in .3s ease both; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.99); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .modal[open] { animation: none; } }

.modal-card {
  position: relative;
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1.75rem, 4vw, 2.85rem);
  -webkit-overflow-scrolling: touch;
}

/* Anchored to the dialog, not the scrolling card — otherwise it rides
   down over the input fields. Solid fill so it stays legible. */
.modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--bark-08);
  border-radius: 50%;
  background: var(--cream);
  color: var(--bark);
  cursor: pointer;
  z-index: 3;
  transition: background-color .2s ease, border-color .2s ease;
}
.modal-close:hover { background: var(--sand); border-color: var(--bark-14); }

.reg-head { margin-bottom: 1.85rem; }
.reg-head .eyebrow { padding-right: 2.75rem; }
.reg-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: .55rem; }
.reg-season { font-family: var(--serif); font-style: italic; font-size: 1.35rem; margin-bottom: .55rem; }
.reg-dates {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--bark-70);
  padding-top: .95rem;
  border-top: 1px solid var(--bark-08);
}
.reg-cap {
  margin-top: .95rem;
  font-size: .86rem;
  line-height: 1.55;
  color: var(--bark-52);
  padding-left: .95rem;
  border-left: 2px solid var(--taupe);
}

.reg-form { display: flex; flex-direction: column; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .42rem; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field label, .label-as-text, .consent legend {
  font-size: .85rem;
  font-weight: 500;
  color: var(--bark-70);
}
.field label span[aria-hidden], .consent legend span[aria-hidden] { color: var(--olive); }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--bark-14);
  border-radius: 10px;
  background: var(--paper);
  color: var(--bark);
  font-family: var(--sans);
  font-size: .97rem;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(124, 132, 100, .22);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #B4553F; }

.hint { font-size: .81rem; color: var(--bark-52); margin: 0; }

/* Honeypot — must stay in the DOM for Netlify, hidden from people. */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.consent {
  border: 1px solid var(--bark-08);
  border-radius: 12px;
  padding: 1.15rem 1.2rem;
  margin: 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.consent legend { padding: 0 .4rem; }
.check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--bark-70);
  cursor: pointer;
}
.check input { flex: 0 0 auto; margin-top: .28rem; accent-color: var(--olive); width: 16px; height: 16px; }
.radios { display: flex; gap: 1.5rem; padding-top: .55rem; }
.radios .check { font-size: .95rem; }

.form-error {
  margin: 0;
  padding: .85rem 1rem;
  border-radius: 10px;
  background: rgba(180, 85, 63, .1);
  color: #8E3F2D;
  font-size: .88rem;
}
.form-foot { margin: 0; text-align: center; font-size: .81rem; color: var(--bark-52); }
.reg-form .btn:disabled { opacity: .55; cursor: default; transform: none; }

.reg-done { text-align: center; padding-block: 1rem; }
.done-mark { color: var(--olive); margin: 0 auto 1.3rem; }
.reg-done h2 { margin-bottom: .8rem; }
.reg-done-lede { color: var(--bark-70); margin-bottom: 1.5rem; }
.reg-done p { color: var(--bark-70); font-size: .95rem; }
.done-pay { margin-bottom: .5rem; }
/* The Buy Button renders its own iframe; cap the width so it doesn't
   stretch edge to edge in the modal. */
.buy-button {
  max-width: 340px;
  margin: 1.25rem auto .25rem;
}
.done-pay-note { font-size: .85rem; color: var(--bark-52) !important; }
.reg-done-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--bark) !important;
  margin: 1.85rem 0 1.5rem;
}
