/* ==========================================================================
   Refuge Foundation — shared styles
   ========================================================================== */

:root {
  --dark: #241d19;
  --dark-2: #2f2620;
  --cream: #f3efe2;
  --cream-2: #ece5d2;
  --white: #ffffff;
  --ink: #241d19;
  --ink-soft: #4a4038;
  --rust: #c17a4e;
  --rust-dark: #a8663e;
  --gold: #d3a24a;
  --line: rgba(36, 29, 25, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-head: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}

.eyebrow.on-dark {
  color: var(--gold);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.btn:hover svg {
  transform: translate(2px, -2px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-rust {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(193, 122, 78, 0.35);
}

.btn-rust:hover {
  background: var(--rust-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(211, 162, 74, 0.35);
}

.copy-toast {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--line-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
}

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 42px;
  width: auto;
}

.brand-word {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links > li {
  position: relative;
}

.nav-link {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  opacity: 0.92;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link.active {
  color: var(--gold);
  opacity: 1;
}

.nav-link svg {
  width: 11px;
  height: 11px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .nav-link svg,
.has-dropdown.open .nav-link svg {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .has-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
  }
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: 14px;
  min-width: 220px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--cream);
  color: var(--rust-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--white);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* mobile nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 0 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 30px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-link {
    padding: 16px 4px;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-bottom: 10px;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown.open .dropdown {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .has-dropdown > .nav-link {
    pointer-events: none;
  }

  .has-dropdown > .nav-link svg {
    display: none;
  }

  .dropdown a {
    color: var(--white);
  }

  .dropdown a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--gold);
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn span.long { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  background: #1a1512 center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,16,14,0.35) 0%, rgba(20,16,14,0.55) 55%, rgba(15,12,10,0.88) 100%);
}

.hero-bright::before {
  background: linear-gradient(180deg, rgba(20,16,14,0.15) 0%, rgba(20,16,14,0.25) 55%, rgba(15,12,10,0.55) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 90px 32px 70px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-inner.narrow { max-width: 760px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  max-width: 820px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 30px;
}

.hero-small {
  min-height: 420px;
}

/* ---------- sections ---------- */

section {
  padding: 100px 0;
}

.section-tight { padding: 70px 0; }

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.two-col.reverse .col-media { order: 2; }
.two-col.reverse .col-text { order: 1; }

.col-media img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Forces the image to crop to the text column's height exactly, instead
   of letting the image's own aspect ratio influence the row height. */
.col-media.fill-height {
  position: relative;
}

.col-media.fill-height img {
  position: absolute;
  inset: 0;
}

h2.headline {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 22px;
  max-width: 640px;
}

.headline .accent { color: var(--rust); }
.on-dark .accent { color: var(--gold); }

.lede {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 620px;
}

.lede + .lede { margin-top: 16px; }

.problem-stats {
  max-width: 620px;
  margin: 20px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-stats li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: var(--ink);
}

.problem-stats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}

.on-dark .lede { color: rgba(255,255,255,0.78); }

.centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- video block ---------- */

.video-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  position: relative;
  background: #000;
}

.video-wrap video {
  width: 100%;
  display: block;
  max-height: 640px;
}

.video-wrap.video-embed {
  padding-top: 56.25%;
  height: 0;
}

.video-wrap.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  background: #1c1512 center / cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 110px 32px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,12,10,0.55), rgba(15,12,10,0.75));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ---------- split panels (have / haven't) ---------- */

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}

.panel h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.panel h3 .hl { color: var(--rust); }

.panel p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 26px;
  font-size: 15.5px;
}

/* ---------- location cards ---------- */

.loc-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.loc-card:last-child { border-bottom: 1px solid var(--line); }

.loc-card img {
  border-radius: 14px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.loc-card h4 {
  font-size: 21px;
  margin-bottom: 6px;
}

.loc-card .loc-sub {
  color: var(--rust);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 13.5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-grid li {
  margin-bottom: 12px;
  font-size: 14.5px;
}

.footer-grid a:hover { color: var(--gold); }

.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.footer-form input {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--white);
  color: var(--ink);
}

.footer-form input:focus { outline: 2px solid var(--gold); }

.footer-form .btn { padding: 13px 22px; font-size: 14px; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-mark img { height: 30px; width: auto; }

.footer-legal {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 720px;
}

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.info-card:first-child { padding-top: 0; }

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg { width: 20px; height: 20px; }

.info-card h4 { font-size: 16px; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  background: var(--white);
}

.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ---------- donate page ---------- */

.give-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.give-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 28px;
  text-align: left;
}

.give-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.give-icon svg { width: 22px; height: 22px; }

.give-card h3 { font-size: 19px; margin-bottom: 10px; }
.give-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; margin-bottom: 20px; }

.donate-card {
  background: var(--white);
  border-radius: 24px;
  padding: 46px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(36,29,25,0.08);
  text-align: center;
}

.donate-card .give-icon {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- utility ---------- */

.mt-lg { margin-top: 56px; }
.center-btn { display: flex; justify-content: center; margin-top: 40px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav-links { gap: 0; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 34px; }
  .two-col.reverse .col-media,
  .two-col.reverse .col-text,
  .two-col .col-media,
  .two-col .col-text { order: initial; }
  .panel-grid { grid-template-columns: 1fr; }
  .loc-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .give-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .donate-card { padding: 30px; }

  /* The hero has its own top/bottom spacing via .hero-inner padding, so
     it doesn't need the generic section padding above. The video is a
     wide cinematic clip, so a shorter hero also means the cover crop
     scales up less and reads as noticeably less zoomed in on phones. */
  .hero { padding: 0; min-height: 480px; }

  /* On phones, sections below the fold can sit fully offscreen when the
     scroll-triggered fade-in hasn't fired yet, which reads as a blank
     page rather than "content is coming." Skip the animation on mobile
     and just show everything. */
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 560px) {
  .hero-inner { padding: 44px 24px 36px; }
  .hero .eyebrow { margin-bottom: 10px; }
  .hero h1 { margin-bottom: 14px; }
  .hero p { margin-bottom: 20px; }
  .container { padding: 0 22px; }
  .nav { padding: 16px 22px; }
}

@media (max-width: 700px) {
  .cta-flag-riders {
    background-position: left bottom !important;
  }
}

/* ---------- newsletter embed (Mailchimp) ---------- */

.newsletter-embed,
.newsletter-embed * {
  box-sizing: border-box !important;
}

.newsletter-embed #mc_embed_signup {
  background: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
  font-family: var(--font-body) !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-embed #mc_embed_signup form {
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-embed #mc_embed_signup_scroll {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.newsletter-embed .indicates-required {
  float: none !important;
  text-align: left !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 11.5px !important;
  margin: 0 0 10px !important;
  order: -1;
}

.newsletter-embed .mc-field-group {
  width: 75% !important;
  display: block;
  margin: 0 0 8px !important;
  padding: 0 !important;
}

.newsletter-embed .mc-field-group label {
  display: block;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  margin: 0 0 4px !important;
}

.newsletter-embed .mc-field-group input {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 7px 9px !important;
  border-radius: 6px !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  margin: 0 !important;
}

.newsletter-embed .mc-field-group input:focus {
  outline: 2px solid var(--gold) !important;
}

.newsletter-embed .asterisk {
  color: var(--gold) !important;
}

.newsletter-embed .clear {
  clear: both;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter-embed #mc-embedded-subscribe {
  display: inline-block !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  border: none !important;
  border-radius: 999px !important;
  width: auto !important;
  height: auto !important;
  padding: 8px 18px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  cursor: pointer !important;
  margin: 4px 0 0 !important;
  box-shadow: none !important;
  transition: opacity 0.15s ease;
}

.newsletter-embed #mc-embedded-subscribe:hover {
  opacity: 0.88;
}

.newsletter-embed .response {
  color: var(--gold) !important;
  font-size: 12.5px !important;
  margin: 8px 0 0 !important;
}

/* ---------- footer useful links columns ---------- */

.footer-links-cols {
  display: flex;
  gap: 32px;
}

.footer-links-cols ul {
  min-width: 0;
}

/* ---------- leadership team ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

.team-card {
  text-align: left;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-2);
  margin-bottom: 20px;
  border-radius: 20px;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.team-photo-placeholder img {
  width: 64px;
  height: 64px;
  opacity: 0.85;
}

.team-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.team-title {
  color: var(--rust);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}

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

/* ---------- HubSpot waitlist form ---------- */

.waitlist-embed .hs-form-field {
  margin-bottom: 18px;
}

.waitlist-embed .hs-form-field label,
.waitlist-embed label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}

.waitlist-embed input[type="text"],
.waitlist-embed input[type="email"],
.waitlist-embed input[type="tel"],
.waitlist-embed input[type="number"],
.waitlist-embed select,
.waitlist-embed textarea,
.waitlist-embed .hs-input {
  width: 100% !important;
  padding: 13px 16px !important;
  border-radius: 10px !important;
  border: 1px solid var(--line) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  background: var(--cream) !important;
  color: var(--ink) !important;
  box-sizing: border-box !important;
}

.waitlist-embed input:focus,
.waitlist-embed select:focus,
.waitlist-embed textarea:focus {
  outline: none !important;
  border-color: var(--rust) !important;
  background: var(--white) !important;
}

.waitlist-embed .hs-button,
.waitlist-embed .hsfc-Button,
.waitlist-embed input[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  justify-content: center;
  background: var(--rust) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  margin-top: 6px;
  box-shadow: 0 6px 18px rgba(193, 122, 78, 0.35) !important;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.waitlist-embed .hs-button:hover,
.waitlist-embed .hsfc-Button:hover,
.waitlist-embed input[type="submit"]:hover {
  background: var(--rust-dark) !important;
  transform: translateY(-2px);
}

.waitlist-embed .hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  color: var(--rust-dark);
  font-size: 13px;
}

.waitlist-embed .submitted-message {
  text-align: center;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}

.waitlist-embed .hs-richtext,
.waitlist-embed .legal-consent-container {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.waitlist-embed fieldset {
  max-width: 100% !important;
}

.waitlist-embed p,
.waitlist-embed li,
.waitlist-embed .hsfc-RichText {
  color: var(--ink-soft) !important;
  font-family: var(--font-body) !important;
  line-height: 1.7 !important;
}

.waitlist-embed h1,
.waitlist-embed h2,
.waitlist-embed h3,
.waitlist-embed h4,
.waitlist-embed .hsfc-Heading {
  color: var(--ink) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
}
