/* ============================================================
   JSM LAW PLLC — Stylesheet (Clean Rewrite)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@200;300;400;600;700&family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap");

/* ── Variables ──────────────────────────────────────────── */
:root {
  --teal:        #5EC2C7;
  --teal-dark:   #3fa9ae;
  --blue:        #50A4FC;
  --blue-dark:   #2e8de0;
  --pink:        #F2AFB3;
  --navy:        #051D4B;
  --dark:        #3F444B;
  --lt-gray:     #F7F7F7;
  --body:        #333333;
  --white:       #FFFFFF;

  /* Consistent radius — images, cards, buttons all share this scale */
  --r-btn:       4px;     /* buttons */
  --r-card:      4px;     /* cards & boxes (matches buttons) */
  --r-input:     4px;     /* inputs */
  --r-badge:     4px;     /* badges */

  --nav-h:       42px;
  --header-h:    80px;
  --ease:        0.28s ease;
  --shadow-sm:   0 2px 14px rgba(5,29,75,.08);
  --shadow-md:   0 8px 36px rgba(5,29,75,.15);
  --shadow-lg:   0 20px 64px rgba(5,29,75,.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
}

a            { color: inherit; text-decoration: none; }
img          { max-width: 100%; height: auto; display: block; }
ul           { list-style: none; }
p            { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Type ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Cabin", sans-serif;
  line-height: 1.2;
  text-transform: capitalize;
}
h1 { font-size: clamp(2rem,   5vw, 3.6rem); font-weight: 300; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; }

.sub-heading {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: capitalize;
  letter-spacing: .03em;
}

.overline {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* ── Layout ─────────────────────────────────────────────── */
.container         { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 860px; }
.section           { padding: 80px 0; }
.section--sm       { padding: 52px 0; }
.section--lg       { padding: 110px 0; }
.text-center       { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--r-btn);
  border: 2px solid currentColor;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* On-dark buttons (white border) */
.btn--teal {
  border-color: var(--white);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}

/* Filled buttons */
.btn--filled {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn--filled:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.btn--filled-teal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.btn--filled-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}

/* On-light buttons */
.btn--navy {
  border-color: var(--navy);
  color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--blue {
  border-color: var(--blue);
  color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ── Top Bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
  padding: 0 28px;
}
.topbar a {
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  font-weight: 500;
  transition: color var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar a:hover { color: var(--teal); }
.topbar svg     { width: 13px; height: 13px; fill: currentColor; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(5,29,75,.08), 0 4px 24px rgba(5,29,75,.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 28px;
}

/* Logo */
.site-logo          { display: flex; align-items: center; }
.site-logo img      { height: 54px; width: auto; object-fit: contain; }
.site-logo-text {
  font-family: "Cabin", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-logo-text span {
  display: block;
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--teal-dark);
  margin-top: 2px;
}

/* ── Main Nav ────────────────────────────────────────────── */
.main-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 10px 14px;
  border-radius: var(--r-btn);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--ease), color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { background: rgba(80,164,252,.08); }

.nav-chevron {
  width: 9px;
  height: 9px;
  transition: transform var(--ease);
  stroke: currentColor;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* EXIT button */
.nav-link--exit {
  background: var(--pink) !important;
  color: var(--white) !important;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--r-btn) !important;
}
.nav-link--exit:hover { background: #e09095 !important; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--ease);
  overflow: hidden;
  border-top: 3px solid var(--teal);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background var(--ease), color var(--ease);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover      { background: var(--lt-gray); color: var(--blue); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,29,75,.84) 0%,
    rgba(5,29,75,.62) 45%,
    rgba(94,194,199,.26) 100%
  );
}
.hero__overlay--mediation {
  background: linear-gradient(
    120deg,
    rgba(94,194,199,.9) 0%,
    rgba(5,29,75,.72) 60%,
    rgba(5,29,75,.88) 100%
  );
}
.hero__overlay--law {
  background: linear-gradient(
    150deg,
    rgba(5,29,75,.90) 0%,
    rgba(5,29,75,.62) 55%,
    rgba(63,68,75,.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  width: 100%;
}

.hero__tag {
  font-family: "Cabin", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__tag::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero__title {
  font-family: "Cabin", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  max-width: 700px;
  margin-bottom: 18px;
}
.hero__title strong { font-weight: 600; color: var(--teal); }

.hero__subtitle {
  font-family: "PT Serif", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin-bottom: 42px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: nudge 2.5s infinite;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent);
}
@keyframes nudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,29,75,.87) 0%,
    rgba(5,29,75,.62) 55%,
    rgba(94,194,199,.32) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.page-hero__sub {
  color: rgba(255,255,255,.8);
  font-family: "PT Serif", serif;
  font-style: italic;
  font-size: 1rem;
  max-width: 540px;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color var(--ease);
}
.page-hero__breadcrumb a:hover { color: var(--teal); }
.page-hero__breadcrumb span    { color: rgba(255,255,255,.2); }

/* ── Stat Bar ────────────────────────────────────────────── */
.stat-bar { background: var(--navy); }

.stat-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 260px));
  justify-content: center;
  border-left: none;
}
.stat-item {
  padding: 32px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item__num {
  font-family: "Cabin", sans-serif;
  font-size: 2.6rem;
  font-weight: 200;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Service Cards (pink section) ────────────────────────── */
.how-help {
  background: var(--pink);
  padding: 80px 0;
}
.how-help__heading {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 52px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-card);
  padding: 44px 36px;
  color: var(--white);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,.22);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.22);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card__icon svg { width: 28px; height: 28px; fill: var(--white); }
.service-card h3 {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.service-card p {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ── Better Way Section ──────────────────────────────────── */
.better-way-section { position: relative; overflow: hidden; }

.better-way-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.better-way-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 50%,
    rgba(255,255,255,0) 100%
  );
}
.better-way-section__content {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}
.better-way__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.better-way__text h2 { color: var(--navy); margin-bottom: 20px; }
.better-way__text p  { font-size: 15px; margin-bottom: 16px; }

.better-way__card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--teal);
}
.better-way__card h3 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 22px;
}

