:root {
  --plum: #512d4c;
  --plum-deep: #3a1f37;
  --plum-soft: #6b4564;
  --gold: #b89758;
  --gold-light: #d4b87a;
  --gold-muted: #c9a96a;
  --cream: #f7f3ec;
  --cream-dark: #efe8dc;
  --ink: #1c141a;
  --muted: #6b5f68;
  --white: #ffffff;
  --line: rgba(81, 45, 76, 0.12);
  --shadow: 0 20px 50px rgba(58, 31, 55, 0.12);
  --radius: 18px;
  --header-h: 84px;
  --font: "Urbanist", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 28px);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--plum);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  background: rgba(184, 151, 88, 0.15);
  border-color: var(--gold);
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--plum), var(--gold));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* Topbar */
.topbar {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto auto;
  align-items: center;
  gap: 0.65rem 1.25rem;
  padding: 0.85rem 0;
}

.topbar-link {
  color: var(--gold-light);
  font-weight: 650;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.topbar-link:hover {
  color: var(--white);
}

.topbar-email {
  justify-self: start;
}

.topbar-address {
  justify-self: center;
  text-align: center;
}

.topbar-phone,
.topbar-fax {
  justify-self: end;
  white-space: nowrap;
  text-align: right;
}

.pt-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.pt-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(58, 31, 55, 0.12);
}

.pt-badge img {
  display: block;
  width: 180px;
  height: auto;
  max-width: 100%;
}

.header-actions .btn-outline {
  border-color: rgba(81, 45, 76, 0.35);
  color: var(--plum);
  background: transparent;
}

.header-actions .btn-outline:hover {
  background: rgba(81, 45, 76, 0.06);
  border-color: var(--plum);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(58, 31, 55, 0.06);
  background: rgba(247, 243, 236, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand-logo {
  height: 64px;
  width: auto;
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 560;
  color: var(--plum);
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav a:hover {
  color: var(--plum-deep);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--plum);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 650;
  border: 1.5px solid transparent;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.3;
  min-height: 48px;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.7rem 1.25rem;
  font-size: 0.875rem;
  min-height: 42px;
}

.btn-md {
  padding: 0.9rem 1.65rem;
  font-size: 0.98rem;
  min-height: 50px;
}

.btn-lg {
  padding: 1.05rem 1.85rem;
  font-size: 1rem;
  min-height: 54px;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--plum);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(81, 45, 76, 0.28);
}

.btn-primary:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(81, 45, 76, 0.34);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: rgba(81, 45, 76, 0.28);
}

