    :root {
      --black: #111111;
      --rust: #b85c38;
      --slate: #4a6fa5;
      --white: #ffffff;
      --cool-gray: #e8eaed;
      --mid-gray: #6b7280;
      --border: #d4d8de;
	  --navy: #1e3a5f;
	  --warm-white: #fdf6f2;
    }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  background: var(--white);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
  border-bottom: 3px solid var(--slate)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-links a { color: #555; text-decoration: none; }
.nav-links a:hover { color: var(--rust); }
.nav-links a.active { color: var(--rust); }

.nav-cta {
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}

.nav-cta:hover { background: #3a5f95; }


/* HERO */
.hero {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--rust);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border: 2px solid var(--rust);
  opacity: 0.1;
  border-radius: 4px;
  transform: rotate(12deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 220px;
  height: 220px;
  border: 2px solid var(--slate);
  opacity: 0.1;
  border-radius: 4px;
  transform: rotate(-8deg);
}

.hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  max-width: 750px;
  margin: 0 auto 0.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.hero h1 span { color: var(--rust); }

.hero p {
  font-size: 1rem;
  color: var(--black);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* INTRO */
.intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.intro p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

/* SOUND FAMILIAR */
.familiar {
  background: var(--cool-gray);
  padding: 2.5rem 2rem;
}

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

.familiar h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.familiar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.familiar-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.familiar-list li::before {
  content: '';
  display: block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  background: var(--rust);
  border-radius: 50%;
  margin-top: 0.65rem;
}

.familiar-payoff {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  border-left: 3px solid var(--rust);
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

/* CLEAR ABOUT */
.clear {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.clear h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: .1rem;
  letter-spacing: -0.01em;
}

.clear-head {
  font-size: 1rem;
  font-weight: 900 !important;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 0.1rem;
  margin-top: 0;

}

.clear-sub {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
  padding-left: 1rem;
  margin-bottom: 0;
  margin-top: 0;

}

.clear-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0rem;
}

.clear-item {
  margin-bottom: 0;
}

.clear-close {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  border-left: 3px solid var(--slate);
  padding-left: 1.25rem;
  margin-top: 1rem;
}

.clear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0rem;
}

.clear-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.clear-list li::before {
  content: '';
  display: block;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: var(--slate);
  border-radius: 50%;
  margin-top: 0.5rem;
}

.clear-list li strong {
  color: var(--slate);
  font-weight: 600;
}

/* SECTION BANDS — full-width background containers */
.section-band {
  width: 100%;
}

.section-band--light {
  background-color: var(--cool-gray);
}

.section-band--rust-tint {
  background-color: var(--warm-white);
}

.section-band--slate-tint {
  background-color: #f0f3f5;
}

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

/* ABOUT SECTIONS */
.about-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.about-section:last-of-type {
  border-bottom: none;
}

.about-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rust);
  display: inline-block;
}

.about-section p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-section p:last-child { margin-bottom: 0; }

.about-section p em {
  color: var(--slate);
  font-style: normal;
  font-weight: 600;
}


/* CREDENTIALS BLOCK - About*/
.credentials {
  background: var(--cool-gray);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.credential-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.credential-item::before {
  content: '';
  display: block;
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: var(--slate);
  border-radius: 50%;
  margin-top: 0.6rem;
}

.credential-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0;
}

.credential-item p strong {
  color: var(--black);
  font-weight: 600;
}

/* HOW I WORK - About*/
.how-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.how-item:last-child { margin-bottom: 0; }

.how-item::before {
  content: '';
  display: block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  background: var(--rust);
  border-radius: 50%;
  margin-top: 0.65rem;
}

.how-item p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 0;
}

/* CLOSING-About*/
.closing {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--black);
  border-left: 3px solid var(--rust);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
}

