/* ============================================================
   DAYBRIDGE – styles.css
   One file controls the look of every page.

   TO SWAP COLORS LATER:
   Update the hex values in Section 1 only.
   Every page updates automatically – nothing else to touch.
   ============================================================ */


/* ============================================================
   1. COLOR TOKENS  ← THE ONLY PLACE YOU CHANGE COLORS
   ============================================================ */
:root {
  /* Core brand palette */
  --color-coral:        #F28F7A;;   /* primary CTA, buttons */
  --color-coral-dark:   #F28F7A;   /* coral hover state */
  --color-navy:         #1B2B4B;   /* all navy uses */
  --color-cornflower:   #6FB5FD;   /* logo, headline accent, secondary CTA */
  --color-honey:        #FED959;   /* accent, waitlist headline */

  /* Neutral surfaces */
  --color-linen:        #FDFCF9;   /* main page background */
  --color-white:        #FFFFFF;   /* schedule grid cells */

  /* Text */
  --color-text-body:      rgba(27,43,75,0.75);
  --color-text-muted:     rgba(27,43,75,0.45);
  --color-text-light:     #FAF7F2;
  --color-text-light-75:  rgba(250,247,242,0.75);
  --color-text-light-55:  rgba(250,247,242,0.55);

  /* Borders */
  --color-border:       rgba(27,43,75,0.08);
  --color-border-med:   rgba(27,43,75,0.12);
  --color-border-light: rgba(255,255,255,0.1);
}


/* ============================================================
   2. FONT TOKENS
   ============================================================ */
:root {
  --font-display: Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-nav:     'Lora', Georgia, serif;
}


/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-linen);
  color: var(--color-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-wrap: pretty;
  font-size: 15px;
}

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

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
  padding-left: 4rem;
  padding-right: 4rem;
  background: #FDFCF9;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
}

.logo-day    { color: var(--color-cornflower); }
.logo-bridge { color: var(--color-coral); }

.nav-logo em {
  font-style: normal;
  color: var(--color-cornflower);
}

.nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-link {
  font-family: var(--font-nav);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 400;
  color: rgba(27,43,75,0.7);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--color-navy); }

.nav-link.active {
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-cornflower);
}

.nav-cta {
  display: inline-block;
  background: var(--color-coral);
  color: var(--color-white);
  padding: clamp(8px, 0.8vw, 10px) clamp(16px, 1.5vw, 22px);
  border-radius: 100px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--color-coral-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

.nav-btns {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin-left: auto;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn:active { transform: scale(0.98); }

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

.btn-primary:hover { background: var(--color-coral-dark); }

.btn-secondary {
  background: var(--color-navy);
  color: var(--color-text-light);
}

.btn-secondary:hover { background: var(--color-navy); opacity: 0.85; }

.btn-sm {
  font-size: 11px;
  padding: 8px 20px;
}


/* ============================================================
   6. HERO (index.html)
   ============================================================ */
.hero {
  position: relative;
  background-image: url('new-hero.jpg');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FDFCF9 0%, rgba(253,252,249,0.95) 28%, rgba(253,252,249,0.65) 52%, transparent 75%);
}

.hero-left {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 6rem 4rem;
}

.hero-mobile-img { display: none; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.45);
  margin-bottom: 1rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.5rem
}

.hero-h1 .navy       { color: var(--color-navy);       display: block; }
.hero-h1 .cornflower { color: var(--color-cornflower); display: block; }

.hero-sub {
  font-family: var(--font-nav);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--color-text-body);
  text-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-btn-left {
  margin-top: 1rem;
  display: inline-block;
}

/* ============================================================
   7. PROBLEM SECTION (index.html)
   ============================================================ */
.problem {
  background: #F0EBE3;
  padding: 3.5rem 4rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 11fr 13fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
}

.problem-left h2 .accent {
  color: var(--color-cornflower);
}

.problem-left p {
  font-family: var(--font-nav);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-body);
  max-width: 460px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.benefit {
  border-top: 3px solid var(--color-honey);
  padding-top: 1.35rem;
}

.benefit.coral {
  border-top-color: var(--color-honey);
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 0.7rem;
}

.benefit p {
  font-family: var(--font-nav);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--color-text-body);
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .problem      { padding: 4rem 2rem; }
}