/* ── Checklist ───────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.6;
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 64px 0; }

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--teal);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  max-width: 480px;
  margin-top: 8px;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Headshot / Bio ──────────────────────────────────────── */
.bio-section        { background: var(--lt-gray); padding: 96px 0; }
.bio-section__inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

.headshot-wrap {
  position: relative;
  padding-left: 18px; /* room for the teal accent bar */
}
/* Teal accent bar left of photo */
.headshot-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
  bottom: 5%;
  width: 4px;
  background: var(--teal);
  border-radius: 2px;
}

.headshot-frame {
  /* CIRCULAR — matches the rounded button language */
  border-radius: var(--r-btn);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 1 / 1;   /* square crop */
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.headshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}

/* Placeholder when no photo */
.headshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--teal) 0%, var(--navy) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.headshot-placeholder__icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headshot-placeholder__icon svg { width: 56px; height: 56px; fill: rgba(255,255,255,.45); }
.headshot-placeholder h3 {
  font-family: "Cabin", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: none;
}
.headshot-placeholder p { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 0; }

/* Credential badge below photo */
.headshot-badge {
  position: absolute;
  bottom: -16px;
  right: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--r-badge);
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: center;
  box-shadow: var(--shadow-md);
}

/* Bio text */
.bio-content        { padding-top: 8px; }
.bio-content h2     { color: var(--navy); margin-bottom: 6px; }
.bio-content .sub-heading { color: var(--blue); margin-bottom: 28px; display: block; }
.bio-content p      { font-size: 15px; }

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 28px;
}
.credential-tag {
  background: var(--white);
  border: 1.5px solid rgba(94,194,199,.4);
  color: var(--navy);
  border-radius: var(--r-btn);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
}

/* ── Contact CTA (dark with image bg) ───────────────────── */
.contact-cta           { position: relative; overflow: hidden; }
.contact-cta__bg       { position: absolute; inset: 0; background-size: cover; background-position: center; }
.contact-cta__overlay  {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,29,75,.97) 0%,
    rgba(5,29,75,.90) 60%,
    rgba(63,68,75,.95) 100%
  );
}
.contact-cta__content  { position: relative; z-index: 2; padding: 80px 0; }
.contact-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-cta h2 { color: var(--teal); font-weight: 300; margin-bottom: 18px; }
.contact-cta p  { color: rgba(255,255,255,.8); font-size: 14.5px; margin-bottom: 16px; }

