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

:root {
  --berry:      #9B1B30;
  --crimson:    #7F1C2F;
  --purple:     #2E1F48;
  --violet:     #3A2558;
  --velvet:     #9B87CC;
  --lavender:   #9C9EC8;
  --tinsel:     #C8C0E0;
  --gold:       #C9A84C;
  --gold-pale:  #E2C269;
  --cream:      #FBF9F7;
  --lavender-wash: #EEEDF5;
  --ink:        #1A0F24;
}

html, body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
}

a { color: inherit; }

/* ===== CHECKERBOARD MOTIF ===== */
.checkerboard {
  height: 28px;
  background-image: conic-gradient(var(--berry) 90deg, var(--cream) 90deg 180deg, var(--berry) 180deg 270deg, var(--cream) 270deg);
  background-size: 28px 28px;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--crimson);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 32px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; display: block; }
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  color: #fff; font-size: 16px;
}
.nav-links {
  display: flex; gap: 26px; align-items: center;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: var(--gold);
}
.nav-cta {
  background: var(--berry);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--crimson) !important; }

/* ===== MOBILE NAV (hamburger, CSS-only checkbox toggle) ===== */
.nav-toggle-checkbox { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
.nav-toggle-label span {
  width: 24px; height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

@media (max-width: 880px) {
  .site-nav { position: sticky; flex-wrap: wrap; padding: 10px 20px; }
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--crimson);
    padding: 12px 4px 16px;
    order: 3;
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-links a {
    width: 100%; padding: 12px 8px; font-size: 14px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a.active {
    border-bottom: none;
    border-left-color: var(--gold);
    background: rgba(201,168,76,0.08);
  }
  .nav-cta { margin-top: 8px; text-align: center; display: block; }

  /* Force any two-column card-grid (including inline-style overrides) to stack on mobile */
  .card-grid { grid-template-columns: 1fr !important; }

  main { padding: 32px 18px 56px; }
  .page-hero { padding: 40px 18px 48px; }
  .page-title { font-size: 28px !important; }
  .section-divider { margin: 24px -18px !important; }
}

/* ===== PAGE HEADER (shared banner style) ===== */
.page-hero {
  background: var(--lavender);
  color: #fff;
  padding: 56px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(46,31,72,0.20) 0%, transparent 65%);
  pointer-events: none;
}
.page-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-pale);
  font-size: 12px;
  margin-bottom: 12px;
  position: relative;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(32px, 5vw, 52px);
  position: relative;
}
.page-sub {
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  position: relative;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* ===== FOOTER ===== */
.site-footer-wrap { background: var(--crimson); }
.site-footer {
  color: rgba(255,255,255,0.85);
  padding: 28px 24px;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  font-size: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-footer a {
  color: #EADFE0;
  text-decoration: none;
  margin-left: 18px;
}
.site-footer a:hover { color: #fff; }
.footer-left em { color: #EADFE0; font-style: italic; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { margin-left: 0; color: #EADFE0; }
.footer-right a:first-child { margin-left: 0; }

/* ===== EMAIL SIGNUP ===== */
.mini-signup {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 20px 22px;
  max-width: 420px;
  margin: 40px auto 0;
  text-align: center;
}
.mini-signup p.mini-title {
  font-size: 12px; font-weight: 500;
  margin-bottom: 4px;
}
.mini-signup p.mini-sub {
  font-size: 12px; color: #777; margin-bottom: 14px;
}
.mini-signup input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  margin-bottom: 8px;
}
.mini-signup button {
  width: 100%;
  padding: 10px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  cursor: pointer;
}
.mini-signup button:hover { background: var(--berry); }

/* ===== EDITOR NOTES (for Rachel) ===== */
.editor-note {
  background: rgba(201,168,76,0.12);
  border: 1px dashed var(--gold);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 12px;
  color: #7a5f1a;
  margin: 20px 0;
  line-height: 1.6;
}
.editor-note strong { color: var(--crimson); }

/* ===== CARDS (generic) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* Speaker card */
.speaker-card { text-align: center; cursor: default; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.speaker-card.clickable { cursor: pointer; }
.speaker-card.clickable:hover { box-shadow: 0 4px 16px rgba(127,28,47,0.14); transform: translateY(-2px); }
.speaker-photo {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--lavender);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px;
  overflow: hidden;
}
.speaker-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker-name { font-weight: 500; font-size: 15px; }
.speaker-talk { font-size: 12px; color: var(--crimson); font-style: italic; margin-top: 4px; }
.speaker-role { font-size: 12px; color: #888; margin-top: 2px; }

/* Speaker modal */
.speaker-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,15,36,0.6);
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 24px;
}
.speaker-modal-overlay.active { display: flex; }
.speaker-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 460px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  text-align: center;
}
.speaker-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  font-size: 22px; color: #999; cursor: pointer;
  line-height: 1;
}
.speaker-modal-photo {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--lavender);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-style: italic; font-size: 28px;
  overflow: hidden;
}
.speaker-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.speaker-modal-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 21px; color: var(--crimson); }
.speaker-modal-talk { font-style: italic; color: var(--ink); margin-top: 6px; font-size: 15px; }
.speaker-modal-role { font-size: 12px; color: #888; margin-top: 4px; margin-bottom: 16px; }
.speaker-modal-bio { font-size: 16px; color: #444; line-height: 1.7; text-align: left; white-space: pre-line; }

/* Ticket / pass card */
.pass-card { display: flex; flex-direction: column; gap: 12px; border-color: var(--crimson); box-shadow: 0 4px 16px rgba(127,28,47,0.14); }
.pass-card.featured { border-color: var(--crimson); box-shadow: 0 4px 16px rgba(127,28,47,0.14); }
.pass-tier {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  color: var(--crimson); font-size: 21px;
}
.pass-price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pass-price { font-size: 26px; font-weight: 600; }
.pass-price span { font-size: 12px; font-weight: 400; color: #777; }
.pass-next-price { font-size: 12px; color: #999; }
.pass-window {
  font-size: 12px; color: var(--crimson); font-weight: 500;
  background: rgba(127,28,47,0.08);
  padding: 4px 8px; border-radius: 4px;
  align-self: flex-start;
}
.ticket-notice {
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.ticket-notice strong { color: var(--crimson); }
.pass-features { list-style: none; font-size: 15px; color: #444; display: flex; flex-direction: column; gap: 6px; }
.pass-features li { padding-left: 18px; position: relative; }
.pass-features li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-size: 20px; line-height: 1; top: 1px; }
.pass-copy-block {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 12px;
  margin-top: 4px;
}
.pass-copy-block p {
  font-size: 12px;
  color: #999;
  font-style: italic;
  line-height: 1.6;
}
.pass-btn {
  margin-top: auto;
  display: block; text-align: center; text-decoration: none;
  background: var(--crimson); color: #fff;
  padding: 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: background 0.15s ease;
}
.pass-btn:hover { background: var(--berry); }
.pass-btn.disabled {
  background: #eee; color: #999; pointer-events: none;
}
.pass-opens-badge {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(46,31,72,0.06);
  border: 1px solid rgba(46,31,72,0.12);
}
.pass-opens-badge .opens-label {
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #888; margin-bottom: 4px;
}
.pass-opens-badge .opens-date {
  font-size: 14px; font-weight: 500; color: var(--purple);
}
.stage-tag {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(201,168,76,0.18); color: #7a5f1a;
  padding: 3px 8px; border-radius: 4px;
}

/* FAQ */
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 18px 0; }
.faq-q { font-weight: 500; font-size: 15px; margin-bottom: 6px; }
.faq-a { font-size: 16px; color: #555; line-height: 1.6; }

/* Terms */
.legal-block h2 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; margin: 28px 0 10px; color: var(--crimson); }
.legal-block h3 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14px; margin: 18px 0 8px; color: var(--purple); }
.legal-block p { font-size: 13px; line-height: 1.7; color: #444; margin-bottom: 10px; }
.legal-block ol { font-size: 13px; line-height: 1.7; color: #444; margin: 0 0 10px 20px; padding-left: 8px; }
.legal-block ol[type="a"] { list-style-type: lower-alpha; }
.legal-block ol[type="i"] { list-style-type: lower-roman; }
.legal-block li { margin-bottom: 8px; }
.legal-block li p { margin-bottom: 4px; }
.legal-block table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 12px; }
.legal-block table td, .legal-block table th { border: 1px solid rgba(0,0,0,0.1); padding: 8px 10px; text-align: left; vertical-align: top; }
.legal-block table th { background: rgba(201,168,76,0.1); }
.legal-block mark { background: rgba(201,168,76,0.25); padding: 0 3px; }
.legal-nav {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.legal-nav a {
  font-size: 12px; text-decoration: none;
  background: #fff; border: 1px solid rgba(0,0,0,0.1);
  padding: 6px 12px; border-radius: 6px; color: var(--crimson);
}
.legal-nav a:hover { background: rgba(127,28,47,0.06); }
.legal-placeholder {
  background: rgba(201,168,76,0.1);
  border: 1px dashed var(--gold);
  padding: 16px; border-radius: 8px;
  font-size: 12px; color: #8a6d1f;
  margin: 20px 0;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--berry);
  margin: 0 -24px 48px;
}
.stat-block {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-block:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  font-size: 32px;
  color: var(--gold-pale);
  display: block;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ===== SECTION DIVIDER (mini checkerboard) ===== */
.section-divider {
  height: 14px;
  background-image: conic-gradient(var(--berry) 90deg, var(--cream) 90deg 180deg, var(--berry) 180deg 270deg, var(--cream) 270deg);
  background-size: 14px 14px;
  margin: 48px -24px;
}

/* ===== ALT PANELS ===== */
.panel-lavender {
  background: var(--lavender);
  color: #fff;
  border-radius: 12px;
  padding: 32px;
  margin: 20px 0;
}
.panel-lavender h2 { color: #fff !important; }
.panel-lavender p { color: rgba(255,255,255,0.9) !important; }

.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  text-align: center;
  max-width: 640px;
  margin: 40px auto;
  line-height: 1.5;
  padding: 32px 28px;
  background: var(--berry);
  border-radius: 12px;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
}
.col-block-two {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1100px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(26,15,36,0.12);
}
.col-block-two-item { padding: 44px 40px; }
.col-block-two-item.bg-crimson { background: var(--crimson); color: #fff; }
.col-block-two-item.bg-white { background: #fff; color: var(--ink); }
.col-block-two-item .section-label { color: var(--gold-pale); }
.col-block-two-item p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.92); }
@media (max-width: 760px) {
  .col-block-two { grid-template-columns: 1fr; }
}

.floating-pair {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px;
  max-width: 1100px; margin: 40px auto; align-items: stretch;
}
.floating-pair.reverse { grid-template-columns: 1.1fr 0.9fr; }
.floating-pair .photo-card { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(26,15,36,0.18); aspect-ratio: 3/4; }
.floating-pair .photo-card img { width:100%; height:100%; object-fit:cover; display:block; }
.floating-text-card { border-radius: 16px; padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.floating-text-card.bg-lavender { background: var(--lavender); box-shadow: 0 12px 32px rgba(155,135,204,0.25); }
.floating-text-card.bg-crimson-solid { background: var(--crimson); box-shadow: 0 12px 32px rgba(127,28,47,0.22); }
.floating-text-card.bg-crimson-solid .section-label { color: var(--gold-pale); }
.floating-text-card.bg-crimson-solid p { color: rgba(255,255,255,0.92); }
.floating-text-card.bg-white { background: #fff; box-shadow: 0 12px 32px rgba(26,15,36,0.10); }
.floating-text-card p { font-size: 16px; line-height: 1.75; }
@media (max-width: 760px) {
  .floating-pair, .floating-pair.reverse { grid-template-columns: 1fr; }
  .floating-pair .photo-card { aspect-ratio: auto; }
}

.embossed-17 {
  position: absolute;
  bottom: -100px; right: -30px;
  font-family: 'Playfair Display', serif;
  font-size: 300px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.12);
  text-shadow: 2px 2px 0 rgba(255,255,255,0.05), -1px -1px 0 rgba(0,0,0,0.25);
  pointer-events: none; user-select: none;
  z-index: 1; letter-spacing: -0.04em;
}

.editorial-panel {
  background: var(--crimson);
  color: #fff;
  border-radius: 12px;
  padding: 40px 36px;
}
.editorial-panel p { color: rgba(255,255,255,0.92); }
.editorial-chunk { margin-bottom: 32px; }
.editorial-chunk:last-child { margin-bottom: 0; }
.editorial-chunk p { font-size: 14px; line-height: 1.75; }

.big-statement {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--crimson);
  text-align: center;
  max-width: 640px;
  margin: 36px auto;
  line-height: 1.3;
}

.card-berry {
  background: var(--crimson);
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
}
.card-berry .pass-tier { color: var(--lavender) !important; font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700; text-shadow: 0 1px 1px rgba(0,0,0,0.25); }
.card-berry h2 { text-shadow: 0 1px 1px rgba(0,0,0,0.2); }
a.card-berry:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(127,28,47,0.3); }
.card-berry p { color: rgba(255,255,255,0.9) !important; }
/* ===== EDITORIAL TYPOGRAPHY TREATMENTS ===== */
.summit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-pale);
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.summit-label::before { content: '— '; }
.summit-label::after { content: ' —'; }

.ghost-numeral-wrap {
  position: relative;
  overflow: hidden;
}
.ghost-numeral {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 280px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  right: -20px;
  bottom: -40px;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.ghost-numeral-wrap > * { position: relative; z-index: 1; }

.oversized-date {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: normal;
  line-height: 0.9;
  color: #fff;
  font-size: clamp(64px, 14vw, 140px);
}
.oversized-date .dash { font-size: 0.6em; vertical-align: 0.1em; }
.save-the-date-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 8px;
}

.editorial-headline {
  font-family: 'Playfair Display', serif;
}
.editorial-headline .weight-bold { font-weight: 900; font-style: normal; }
.editorial-headline .weight-italic { font-weight: 700; font-style: italic; color: var(--crimson); }

/* ===== PHOTO TREATMENTS ===== */
.photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26,15,36,0.15);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: #888;
  margin-top: 8px;
  text-align: center;
}

.program-day { margin-bottom: 32px; }
.program-day-title {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  color: var(--crimson); font-size: 20px; margin-bottom: 14px;
}
.program-session {
  display: flex; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
}
.program-time { color: var(--gold); font-weight: 500; min-width: 70px; }
.program-session-title { color: var(--ink); }

/* ===== KIT FORM OVERRIDE (Contact page signup) ===== */
/* Kit's official form class names, per their documented embed architecture */
.formkit-form {
  font-family: 'Outfit', sans-serif !important;
  background: var(--cream) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}
.formkit-header {
  font-family: 'Playfair Display', serif !important;
}
.formkit-header h1, .formkit-header h2, .formkit-header h3 {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--crimson) !important;
}
.formkit-subheader, .formkit-subheader p {
  font-family: 'Outfit', sans-serif !important;
  color: #444 !important;
  font-size: 12px !important;
}
.formkit-input {
  font-family: 'Outfit', sans-serif !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 12px !important;
}
.formkit-submit {
  background: var(--crimson) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  transition: background 0.15s ease !important;
}
.formkit-submit:hover {
  background: var(--berry) !important;
}
.formkit-guarantee, .formkit-guarantee p {
  color: #999 !important;
  font-size: 12px !important;
}
.formkit-powered-by, .formkit-branding, [data-element="poweredBy"], .formkit-powered-by-convertkit {
  display: none !important;
}