/* ============================================================
   8. HOW WE CARE
   ============================================================ */
.how {
  background: var(--color-linen);
  padding: 4rem 4rem;
  scroll-margin-top: 60px;
}

.how-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 0.5rem;
}

.how-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.how-subtitle {
  font-family: var(--font-nav);
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text-body);
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 5rem;
  align-items: start;
}

.card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-row: span 3;
  border-top: 3px solid var(--color-border-med);
  padding-top: 1.25rem;
}

.card { border-top-color: var(--color-navy); }

.card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.card-title { color: var(--color-navy); }

.card-body {
  font-family: var(--font-nav);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-body);
  text-align: left;
  min-height: 3.5rem;
}

.card-details {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-self: start;
  list-style: disc;
  padding-left: 1.1rem;
}

.card-details li {
  list-style: disc;
  font-family: var(--font-nav);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-body);
}

.card-lead     { font-weight: 500; }
.card-lead { color: var(--color-navy); font-weight: 600; }

.coral    { color: var(--color-coral-dark); }
.lavender { color: var(--color-cornflower); }
.navy     { color: var(--color-navy); }

.link-coral { white-space: nowrap; }

.schedule-cta {
  display: inline-block;
  background: var(--color-coral);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.schedule-cta:hover { background: var(--color-coral-dark); }

.how-teaser {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.how-teaser li {
  list-style: disc;
  font-family: var(--font-nav);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-body);
  margin-left: 1.1rem;
}

.how-teaser-quote {
  border-left: 3px solid var(--color-honey);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.how-teaser-quote p {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text-body);
}

/* Schedule citations */
sup.cite {
  font-size: 0.65em;
  color: #5A78C8;
  font-weight: 500;
  vertical-align: super;
  line-height: 0;
}
 
.research-toggle {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 1.25rem 0 0;
  font-family: inherit;
  font-size: 0.8125rem;
  color: var(--color-coral-dark);
  font-weight: 500;
  text-decoration: none;
}
 
.toggle-arrow {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
 
.research-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}
 
.schedule-footnotes {
  display: none;
  margin-top: 1rem;
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  opacity: 0.6;
}
 
.schedule-footnotes.open { display: block; }
 
.schedule-footnotes ol {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}
 
.schedule-footnotes li {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}
 
.schedule-footnotes a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schedule-preview {
  background: var(--color-linen);
  padding: 1.5rem 4rem 5rem;
}

.schedule-preview-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 0.5rem;
}

.schedule-preview-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.schedule-preview-sub {
  font-family: var(--font-nav);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-body);
  margin-bottom: 2.5rem;
}

.schedule-preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.schedule-preview-card {
  border-top: 3px solid var(--color-navy);
  padding-top: 1.25rem;
}

.schedule-preview-time {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 0.5rem;
}

.schedule-preview-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 0.6rem;
}

.schedule-preview-card-body {
  font-family: var(--font-nav);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-body);
}

@media (max-width: 768px) {
  .schedule-preview { padding: 3rem 1.5rem; }
  .schedule-preview-title { font-size: 30px; }
  .schedule-preview-cards { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   9. CAREGIVERS PAGE
   ============================================================ */
.cg-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--color-linen);
}

.cg-new-text {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  overflow-y: auto;
}

.cg-new-photo {
  position: relative;
  height: 100%
}

.cg-new-text .cg-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
}

.cg-new-text .cg-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
}