.btn-outline:hover {
  border-color: var(--plum);
  background: rgba(81, 45, 76, 0.05);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 5.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05) translateY(0);
  }
  to {
    transform: scale(1.12) translateY(-2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(28, 12, 26, 0.88) 0%, rgba(58, 31, 55, 0.72) 48%, rgba(81, 45, 76, 0.45) 100%),
    linear-gradient(to top, rgba(28, 12, 26, 0.75), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero .eyebrow {
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin-bottom: 2rem;
  font-weight: 430;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 750;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Marquee */
.marquee {
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  padding: 1rem 0;
  border-block: 1px solid rgba(184, 151, 88, 0.25);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-track span:nth-child(even) {
  color: var(--gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 6.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-head h2,
.about-copy h2,
.how-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--plum);
  font-weight: 750;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.08rem;
}

/* Pathways */
.pathways {
  background: var(--white);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.pathway-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  transform-style: preserve-3d;
}

.pathway-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 151, 88, 0.45);
}

.pathway-num {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pathway-card h3 {
  font-size: 1.25rem;
  color: var(--plum);
  margin-bottom: 0.65rem;
  font-weight: 700;
}

.pathway-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.services-full {
  background: linear-gradient(135deg, var(--plum-deep), var(--plum));
  color: var(--white);
  border-radius: 24px;
  padding: 2.25rem;
}

.services-full h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-tags li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 550;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.service-tags li:hover {
  background: rgba(184, 151, 88, 0.22);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* About */
.about {
  background:
    radial-gradient(circle at top right, rgba(184, 151, 88, 0.12), transparent 40%),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.about-frame:hover .about-photo {
  transform: scale(1.04);
}

.about-badge {
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  box-shadow: 0 10px 30px rgba(58, 31, 55, 0.06);
}

.about-badge strong {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.about-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-copy strong {
  color: var(--plum);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.about-actions .btn {
  flex: 0 1 auto;
}

/* How */
.how {
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.how-copy p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--plum);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.how-visual {
  position: relative;
}

.how-visual > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.how-float {
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 48%;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}

.how-float img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Fees */
.fees {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.fee-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.fee-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.fee-card.featured {
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  color: var(--white);
  border-color: transparent;
}

.fee-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.fee-card.featured .fee-label {
  color: var(--gold-light);
}

.fee-price {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 750;
  color: var(--plum);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.fee-card.featured .fee-price {
  color: var(--white);
}

.fee-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.fee-card.featured .fee-note {
  color: rgba(255, 255, 255, 0.78);
}

/* Insurance marquee */
.insurance {
  background: var(--white);
  padding-bottom: 5rem;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: logoScroll 28s linear infinite;
  padding: 0.5rem 0 1rem;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ins-logo {
  min-width: 200px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 1.25rem;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ins-logo:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(58, 31, 55, 0.08);
}

.ins-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ins-initials {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--plum), var(--plum-soft));
  color: var(--gold-light);
  font-weight: 750;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.ins-name {
  font-weight: 750;
  font-size: 0.98rem;
  color: var(--plum);
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 120px;
}

.ins-logo.cash {
  background: linear-gradient(135deg, rgba(184, 151, 88, 0.18), rgba(184, 151, 88, 0.05));
  border-color: rgba(184, 151, 88, 0.4);
}

.ins-logo.cash .ins-initials {
  background: linear-gradient(145deg, var(--gold), var(--gold-light));
  color: var(--plum-deep);
}

.ins-logo.cash .ins-name {
  color: #8a6a2f;
}

/* States */
.states {
  background: var(--cream);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.state-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--plum);
  font-size: 1.05rem;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.state-chip:hover {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
  transform: translateY(-4px);
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at bottom left, rgba(184, 151, 88, 0.14), transparent 35%),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-copy > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

a.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 151, 88, 0.5);
  box-shadow: 0 12px 28px rgba(58, 31, 55, 0.08);
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item strong {
  color: var(--plum);
  font-weight: 700;
  line-height: 1.4;
}

.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.map-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream);
  align-self: stretch;
  min-height: 560px;
  height: 100%;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(81, 45, 76, 0.16);
  background: var(--white);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 151, 88, 0.18);
}

.form-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.form-note a {
  color: var(--plum);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-row {
  margin-bottom: 1.35rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 0;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.2rem;
  accent-color: var(--plum);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-label a {
  color: var(--plum);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-label a strong {
  font-weight: 700;
}

.consent-label a:hover {
  color: var(--gold);
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(184, 151, 88, 0.15);
  color: var(--plum);
  font-weight: 600;
  text-align: center;
}

.form-error {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(160, 40, 40, 0.1);
  color: #8a1f1f;
  font-weight: 600;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.35rem 0.6rem;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.98rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.emergency {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

.footer-credit {
  color: var(--gold-light);
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Privacy page extras */
.page-hero {
  background:
    linear-gradient(135deg, rgba(58, 31, 55, 0.94), rgba(81, 45, 76, 0.88)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.policy-content {
  padding: 4.5rem 0 6rem;
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  color: var(--plum);
  font-size: 1.35rem;
  margin: 2rem 0 0.85rem;
  font-weight: 750;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.policy-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.policy-card li {
  list-style: disc;
}

.tcr-box {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(184, 151, 88, 0.12);
  border-radius: 0 12px 12px 0;
  color: var(--plum);
  font-weight: 650;
}

/* Responsive — tablet */
@media (max-width: 980px) {
  .container {
    width: min(1180px, calc(100% - 2rem));
  }

  .topbar {
    font-size: 0.82rem;
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 0.9rem 0;
  }

  .topbar-email,
  .topbar-address,
  .topbar-phone,
  .topbar-fax {
    justify-self: center;
    text-align: center;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 48px) 0 auto 0;
    background: rgba(247, 243, 236, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--line);
  }

  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .pathway-grid,
  .fee-grid,
  .state-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .how-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    max-width: 42ch;
    margin-inline: auto;
  }

  .footer-links {
    align-items: center;
    width: 100%;
  }

  .footer-links h4 {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .map-wrap {
    min-height: 380px;
    height: 380px;
  }

  .map-wrap iframe {
    position: absolute;
  }

  .about-actions {
    gap: 0.85rem;
  }

  .how-float {
    right: 4%;
    bottom: -8%;
    width: 42%;
  }

  .hero {
    min-height: auto;
    padding: 5.5rem 0 4rem;
  }

  .hero h1 {
    max-width: none;
  }
}

/* Responsive — mobile */
@media (max-width: 640px) {
  .container {
    width: min(1180px, calc(100% - 1.5rem));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.45rem;
    padding: 1rem 0;
  }

  .topbar-link {
    text-align: center;
    word-break: break-word;
  }

  .brand-logo {
    height: 52px;
  }

  .hero-stats,
  .pathway-grid,
  .fee-grid,
  .state-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .hero-ctas,
  .about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .about-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.95rem 1.35rem;
  }

  .how-visual > img {
    height: 320px;
  }

  .how-float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    margin: -2.5rem auto 0;
  }

  .section {
    padding: 4.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-links {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.25rem;
  }

  .footer-brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