/* ── NOT SURE Services ── */
.not-sure {
  background: var(--cool-gray);
  padding: 1.75rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.not-sure-inner {
  max-width: 580px;
  margin: 0 auto;
}

.not-sure h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.not-sure p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.not-sure a.phone {
  color: var(--slate);
  font-weight: 600;
  text-decoration: none;
}

.not-sure a.phone:hover { text-decoration: underline; }

    /* POSTS GRID resources*/
    .posts-section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 3rem 2rem 4rem;
    }

    .posts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

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

    .post-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 6px;
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    .post-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--rust);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .post-card:hover {
      box-shadow: 0 12px 36px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
      transform: translateY(-2px);
    }

    .post-card:hover::before { transform: scaleX(1); }

    .post-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      flex-wrap: wrap;
    }

    .post-date {
      font-size: 0.75rem;
      color: var(--mid-gray);
      font-weight: 400;
    }

    .post-tags {
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
    }

    .post-tag {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--slate);
      background: var(--cool-gray);
      padding: 0.2rem 0.5rem;
      border-radius: 2px;
    }

    .post-card h2 {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--black);
      line-height: 1.3;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .post-card p {
      font-size: 0.93rem;
      color: #444;
      line-height: 1.7;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .post-link {
      display: inline-block;
      color: var(--slate);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      transition: color 0.2s;
    }

    .post-link:hover { color: #3a5f95; }
    .post-link::after { content: ' ->'; }

    .post-header {
      background: var(--cool-gray);
      padding: 1rem 1rem;
      border-bottom: 3px solid var(--rust);
    }

    .post-header-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .back-link {
      display: inline-block;
      color: var(--slate);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: .25rem;
      transition: color 0.2s;
    }

    .back-link:hover { color: #3a5f95; }
    .back-link::before { content: '<- '; }

    .post-header h1 {
      font-family: 'Libre Baskerville', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--black);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .post-body {
      max-width: 760px;
      margin: 0 auto;
      padding: 3rem 2rem;
    }

    .post-body p {
      font-size: 1.05rem;
      color: #333;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    .post-body h2 {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--black);
      margin-top: 2rem;
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .post-body a {
      color: var(--slate);
      text-decoration: none;
      font-weight: 500;
    }

    .post-body a:hover { text-decoration: underline; }

    /* FORMULA BOX */
    .formula-box {
      background: var(--cool-gray);
      border-left: 4px solid var(--slate);
      border-radius: 0 4px 4px 0;
      padding: 1rem 1.25rem;
      margin: 1rem 0 1.25rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      color: #333;
      line-height: 1.6;
    }

    /* QUICK REFERENCE TABLE */
    .quick-ref {
      background: var(--cool-gray);
      border-radius: 6px;
      padding: 1.25rem 1.5rem;
      margin: 1.5rem 0;
    }

    .quick-ref p {
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .quick-ref p:last-child { margin-bottom: 0; }

    .disclaimer {
      background: var(--cool-gray);
      border-radius: 4px;
      padding: 1rem 1.25rem;
      margin-top: 2rem;
    }

    .disclaimer p {
      font-size: 0.88rem;
      color: var(--mid-gray);
      font-style: italic;
      margin-bottom: 0;
    }
	

    /* TLDR resources */
    .tldr {
      background: var(--warm-white);
      padding: 2rem;
      margin-top: 0;
    }

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

    .tldr h2 {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--rust);
      margin-bottom: 0.75rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      font-size: 0.8rem;
    }

    .tldr p {
      font-size: 1rem;
      color: var(--black);
      line-height: 1.75;
    }
	

/* ── INTRO Services ── */
.intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.intro p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.intro strong {
  color: var(--black);
  font-weight: 600;
}

.intro-cta {
  display: block;
  width: fit-content;
  margin: 1.5rem auto 2rem;
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.intro-cta:hover {
  background: #3a5f95;
  transform: translateY(-1px);
}

/* ── SECTION LABEL Services ── */
.section-label {
  text-align: center;
  padding: 1rem 2rem 0;
}

.section-label span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  border-top: 2px solid var(--slate);
  padding-top: 0.5rem;
}

/* ── CARDS GRID Services ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.cards-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cards-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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


.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-price {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.6rem;
}

.card h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.card-subhead {
  font-size: 0.82rem;
  font-weight: 700;
  font-style: italic;
  color: var(--slate);
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}


.card-tagline {
  font-size: 0.88rem;
  color: var(--mid-gray);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--rust);
  font-family: 'Libre Baskerville', serif;
}

.card-body {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-body p { margin-bottom: 0.75rem; }
.card-body p:last-child { margin-bottom: 0; }

.card-pricing-note {
  background: var(--cool-gray);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.card-action {
  display: block;
  text-align: center;
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  margin-top: auto;
}

.card-action:hover { background: #3a5f95; }


/* CTA SECTION */
.cta-section {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 1rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #3a5f95;
  transform: translateY(-1px);
}

/* IMMEDIATE */
.immediate {
  background: var(--rust);
  color: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
}

.immediate-inner {
  max-width: 600px;
  margin: 0 auto;
}

.immediate h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.immediate p {
  font-size: 1rem;
  color: var(--cool-gray);
  line-height: 1.7;
}

.immediate a.phone {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
}

.immediate a.phone:hover { text-decoration: underline; }

/* FOOTER */

footer {
  background: var(--navy);
  color: var(--warm-white);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

footer span { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .hero { padding: 2rem 1.25rem; }
  .intro { padding: 1.75rem 1.25rem; }
  .familiar { padding: 1.75rem 1.25rem; }
  .clear { padding: 1.75rem 1.25rem; }
  .cta-section { padding: 1.75rem 1.25rem; }
  .immediate { padding: 1.25rem 1.25rem; }
}

/* CONSULTANT SECTION */
.consultant {
  background: var(--cool-gray);
  padding: 2.5rem 2rem;
}

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

.consultant h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.consultant p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.consultant-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.consultant-list li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.consultant-list li p {
  margin: 0;
  flex: 1;
}

.consultant-list li strong {
  display: inline;
}

.consultant-list li::before {
  content: '';
  display: block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  background: var(--rust);
  border-radius: 50%;
  margin-top: 0.65rem;
}

/* PAGE HEADER */
.page-header { background: var(--cool-gray); padding: 2.5rem 2rem; border-bottom: 3px solid var(--rust); }
.page-header-inner { max-width: 760px; margin: 0 auto; }
.page-header-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.75rem; }
.page-header h1 { font-family: 'Libre Baskerville', serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--black); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page-header h1 span { color: var(--rust); }
.page-header p { font-size: 1rem; color: #555; line-height: 1.7; font-weight: 300; max-width: 560px; }

/* FORM */
.form-section { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.form-group { margin-bottom: 1.75rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-group label .optional { font-weight: 400; color: var(--mid-gray); font-size: 0.8rem; margin-left: 0.35rem; }
.form-group input[type="text"], .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--black); background: var(--white); border: 1.5px solid var(--border); border-radius: 4px; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--slate); }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-group 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'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.address-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.address-row .form-group { margin-bottom: 0; }

.form-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.form-section-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 1.25rem; }

.urgency-group { margin-bottom: 1.75rem; }
.urgency-group label.group-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--black); margin-bottom: 0.75rem; }
.urgency-group label.group-label .required { color: var(--rust); margin-left: 0.2rem; }
.urgency-options { display: flex; flex-direction: column; gap: 0.6rem; }
.urgency-option { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; padding: 0.65rem 1rem; border: 1.5px solid var(--border); border-radius: 4px; transition: border-color 0.2s, background 0.2s; }
.urgency-option:hover { border-color: var(--slate); background: #f5f8ff; }
.urgency-option input[type="radio"] { margin-top: 0.15rem; accent-color: var(--slate); flex-shrink: 0; }
.urgency-option:has(input:checked) { border-color: var(--slate); background: #f5f8ff; }
.urgency-label-text { font-size: 0.93rem; color: #444; line-height: 1.4; }
.urgency-label-text strong { color: var(--slate); font-weight: 700; margin-right: 0.35rem; }

.submit-btn { display: inline-block; background: var(--slate); color: var(--white); border: none; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 0.85rem 2.5rem; border-radius: 3px; letter-spacing: 0.03em; cursor: pointer; transition: background 0.2s; }
.submit-btn:hover { background: #3a5f95; }
.form-note { font-size: 0.82rem; color: var(--mid-gray); margin-top: 1rem; font-style: italic; }

@media (max-width: 640px) {
  .address-row { grid-template-columns: 1fr; }
  .form-section { padding: 2rem 1.25rem 3rem; }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-menu.open {
  max-height: 300px;
  padding: 0.5rem 0 1rem;
}

.mobile-menu a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.65rem 2rem;
  transition: color 0.2s, background 0.2s;
}

.mobile-menu a:hover { color: var(--white); background: #1a1a1a; }
.mobile-menu a.active { color: var(--white); }

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
}

/* CHECKBOX */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.93rem;
  color: #333;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--slate);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.checkbox-text {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.5;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  animation: fadeUp 0.6s ease both;
}

.hero p {
  animation: fadeUp 0.6s ease 0.1s both;
}