.cg-new-text .cg-body {
  font-family: var(--font-nav);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.cg-new-text .cg-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cg-new-text .cg-feature:first-of-type { margin-top: 3rem;}
.cg-new-text .cg-feature:last-of-type { border-bottom: none; }

.cg-new-text .cg-feature-icon {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(224,122,95,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cg-new-text .cg-feature-title {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.cg-new-text .cg-feature-desc {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.55;
}

.cg-new-text .btn-primary {
  align-self: flex-start;
  margin-top: 0.75rem;
}

.cg-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cg-carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.cg-carousel-slide.active {
  opacity: 1;
}

.cg-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  color: transparent;
}

.cg-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.cg-carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(250,247,242,0.45);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.cg-carousel-dot.active { background: var(--color-text-light); }


/* ============================================================
   10. PRICING / MEMBERSHIP
   ============================================================ */
.pricing {
  background: var(--color-linen);
  padding: 5rem 4rem 2rem;
  scroll-margin-top: 60px;
}

.pricing-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 0.4rem;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 4rem;
  align-items: stretch;
}

.pricing-left { display: flex; flex-direction: column; }

.pricing-amount-line {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-coral-dark);
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-amount-line .unit {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-sub {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin-bottom: 1.6rem;
}

.pricing-examples {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(27,43,75,0.1);
  padding-top: 1.25rem;
}

.pricing-note,
.pricing-hours {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.55;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(27,43,75,0.1);
  padding-top: 1.25rem;
}

.pricing-source {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 0.7rem;
  line-height: 1.5;
}

.pricing-right {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-nav);
  table-layout: fixed;
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 0 0 1.3rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(27,43,75,0.15);
  vertical-align: top;
  line-height: 1.4;
}

.pricing-table th:first-child { text-align: left; }

.pricing-table td {
  padding: 1.15rem 0;
  font-size: 1rem;
  color: var(--color-text-body);
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  text-align: center;
}

.pricing-table td:first-child { text-align: left; }

.pricing-table tr.db-row td {
  color: var(--color-navy);
  font-weight: 500;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.pricing-table tr.db-row td.highlight { color: var(--color-coral); }
.pricing-table tr:not(.db-row) td { padding-top: 1.35rem; padding-bottom: 1.35rem; }

.db-badge {
  display: inline-block;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  font-style: italic;
  text-align: center;
}

.page-membership .pricing { padding-bottom: 2rem; }

.pricing-tagline-wrap .btn {
  display: inline-block;
  margin-bottom: 1.5rem;
}


/* ============================================================
   11. WAITLIST FORM
   ============================================================ */
.waitlist {
  background: var(--color-linen);
  padding: 4.5rem 4rem 5rem;
  text-align: center;
  scroll-margin-top: 60px;
}

.wl-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 1.25rem;
}

.wl-h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 3rem;
  line-height: 1.1;
}

.wl-h2 em {
  color: var(--color-navy);
  font-style: italic;
}

.wl-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196,187,234,0.35);
  border-radius: 20px;
  padding: 3rem 2rem;
}

.wl-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.wl-col-fixed { width: 300px; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.wl-col-wide  { width: 360px; }

.wl-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: center;
}

.wl-input {
  padding: 6px 14px;
  border: 1px solid rgba(196,187,234,0.25);
  border-radius: 8px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  color: var(--color-text-light);
  font-family: var(--font-nav);
  text-align: center;
  width: 100%;
}

.wl-input::placeholder { color: rgba(244,243,248,0.45); }

.wl-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.wl-pill {
  background: transparent;
  border: 1px solid rgba(196,187,234,0.3);
  color: rgba(244,243,248,0.7);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-family: var(--font-nav);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.wl-pill:hover,
.wl-pill.active {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-text-light);
  color: var(--color-text-light);
}

.wl-pill-equal { min-width: 110px; text-align: center; }
.wl-pills.error { outline: 1px solid var(--color-coral); border-radius: 100px; padding: 4px; }

.wl-pill-error {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-coral);
  margin-top: 0.35rem;
  display: none;
}

.wl-pill-error.visible { display: block; }

.wl-submit {
  background: var(--color-coral);
  color: var(--color-white);
  border: none;
  padding: 13px 40px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  width: auto;
  max-width: 100%;
  transition: background 0.15s;
}

.wl-submit:hover { background: var(--color-coral-dark); }


/* ============================================================
   12. SCHEDULE (how-we-care.html)
   ============================================================ */
.schedule {
  background: var(--color-linen);
  padding: 2.5rem 4rem 5rem;
  scroll-margin-top: 60px;
}

.schedule-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 0.5rem;
}