/* ── Forms ───────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field   { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.form-field label.dark { color: #555; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r-input);
  background: rgba(255,255,255,.07);
  color: var(--white);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,.11);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* Light form variant */
.contact-form--light .form-field label { color: #555; }
.contact-form--light .form-field input,
.contact-form--light .form-field select,
.contact-form--light .form-field textarea {
  background: var(--white);
  border: 1.5px solid #ddd;
  color: var(--body);
}
.contact-form--light .form-field input::placeholder,
.contact-form--light .form-field textarea::placeholder { color: #bbb; }
.contact-form--light .form-field input:focus,
.contact-form--light .form-field textarea:focus { border-color: var(--teal); }

/* ── Info Boxes ──────────────────────────────────────────── */
.info-box {
  background: var(--lt-gray);
  border-radius: var(--r-card);
  padding: 32px 36px;
  border-left: 4px solid var(--teal);
  margin-bottom: 24px;
}
.info-box h3 { font-size: 1.1rem; font-weight: 400; color: var(--navy); margin-bottom: 14px; }
.info-box p,
.info-box li { font-size: 14.5px; }
.info-box ul { display: flex; flex-direction: column; gap: 10px; }
.info-box ul li {
  padding-left: 22px;
  position: relative;
  list-style: none;
}
.info-box ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
.step  { display: flex; gap: 20px; align-items: flex-start; counter-increment: step; }

.step__num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.step__num::before { content: counter(step); }
.step__text { font-size: 14.5px; padding-top: 5px; line-height: 1.6; }

/* ── Callout ─────────────────────────────────────────────── */
.callout {
  background: var(--teal);
  border-radius: var(--r-card);
  padding: 52px;
  color: var(--white);
  margin: 52px 0;
}
.callout--navy  { background: var(--navy); }
.callout h2,
.callout h3     { color: var(--white); margin-bottom: 12px; }
.callout p      { color: rgba(255,255,255,.88); font-size: 15px; margin-bottom: 16px; }

/* ── Grid Helpers ────────────────────────────────────────── */
.two-col         { display: grid; grid-template-columns: 1fr 1fr;   gap: 52px; }
.two-col--wide   { display: grid; grid-template-columns: 2fr 1fr;   gap: 52px; }
.two-col--narrow { display: grid; grid-template-columns: 1fr 2fr;   gap: 52px; }

/* ── Fees Table ──────────────────────────────────────────── */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fees-table th {
  background: var(--navy);
  color: var(--white);
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 24px;
  text-align: left;
}
.fees-table td {
  padding: 16px 24px;
  font-size: 14.5px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.fees-table tr:last-child td { border-bottom: none; }
.fees-table tr:nth-child(even) td { background: var(--lt-gray); }
.fees-table .amount {
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1.2rem;
  white-space: nowrap;
}

/* ── Resource Links ──────────────────────────────────────── */
.resource-list { display: flex; flex-direction: column; gap: 14px; }

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--lt-gray);
  border-radius: var(--r-card);
  border: 1px solid #e8e8e8;
  cursor: pointer;
  transition: all var(--ease);
}
.resource-item:hover {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}
.resource-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--teal);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.resource-item__icon svg   { width: 20px; height: 20px; fill: var(--white); }
.resource-item__text       { flex: 1; }
.resource-item__text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.resource-item__text span  { font-size: 13px; color: #888; }
.resource-item__arrow      { color: var(--teal); font-size: 1.1rem; font-weight: 700; }

/* ── Multi-step Form ─────────────────────────────────────── */
.multistep-form {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.step-header { background: var(--navy); padding: 32px 44px; }

.step-indicators { display: flex; margin-bottom: 18px; }
.step-indicator  { flex: 1; height: 4px; background: rgba(255,255,255,.18); transition: background var(--ease); }
.step-indicator.active { background: var(--teal); }
.step-indicator.done   { background: var(--blue); }

.step-progress-text {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-title-text {
  color: var(--white);
  font-family: "Cabin", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
}

.step-body { padding: 44px; }
.step-body .form-field label { color: #555; }
.step-body .form-field input,
.step-body .form-field select,
.step-body .form-field textarea {
  background: var(--white);
  border: 1.5px solid #ddd;
  color: var(--body);
}
.step-body .form-field input::placeholder,
.step-body .form-field textarea::placeholder { color: #bbb; }
.step-body .form-field input:focus,
.step-body .form-field textarea:focus,
.step-body .form-field select:focus { border-color: var(--teal); }
.step-body select { appearance: none; }

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 44px;
  background: var(--lt-gray);
  border-top: 1px solid #e8e8e8;
}

/* ── Schedule Placeholder ────────────────────────────────── */
.schedule-placeholder {
  background: var(--lt-gray);
  border: 2px dashed rgba(94,194,199,.5);
  border-radius: var(--r-card);
  padding: 64px 40px;
  text-align: center;
  color: var(--dark);
}
.schedule-placeholder svg { width: 48px; height: 48px; fill: var(--teal); margin: 0 auto 16px; }
.schedule-placeholder h3  { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.schedule-placeholder p   { font-size: 14px; color: #777; }

/* ── Legal / Privacy Content ─────────────────────────────── */
.legal-content h3 {
  font-family: "PT Serif", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
.legal-content p { font-size: 14.5px; line-height: 1.85; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--white); padding: 64px 0 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo-img  { height: 48px; width: auto; margin-bottom: 12px; }
.footer__logo-text {
  font-family: "Cabin", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__tagline {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.footer__contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.footer__contact-list svg {
  width: 14px;
  height: 14px;
  fill: var(--teal);
  min-width: 14px;
  margin-top: 2px;
}
.footer__nav h4 {
  font-family: "Cabin", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 18px;
}
.footer__nav ul           { display: flex; flex-direction: column; gap: 10px; }
.footer__nav ul li a      { font-size: 13.5px; color: rgba(255,255,255,.68); transition: color var(--ease); }
.footer__nav ul li a:hover{ color: var(--teal); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright { font-size: 12px; color: rgba(255,255,255,.38); }

.footer__links     { display: flex; gap: 20px; }
.footer__links a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--teal); }

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  font-style: italic;
  line-height: 1.7;
}

/* ── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu__logo  { height: 44px; width: auto; }
.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu__nav { flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  display: block;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-btn);
  transition: background var(--ease);
}
.mobile-menu__nav a:hover    { background: rgba(255,255,255,.08); }
.mobile-menu__nav .sub-link  {
  font-size: 13px;
  padding: 10px 16px 10px 36px;
  color: rgba(255,255,255,.65);
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 400;
}
.mobile-menu__exit { background: var(--pink) !important; color: var(--white) !important; text-align: center; margin-top: 8px; }

.mobile-menu__contact { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 10px; }
.mobile-menu__contact a { color: rgba(255,255,255,.65); font-size: 13.5px; display: flex; align-items: center; gap: 8px; }

/* ── Scroll Fade-in ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .62s ease, transform .62s ease;
}
.fade-in.visible       { opacity: 1; transform: translateY(0); }
.fade-in--delay-1      { transition-delay: .12s; }
.fade-in--delay-2      { transition-delay: .24s; }
.fade-in--delay-3      { transition-delay: .36s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .better-way__grid,
  .contact-cta__inner,
  .bio-section__inner,
  .two-col,
  .two-col--wide,
  .two-col--narrow {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__grid    { grid-template-columns: 1fr; gap: 36px; }
  .stat-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .cta-band__inner { flex-direction: column; text-align: center; }

  .better-way-section__overlay {
    background: rgba(255,255,255,.94);
  }
  .hero  { min-height: 80vh; }
}

@media (max-width: 600px) {
  .topbar         { display: none; }
  .section,
  .section--lg    { padding: 52px 0; }
  .hero           { min-height: 100svh; }
  .callout        { padding: 32px 24px; }
  .step-body,
  .step-nav       { padding: 24px; }
  .step-header    { padding: 22px 24px; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
}