.schedule-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.schedule-sub {
  font-family: var(--font-nav);
  font-size: 19px;
  color: var(--color-text-body);
  line-height: 1.55;
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 200px 160px 1fr;
  grid-auto-rows: 1fr;
  gap: 0;
  border: 1px solid rgba(27,43,75,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.schedule-item { display: contents; }

.schedule-item.even .schedule-time,
.schedule-item.even .schedule-item-title,
.schedule-item.even .schedule-item-desc { background: var(--color-linen); }

.schedule-time {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-coral);
  white-space: nowrap;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(27,43,75,0.08);
  border-right: 1px solid rgba(27,43,75,0.08);
  display: flex;
  align-items: center;
  background: var(--color-white);
}

.schedule-item-content { display: contents; }

.schedule-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  text-wrap: balance;
  font-weight: 500;
  color: var(--color-navy);
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(27,43,75,0.08);
  border-right: 1px solid rgba(27,43,75,0.08);
  display: flex;
  align-items: center;
  background: var(--color-white);
}

.schedule-item-desc {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.6;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(27,43,75,0.08);
  display: flex;
  align-items: center;
  background: var(--color-white);
}

.schedule-item:last-child .schedule-time,
.schedule-item:last-child .schedule-item-title,
.schedule-item:last-child .schedule-item-desc { border-bottom: none; }

.schedule-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 0.7rem;
  line-height: 1.5;
}


/* ============================================================
   13. TEAM PAGE
   ============================================================ */
.team {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,43,75,0.5);
  margin-bottom: 0.5rem;
}

.team-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.team-body p {
  font-family: var(--font-nav);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-body);
  margin-bottom: 0.85rem;
}

.team-body p:last-child { margin-bottom: 0; }

.team-body .emphasis {
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.35;
  color: var(--color-coral-dark);
  font-style: italic;
  border-left: 3px solid var(--color-coral);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  font-weight: 400;
}

.sign-off { margin-top: 2.55rem; }

.sign-off-together {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-body);
  margin-bottom: 1.25rem;
}

.sign-off-people {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.sign-off-name {
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
  text-align: center;
}

.sign-off-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: rgba(27,43,75,0.5);
  letter-spacing: 0.02em;
  text-align: center;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

.sign-off-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0.75rem;
  display: block;
}

.sign-off-person {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advisors-divider {
  border: none;
  border-top: 1px solid var(--color-border-med);
  margin: 3rem 0 2.5rem;
}
 
.advisors-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
 
.advisors-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3rem;
}

.advisors-partner-desc {
  font-family: var(--font-nav);
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-muted);
  text-align: left;
  max-width: 380px;
  margin-top: 0.75rem;
}

.advisors-partner-logo {
  height: 56px;
  width: auto;
  margin-top: 16px;
  opacity: 0.85;
}

/* ============================================================
   14. FAQ PAGE
   ============================================================ */
.faq { background: var(--color-linen); padding: 5rem 4rem; }
.faq-eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(27,43,75,0.5); margin-bottom: 0.5rem; }
.faq-title { font-family: var(--font-display); font-size: 44px; font-weight: 500; color: var(--color-navy); margin-bottom: 1rem; line-height: 1.1; }
.faq-title .lavender { color: var(--color-cornflower); }
.faq-sub { font-family: var(--font-nav); font-size: 19px; line-height: 1.55; color: var(--color-text-body); max-width: 820px; margin-bottom: 2.5rem; }
.faq-inner { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: start; }
.faq-list { width: 100%; }
.faq-item { border-top: 1px solid rgba(27,43,75,0.12); }
.faq-item:last-child { border-bottom: 1px solid rgba(27,43,75,0.12); }
.faq-q { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--color-navy); line-height: 1.3; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; cursor: pointer; user-select: none; }
.faq-q:hover { color: var(--color-coral-dark); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease, background 0.2s; font-style: normal; font-size: 16px; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--color-coral); border-color: var(--color-coral); color: var(--color-white); }
.faq-item.open .faq-q { color: var(--color-coral-dark); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-item.open .faq-body { max-height: 600px; }
.faq-a { font-family: var(--font-nav); font-size: 1rem; line-height: 1.55; color: var(--color-text-body); padding-bottom: 1.5rem; }
.faq-a p { margin: 0 0 0.65rem 0; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a ul { list-style: disc; margin: 0.4rem 0 0.65rem 1.25rem; padding: 0; }
.faq-a ul:last-child { margin-bottom: 0; }
.faq-a li { margin-bottom: 0.1rem; }
.faq-a li:last-child { margin-bottom: 0; }
.faq-a strong { font-weight: 500; color: var(--color-navy); }
.faq-aside { background: var(--color-navy); border-radius: 12px; padding: 2rem; position: sticky; top: 110px; }
.faq-aside-title { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--color-text-light); line-height: 1.2; margin-bottom: 0.75rem; }
.faq-aside-body { font-family: var(--font-nav); font-size: 13px; line-height: 1.75; color: var(--color-text-light-75); margin-bottom: 1.5rem; }
.faq-aside-btn { display: block; text-align: center; background: var(--color-coral); color: var(--color-white); padding: 9px 18px; border-radius: 100px; font-size: 12px; font-weight: 500; font-family: var(--font-body); text-decoration: none; margin-bottom: 1rem; transition: background 0.15s; }
.faq-aside-btn:hover { background: var(--color-coral-dark); }
.faq-aside-email { font-family: var(--font-nav); font-size: 12px; color: var(--color-text-light-55); text-align: center; }
.faq-aside-email a { color: var(--color-text-light-75); text-decoration: none; }

@media (max-width: 768px) {
  .faq { padding: 3rem 1.5rem; }
  .faq-title { font-size: 34px; }
  .faq-sub { font-size: 16px; }
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-aside { position: static; }
}


/* ============================================================
   15. THANK YOU PAGE
   ============================================================ */
.thankyou {
  min-height: 100vh;
  background: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.thankyou-logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 0 auto 3rem;
}

.thankyou-h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.thankyou-sub {
  font-family: var(--font-nav);
  font-size: 18px;
  color: var(--color-text-light-75);
  line-height: 1.55;
  max-width: 40ch;
  margin: 0 auto 2rem;
}

.thankyou-body {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-light-75);
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 auto 2.5rem;
}


/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(155deg, #7BAED6 0%, #4E82BE 100%);
  padding: 1.35rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-logo em {
  font-style: normal;
  color: var(--color-text-light);
}

.logo-day-footer    { color: var(--color-text-light); }
.logo-bridge-footer { color: var(--color-text-light); }

.footer-links {
  display: flex;
  gap: 2rem;
  justify-self: center;
}

.footer-links a {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light-75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--color-text-light); }

.footer-copy {
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light-75);
  justify-self: end;
}

.footer-copy a { white-space: nowrap; }

/* ============================================================
   17. UTILITY CLASSES
   ============================================================ */
.link-coral      { color: var(--color-coral-dark); }
.hero-sub-spaced { margin-top: 0.25rem; }
.cornflower      { color: var(--color-cornflower); }
.honey           { color: var(--color-honey); }
.desktop-break   { display: inline; }

.schedule-cta-block { height: 1.5rem; }
.schedule-cta-wrap  { text-align: center; padding-bottom: 5rem; }
.schedule-cta-title { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--color-navy); margin-bottom: 2.5rem; line-height: 1.2; }

.pe-table   { border-collapse: collapse; font-family: var(--font-nav); border-spacing: 0; }
.pe-days    { padding: 5px 0; color: var(--color-navy); font-size: 17px; white-space: nowrap; width: 3.5rem; }
.pe-unit    { padding: 5px 0; color: var(--color-text-muted); font-size: 1rem; white-space: nowrap; width: 4rem; }
.pe-dash    { padding: 5px 0.3rem 5px 0.5rem; color: var(--color-text-muted); font-size: 1rem; text-align: center; white-space: nowrap; width: 2rem; }
.pe-amount  { padding: 5px 0; color: var(--color-coral); font-weight: 500; font-size: 17px; white-space: nowrap; text-align: right; width: 4.2rem; }
.pe-freq    { padding: 5px 0 5px 0.5rem; color: var(--color-text-muted); font-size: 1rem; white-space: nowrap; }

.pricing-right-spacer   { height: 2.8rem; }
.pricing-source-top     { margin-top: 0.5rem; }
.pricing-source-bottom  { margin-top: 0.5rem; }
.pricing-tagline-wrap   { margin-top: auto; margin-bottom: 1rem; padding-bottom: 0.5rem; text-align: center; }
.pt-col-name   { width: 36%; }
.pt-col-hourly { width: 21%; }
.pt-col-hours  { width: 21%; }
.pt-col-daily  { width: 22%; }
.db-name-cell  { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }

.wl-eyebrow-line2 { display: inline-block; margin-top: 0.35rem; }
.wl-intro         { font-family: var(--font-nav); font-size: clamp(15px, 1.2vw, 17px); color: var(--color-text-body); line-height: 1.55; max-width: 640px; margin: -1.5rem auto 2.5rem; text-align: center; }
.wl-input-zip     { width: 120px; text-align: center; }
.wl-form-spacer   { height: 0.75rem; }
.wl-submit-wrap   { display: flex; justify-content: center; }
.wl-spam-note     { font-family: var(--font-nav); font-size: 13px; color: var(--color-text-muted); margin-top: 1.25rem; text-align: center; }

.wl-call-note { font-family: var(--font-nav); font-size: 12px; color: var(--color-cornflower); margin-top: 0.5rem; text-align: center; }
.wl-call-note a { color: var(--color-cornflower); text-decoration: none; transition: color 0.15s; }
.wl-call-note a:hover { color: var(--color-navy); }


/* ============================================================
   18. ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-coral);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}


/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-h1       { font-size: 46px; }
  .pricing-inner { gap: 2.5rem; }
  .pricing-right { padding-left: 2rem; }
  .schedule-grid { grid-template-columns: 160px 130px 1fr; }
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .problem      { padding: 4rem 2rem; }
}

@media (max-width: 768px) {
  .nav        { padding: 1rem 1.5rem; position: sticky; top: 0; }
  .nav-toggle { display: block; }
  .nav-links  { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #EDE8E0; padding: 1.5rem 1.5rem 2rem; gap: 1.25rem; z-index: 200; border-top: 1px solid var(--color-border); }
  .nav-links.open { display: flex; }
  .nav-link       { color: var(--color-navy); font-size: 16px; }
  .nav-link:hover { color: var(--color-cornflower); }

  .nav-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
  }

  .desktop-break { display: none; }

  .hero            { background-image: none; min-height: auto; flex-direction: column; }
  .hero::before    { display: none; }
  .hero-left       { padding: 3rem 1.5rem 2rem; }
  .hero-h1         { font-size: 38px; }
  .hero-mobile-img { display: block; width: 100%; height: 280px; object-fit: cover; object-position: center; }

  .how         { padding: 3rem 1.5rem; }
  .how-title   { font-size: 34px; }
  .how-subtitle{ font-size: 16px; }
  .cards-row   { grid-template-columns: 1fr; gap: 3rem; }

  .cg-new      { grid-template-columns: 1fr; min-height: auto; }
  .cg-new-photo{ position: relative; height: 320px; order: -1; }
  .cg-new-text { padding: 3rem 1.5rem; gap: 1rem; }
  .cg-new-text .cg-h2   { font-size: 34px; }
  .cg-new-text .cg-body { font-size: 1rem; }

  .pricing       { padding: 3rem 1.5rem; }
  .pricing-title { font-size: 34px; }
  .pricing-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-right { padding-left: 0; padding-top: 1.5rem; }
  .pricing-tagline-wrap { margin-top: 1.5rem; } 

  .waitlist    { padding: 3rem 1.5rem; }
  .wl-card     { padding: 2rem 1.25rem; }
  .wl-row      { flex-direction: column; gap: 1.5rem; }
  .wl-col-fixed, .wl-col-wide { width: 100%; }
  .wl-h2       { font-size: 34px; }

  .schedule       { padding: 2.5rem 1.5rem; }
  .schedule-title { font-size: 30px; }
  .schedule-sub   { font-size: 16px; }
  .schedule-grid  { display: flex; flex-direction: column; gap: 0.75rem; border: none; border-radius: 0; overflow: visible; }
  .schedule-item  { display: flex; flex-direction: column; background: var(--color-white); border-radius: 10px; border: 1px solid rgba(27,43,75,0.1); overflow: hidden; }
  .schedule-item.even { background: var(--color-linen); }
  .schedule-item .schedule-time,
  .schedule-item .schedule-item-title,
  .schedule-item .schedule-item-desc,
  .schedule-item.even .schedule-time,
  .schedule-item.even .schedule-item-title,
  .schedule-item.even .schedule-item-desc { background: transparent; }
  .schedule-item-content  { display: flex; flex-direction: column; }
  .schedule-time          { padding: 0.9rem 1.1rem 0.25rem; font-size: 10px; border-bottom: none; border-right: none; white-space: normal; align-items: flex-start; }
  .schedule-item-title    { padding: 0.15rem 1.1rem 0.4rem; font-size: 16px; border-bottom: none; border-right: none; align-items: flex-start; }
  .schedule-item-desc     { padding: 0 1.1rem 0.9rem; border-bottom: none; align-items: flex-start; }

  .team            { padding: 3rem 1.5rem; }
  .team-title      { font-size: 34px; }
  .sign-off-people { flex-direction: column; gap: 1.5rem; }
  .advisors-partner { align-items: center; }
  .advisors-partner-desc { text-align: center; }

  .footer          { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.25rem 1.5rem; text-align: center;justify-items: center; }
  .footer-links    { justify-self: center; }
  .footer-copy     { justify-self: center; }
}


/* ============================================================
   20. PHONE NUMBER
   ============================================================ */
.nav-phone {
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-cornflower);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: clamp(8px, 0.8vw, 10px) clamp(16px, 1.5vw, 22px);
  border-radius: 999px;
  transition: background-color 0.15s;
  white-space: nowrap;
}

.nav-phone:hover { background-color: var(--color-navy); }

@media (max-width: 1100px) and (min-width: 769px) {
  .nav-phone { display: none; }
}


/* ============================================================
   21. STATEMENT SECTION
   ============================================================ */
.statement {
  background: linear-gradient(155deg, #7BAED6 0%, #4E82BE 100%);
  padding: 5rem 4rem;
  text-align: center;
}

.statement-text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto;
}

/* ============================================================
   22. WAITLIST PAGE
   ============================================================ */
.wl-page {
  background: var(--color-linen);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 6rem;
}

.wl-page-inner {
  width: 100%;
  max-width: 640px;
}

.wl-page-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(27,43,75,0.5);
  margin-bottom: 1rem;
}

.wl-page-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-align: center;
}

.wl-page-h1 em {
  color: var(--color-navy);
  font-style: italic;
}

.wl-page-intro {
  font-family: var(--font-nav);
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* Form card */
.wl-form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 2.5rem 2rem;
}

.wl-field-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}

.wl-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wl-field.full {
  grid-column: 1 / -1;
}

.wl-field label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.wl-field input,
.wl-field select {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-navy);
  background: var(--color-white);
  border: 1.5px solid rgba(27,43,75,0.18);
  border-radius: 8px;
  padding: 11px 14px;
  min-height: 44px;
  width: 100%;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.wl-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 7L11 1' stroke='rgba(250,247,242,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
      cursor: pointer;
}

.wl-field select option {
  background: var(--color-white);
  color: rgba(27,43,75,0.18);
}

.wl-field input::placeholder {
  color: rgba(27,43,75,0.5);
}

.wl-field input:focus,
.wl-field select:focus {
  outline: none;
  border-color: var(--color-cornflower);
}

.wl-radio-group {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5px;
  margin-bottom: 2rem;
}

.wl-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: var(--color-text-body);
  cursor: pointer;
}

.wl-radio-label input[type="radio"] {
  width: auto;
  accent-color: var(--color-coral);
  cursor: pointer;
}

.wl-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.75rem 0;
}

.wl-page-submit {
  width: auto;
  background: var(--color-coral);
  color: var(--color-white);
  border: none;
  padding: 14px 48px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.wl-page-submit:hover { background: var(--color-coral-dark); }

.wl-page-spam {
  font-family: var(--font-nav);
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

  @media (max-width: 560px) {
    .wl-field-group { grid-template-columns: 1fr; }
    .wl-field.full  { grid-column: 1; }
    .wl-page        { padding: 3rem 1.25rem 4rem; }
    .wl-form-card   { padding: 1.75rem 1.25rem; }
  }

.wl-privacy-note {
  font-family: var(--font-nav);
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.wl-radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  min-height: unset;
  padding: 0;
  margin: 0;
  accent-color: var(--color-coral);
  cursor: pointer;
  flex-shrink: 0;
}

.wl-field-hint {
  font-family: var(--font-nav);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}