/* ============ DESIGN TOKENS ============ */
:root {
  /* Colors — warm, colorful, hopeful */
  --cream: #fff8ee;
  --ink: #1a1a1a;
  --ink-2: #2d2d2d;
  --ink-soft: #4a4a4a;
  --ink-muted: #6b6b6b;

  --coral: #ff6b6b;
  --coral-dark: #e54848;
  --yellow: #ffd93d;
  --yellow-dark: #f5c518;
  --teal: #4ecdc4;
  --teal-dark: #2fb3aa;
  --purple: #a78bfa;
  --purple-dark: #8b6fe8;
  --mint: #b8e0d2;
  --sky: #a8dadc;
  --peach: #ffd6b8;
  --lavender: #e4d6ff;

  /* Surfaces */
  --bg: var(--cream);
  --surface: #ffffff;
  --surface-2: #fff1dc;

  /* Typography */
  --display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.1vw, 0.8rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem, 0.98rem + 0.15vw, 1.07rem);
  --text-lg: clamp(1.125rem, 1.08rem + 0.25vw, 1.25rem);
  --text-xl: clamp(1.375rem, 1.2rem + 0.8vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.7rem + 2.5vw, 3.5rem);
  --text-hero: clamp(2.75rem, 2rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.06), 0 4px 12px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 6px 16px rgba(26, 26, 26, 0.08), 0 2px 4px rgba(26, 26, 26, 0.05);
  --shadow-lg: 0 20px 45px -15px rgba(26, 26, 26, 0.18);
  --shadow-pop: 6px 6px 0 var(--ink);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 var(--space-4);
  color: var(--ink);
}
h3 {
  line-height: 1.2;
}
p {
  margin: 0 0 var(--space-4);
  color: var(--ink-soft);
}
.lead {
  font-size: var(--text-lg);
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: var(--surface);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  margin-bottom: var(--space-6);
}
.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

.section-label {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--coral-dark);
  margin-bottom: var(--space-4);
}
.section-title {
  font-size: var(--text-3xl);
  max-width: 22ch;
}
.section-title--light {
  color: #fff;
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 62ch;
  margin-top: var(--space-4);
}
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 900px;
}

.accent-marker {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  z-index: 0;
  padding: 0 0.1em;
}
.accent-marker::before {
  content: "";
  position: absolute;
  inset: 15% -0.12em 8% -0.12em;
  border-radius: 10px;
  z-index: -1;
  transform: rotate(-1.5deg);
}
.accent-marker--yellow::before { background: var(--yellow); }
.accent-marker--teal::before { background: var(--teal); }
.accent-marker--coral::before { background: var(--coral); opacity: 0.9; }
.accent-marker--purple::before { background: var(--purple); opacity: 0.9; }
.accent-marker--yellow-on-dark::before { background: var(--yellow); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 0.95em 1.8em;
  border-radius: var(--r-pill);
  transition: transform 0.18s cubic-bezier(.2,.9,.3,1.2), box-shadow 0.18s, background 0.18s;
  line-height: 1;
  border: 2px solid var(--ink);
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--coral-dark);
}
.btn--primary:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn--compact {
  padding: 0.7em 1.4em;
  font-size: var(--text-sm);
}
.btn--block {
  width: 100%;
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled {
  border-color: rgba(26, 26, 26, 0.1);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) clamp(1rem, 4vw, 2rem);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--display);
}
.logo__mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo__sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--body);
}

.nav {
  display: flex;
  gap: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
}
.nav a {
  color: var(--ink-2);
  padding: 0.4em 0;
  position: relative;
  transition: color 0.18s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1.2);
}
.nav a:hover { color: var(--coral-dark); }
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu[hidden] { display: none !important; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) clamp(1rem, 4vw, 2rem) var(--space-8);
  background: var(--surface);
  border-bottom: 1.5px solid var(--ink);
  font-size: var(--text-lg);
  font-weight: 600;
}
.mobile-menu a {
  color: var(--ink);
  padding: var(--space-2) 0;
}
.mobile-menu .btn {
  align-self: flex-start;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 {
  width: 480px;
  height: 480px;
  background: var(--yellow);
  top: -180px;
  left: -120px;
}
.hero__blob--2 {
  width: 420px;
  height: 420px;
  background: var(--teal);
  top: 50%;
  right: -120px;
  opacity: 0.4;
}
.hero__blob--3 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  bottom: -120px;
  left: 40%;
  opacity: 0.3;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-6);
}
.hero__lede {
  font-size: var(--text-lg);
  color: var(--ink-2);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}
.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.hero__chips {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-2);
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chip {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.chip--teal { background: var(--teal); }
.chip--coral { background: var(--coral); }
.chip--yellow { background: var(--yellow); }
.chip--purple { background: var(--purple); }

.hero__media { position: relative; }
.hero__image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
  transform: rotate(1.5deg);
}
.hero__image img {
  border-radius: var(--r-xl);
  border: 3px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.hero__sticker {
  position: absolute;
  width: 90px;
  height: 90px;
  animation: float 4s ease-in-out infinite;
}
.hero__sticker--1 {
  top: -35px;
  left: -30px;
  animation-delay: 0s;
}
.hero__sticker--2 {
  bottom: -30px;
  right: -25px;
  width: 80px;
  height: 80px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: var(--space-4) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.marquee__track {
  display: flex;
  gap: var(--space-12);
  animation: scroll 28s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--yellow);
}
.marquee__track span { flex-shrink: 0; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ ABOUT ============ */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.about__text p { font-size: var(--text-lg); color: var(--ink-2); }
.about__text .signature {
  font-family: var(--display);
  font-size: var(--text-xl);
  color: var(--coral-dark);
  border-left: 4px solid var(--yellow);
  padding-left: var(--space-4);
  margin-top: var(--space-8);
}
.about__image {
  position: relative;
  transform: rotate(-2deg);
}
.about__image img {
  border-radius: var(--r-lg);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--teal);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.principles { margin-top: var(--space-16); }
.principles__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  text-align: center;
  font-family: var(--display);
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.principle {
  background: var(--surface);
  padding: var(--space-8);
  border-radius: var(--r-lg);
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1.2), box-shadow 0.25s;
  position: relative;
}
.principle:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.principle h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.principle p { font-size: var(--text-sm); color: var(--ink-soft); margin: 0; }
.principle__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border: 2px solid var(--ink);
}
.principle__icon svg { width: 32px; height: 32px; }
.principle--coral .principle__icon { background: var(--coral); color: #fff; }
.principle--teal .principle__icon { background: var(--teal); color: #fff; }
.principle--yellow .principle__icon { background: var(--yellow); color: var(--ink); }
.principle--purple .principle__icon { background: var(--purple); color: #fff; }

/* ============ SERVICES ============ */
.services {
  background: var(--surface-2);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
.service-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--ink);
}
.service-card:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}
.service-card:nth-child(even) .service-card__image {
  order: 2;
}
.service-card__image {
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.service-card__body {
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-card__tag {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4em 0.9em;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.service-card--home .service-card__tag { background: var(--teal); color: #fff; }
.service-card--center .service-card__tag { background: var(--coral); color: #fff; }
.service-card--school .service-card__tag { background: var(--purple); color: #fff; }
.service-card h3 {
  font-size: var(--text-2xl);
  font-family: var(--display);
  margin: 0;
}
.service-card p {
  color: var(--ink-soft);
  margin: 0;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: grid;
  gap: var(--space-2);
}
.service-card__list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--text-sm);
  color: var(--ink-2);
  line-height: 1.5;
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
}
.service-card--home .service-card__list li::before { background: var(--teal); }
.service-card--center .service-card__list li::before { background: var(--coral); }
.service-card--school .service-card__list li::before { background: var(--purple); }

.whatever-banner {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
}
.whatever-banner__content {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.whatever-banner svg {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  animation: heart-beat 2.5s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08) rotate(-3deg); }
}
.whatever-banner p {
  font-family: var(--display);
  font-size: var(--text-xl);
  color: #fff;
  margin: 0;
  line-height: 1.35;
}
.whatever-banner strong {
  color: var(--yellow);
  font-weight: 700;
}

/* ============ PROCESS ============ */
.process { background: var(--bg); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.step {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-8);
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.step--1 { background: linear-gradient(165deg, #fff 60%, var(--mint) 100%); }
.step--2 { background: linear-gradient(165deg, #fff 60%, var(--peach) 100%); }
.step--3 { background: linear-gradient(165deg, #fff 60%, var(--lavender) 100%); }
.step--4 { background: linear-gradient(165deg, #fff 60%, var(--sky) 100%); }

.step__num {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
.step h3 {
  font-size: var(--text-lg);
  font-family: var(--display);
  margin-bottom: var(--space-2);
}
.step p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============ STATS ============ */
.stats {
  background: var(--surface-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}
.stats__item {
  padding: var(--space-10) var(--space-8);
  border-radius: var(--r-xl);
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.2);
}
.stats__item:hover { transform: rotate(-1deg) translateY(-4px); }
.stats__item--coral { background: var(--coral); color: #fff; }
.stats__item--teal { background: var(--teal); color: #fff; }
.stats__item--yellow { background: var(--yellow); color: var(--ink); }

.stats__num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
.stats__item p {
  margin: 0;
  font-size: var(--text-base);
  color: inherit;
  opacity: 0.95;
  line-height: 1.5;
}
.stats__item--yellow p { opacity: 0.85; }

/* ============ TERRITORY (interactive) ============ */
.territory {
  background: linear-gradient(180deg, #FFF5E4 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.territory__interactive {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.territory__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  transition: grid-template-columns 0.5s cubic-bezier(.22,.9,.3,1);
}
/* When a state is active, split into map + detail side-by-side */
.territory__interactive[data-active-state="il"] .territory__stage,
.territory__interactive[data-active-state="in"] .territory__stage,
.territory__interactive[data-active-state="sc"] .territory__stage,
.territory__interactive[data-active-state="ga"] .territory__stage {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.territory__map {
  position: relative;
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #FFF8EE;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
  max-width: 760px;
  width: 100%;
  justify-self: center;
  transition: transform 0.4s ease, max-width 0.5s cubic-bezier(.22,.9,.3,1);
}
.territory__interactive[data-active-state="il"] .territory__map,
.territory__interactive[data-active-state="in"] .territory__map,
.territory__interactive[data-active-state="sc"] .territory__map,
.territory__interactive[data-active-state="ga"] .territory__map {
  max-width: 100%;
  transform: rotate(0deg);
}
.territory__map img {
  display: block;
  width: 100%;
  height: auto;
}
.territory__pin {
  position: absolute;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 0.35em 0.85em;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.territory__pin--il { top: 30%; left: 23%; background: var(--coral); color: #fff; }
.territory__pin--in { top: 32%; left: 43%; background: var(--yellow); color: var(--ink); }
.territory__pin--sc { top: 64%; left: 58%; background: var(--teal); color: var(--ink); }
.territory__pin--ga { top: 73%; left: 51%; background: var(--purple); color: #fff; }

/* When a state is active, highlight its pin */
.territory__interactive[data-active-state="il"] .territory__pin--il,
.territory__interactive[data-active-state="in"] .territory__pin--in,
.territory__interactive[data-active-state="sc"] .territory__pin--sc,
.territory__interactive[data-active-state="ga"] .territory__pin--ga {
  transform: scale(1.15);
  box-shadow: 5px 5px 0 var(--ink);
  z-index: 3;
}

/* Detail panel */
.territory__detail {
  position: relative;
  min-height: 360px;
  display: none;
}
.territory__interactive[data-active-state="il"] .territory__detail,
.territory__interactive[data-active-state="in"] .territory__detail,
.territory__interactive[data-active-state="sc"] .territory__detail,
.territory__interactive[data-active-state="ga"] .territory__detail {
  display: block;
}
.state-detail {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: 8px 8px 0 var(--ink);
  display: none;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
  animation: detailSlideIn 0.4s cubic-bezier(.22,.9,.3,1);
}
.state-detail::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
}
.state-detail--coral::before  { background: var(--coral); }
.state-detail--yellow::before { background: var(--yellow); }
.state-detail--teal::before   { background: var(--teal); }
.state-detail--purple::before { background: var(--purple); }

.territory__interactive[data-active-state="il"] .state-detail[data-state="il"],
.territory__interactive[data-active-state="in"] .state-detail[data-state="in"],
.territory__interactive[data-active-state="sc"] .state-detail[data-state="sc"],
.territory__interactive[data-active-state="ga"] .state-detail[data-state="ga"] {
  display: flex;
}
@keyframes detailSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.state-detail__head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-2);
}
.state-detail__abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  flex: 0 0 auto;
  box-shadow: 3px 3px 0 var(--ink);
}
.state-detail--coral  .state-detail__abbr { background: var(--coral); color: #fff; }
.state-detail--yellow .state-detail__abbr { background: var(--yellow); color: var(--ink); }
.state-detail--teal   .state-detail__abbr { background: var(--teal); color: var(--ink); }
.state-detail--purple .state-detail__abbr { background: var(--purple); color: #fff; }
.state-detail h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.05;
}
.state-detail__metro {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--ink-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.state-detail__lede {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.state-detail__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.state-detail__tags li {
  padding: 0.5em 0.95em;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface-2);
  box-shadow: 2px 2px 0 var(--ink);
}
.state-detail--coral  .state-detail__tags li { background: rgba(255,107,107,0.14); }
.state-detail--yellow .state-detail__tags li { background: rgba(255,217,61,0.22); }
.state-detail--teal   .state-detail__tags li { background: rgba(78,205,196,0.18); }
.state-detail--purple .state-detail__tags li { background: rgba(167,139,250,0.18); }

.state-detail__link {
  margin-top: var(--space-2);
  align-self: flex-start;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75em 1.25em;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--surface);
  transition: transform 0.2s, box-shadow 0.2s;
}
.state-detail__link:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.state-detail--coral  .state-detail__link:hover { background: var(--coral); color: #fff; }
.state-detail--yellow .state-detail__link:hover { background: var(--yellow); }
.state-detail--teal   .state-detail__link:hover { background: var(--teal); }
.state-detail--purple .state-detail__link:hover { background: var(--purple); color: #fff; }

/* Empty state (default before hover) */
.state-detail--empty {
  display: none;
}
.territory__interactive[data-active-state=""] .state-detail--empty { display: none; }
.state-detail__empty-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 2rem;
}
.state-detail__empty-inner svg { width: 48px; height: 48px; }
.state-detail__empty-title { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.state-detail__empty-sub { margin: 0; font-size: 0.9rem; color: var(--ink-2); }

/* Chip triggers */
.territory__chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.state-chip {
  display: flex;
  align-items: center;
  gap: 0.65em;
  padding: 0.9em 1.1em;
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
}
.state-chip:hover,
.state-chip:focus-visible,
.state-chip.is-active {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  outline: none;
}
.state-chip--coral:hover,  .state-chip--coral.is-active  { background: var(--coral); color: #fff; }
.state-chip--yellow:hover, .state-chip--yellow.is-active { background: var(--yellow); }
.state-chip--teal:hover,   .state-chip--teal.is-active   { background: var(--teal); }
.state-chip--purple:hover, .state-chip--purple.is-active { background: var(--purple); color: #fff; }
.state-chip__abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--surface);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
  flex: 0 0 auto;
}
.state-chip--coral  .state-chip__abbr { background: var(--coral); color: #fff; }
.state-chip--yellow .state-chip__abbr { background: var(--yellow); color: var(--ink); }
.state-chip--teal   .state-chip__abbr { background: var(--teal); color: var(--ink); }
.state-chip--purple .state-chip__abbr { background: var(--purple); color: #fff; }
.state-chip__name { letter-spacing: -0.005em; }

/* ============ INSURANCE ============ */
.insurance { background: var(--bg); }
.insurance__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.insurance__states {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.insurance-state {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 6px 6px 0 var(--ink);
  scroll-margin-top: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.insurance-state::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
}
.insurance-state--coral::before  { background: var(--coral); }
.insurance-state--yellow::before { background: var(--yellow); }
.insurance-state--teal::before   { background: var(--teal); }
.insurance-state--purple::before { background: var(--purple); }
.insurance-state:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.insurance-state__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
}
.insurance-state__head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
}
.insurance-state__abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.insurance-state--coral  .insurance-state__abbr { background: var(--coral); color: #fff; }
.insurance-state--yellow .insurance-state__abbr { background: var(--yellow); color: var(--ink); }
.insurance-state--teal   .insurance-state__abbr { background: var(--teal); color: var(--ink); }
.insurance-state--purple .insurance-state__abbr { background: var(--purple); color: #fff; }
/* Kicker styled as a chip/box like the list items */
/* Medicaid kicker — styled identically to the list items below */
.insurance-state__kicker {
  display: block;
  padding: 0.8em 1em;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(26, 26, 26, 0.08);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.insurance-state--coral  .insurance-state__kicker { background: rgba(255,107,107,0.10); border-color: rgba(255,107,107,0.3); }
.insurance-state--yellow .insurance-state__kicker { background: rgba(255,217,61,0.18); border-color: rgba(255,180,0,0.35); }
.insurance-state--teal   .insurance-state__kicker { background: rgba(78,205,196,0.14); border-color: rgba(78,205,196,0.38); }
.insurance-state--purple .insurance-state__kicker { background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.38); }
.insurance-state--coral  .insurance-state__kicker:hover { background: var(--coral); color: #fff; transform: translateX(4px); border-color: var(--ink); }
.insurance-state--yellow .insurance-state__kicker:hover { background: var(--yellow); color: var(--ink); transform: translateX(4px); border-color: var(--ink); }
.insurance-state--teal   .insurance-state__kicker:hover { background: var(--teal); color: var(--ink); transform: translateX(4px); border-color: var(--ink); }
.insurance-state--purple .insurance-state__kicker:hover { background: var(--purple); color: #fff; transform: translateX(4px); border-color: var(--ink); }
/* Colorful list items per state */
.insurance-state--coral  .insurance__list li { background: rgba(255,107,107,0.10); border-color: rgba(255,107,107,0.3); }
.insurance-state--yellow .insurance__list li { background: rgba(255,217,61,0.18); border-color: rgba(255,180,0,0.35); }
.insurance-state--teal   .insurance__list li { background: rgba(78,205,196,0.14); border-color: rgba(78,205,196,0.38); }
.insurance-state--purple .insurance__list li { background: rgba(167,139,250,0.15); border-color: rgba(167,139,250,0.38); }
.insurance-state .insurance__list li {
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  padding: 0.8em 1em;
  font-weight: 600;
  color: var(--ink);
}
.insurance-state--coral  .insurance__list li:hover { background: var(--coral); color: #fff; transform: translateX(4px); border-color: var(--ink); }
.insurance-state--yellow .insurance__list li:hover { background: var(--yellow); color: var(--ink); transform: translateX(4px); border-color: var(--ink); }
.insurance-state--teal   .insurance__list li:hover { background: var(--teal); color: var(--ink); transform: translateX(4px); border-color: var(--ink); }
.insurance-state--purple .insurance__list li:hover { background: var(--purple); color: #fff; transform: translateX(4px); border-color: var(--ink); }

/* Commercial Plans redesigned */
.insurance__commercial {
  position: relative;
  background: linear-gradient(135deg, #FFF8EE 0%, #FFF0DA 100%);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}
.insurance__commercial::after {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.insurance__commercial-head {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}
.insurance__commercial-copy { flex: 1; }
.insurance__commercial-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-dark);
  font-weight: 800;
}
.insurance__commercial-head h3 {
  margin: 4px 0 6px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.1;
}
.insurance__commercial-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
}
.insurance__commercial-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}
.commercial-chip {
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  padding: 1em 1.15em;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  position: relative;
}
.commercial-chip::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}
.commercial-chip--coral::before  { background: var(--coral); }
.commercial-chip--yellow::before { background: var(--yellow); }
.commercial-chip--teal::before   { background: var(--teal); }
.commercial-chip--purple::before { background: var(--purple); }
.commercial-chip span {
  display: block;
  padding-left: 20px;
}
.commercial-chip:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.commercial-chip--coral:hover  { background: var(--coral); color: #fff; }
.commercial-chip--yellow:hover { background: var(--yellow); }
.commercial-chip--teal:hover   { background: var(--teal); }
.commercial-chip--purple:hover { background: var(--purple); color: #fff; }
.commercial-chip:hover::before { background: var(--surface); }
.insurance__col {
  background: var(--surface);
  border: 2.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 6px 6px 0 var(--ink);
}
.insurance__subhead {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6);
}
.insurance__icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
}
.insurance__icon--teal { background: var(--teal); }
.insurance__icon--coral { background: var(--coral); }
.insurance__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
}
.insurance__list li {
  padding: 0.7em 1em;
  background: var(--surface-2);
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--ink-2);
  border: 1.5px solid rgba(26, 26, 26, 0.08);
  transition: background 0.2s, border-color 0.2s;
}
.insurance__list li:hover {
  background: var(--yellow);
  border-color: var(--ink);
}
.insurance__note {
  margin-top: var(--space-8);
  text-align: center;
  font-size: var(--text-lg);
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-2);
}
.insurance__note a {
  color: var(--coral-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ============ QUOTE ============ */
.quote {
  background: var(--bg);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.quote blockquote {
  margin: 0;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.quote blockquote p {
  font-family: var(--display);
  font-style: italic;
  font-size: var(--text-2xl);
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: var(--space-4);
  position: relative;
}
.quote blockquote p::before,
.quote blockquote p::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 var(--space-3);
  vertical-align: middle;
}
.quote blockquote footer {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ink-muted);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 65%);
  opacity: 0.25;
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.contact::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 65%);
  opacity: 0.2;
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}
.contact__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  z-index: 1;
}
.contact__copy .section-label { color: var(--yellow); }
.contact__copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  max-width: 48ch;
}
.contact__details {
  list-style: none;
  padding: 0;
  margin: var(--space-8) 0;
  display: grid;
  gap: var(--space-4);
}
.contact__details li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact__details strong {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-xs);
  color: var(--yellow);
  font-weight: 700;
}
.contact__details a,
.contact__details span {
  color: #fff;
  font-size: var(--text-base);
  font-weight: 500;
}
.contact__details a:hover { color: var(--yellow); }

.contact__socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.social svg { width: 22px; height: 22px; }
.social:hover {
  transform: translateY(-3px);
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

.contact__form {
  background: var(--surface);
  color: var(--ink);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--r-xl);
  border: 2.5px solid var(--yellow);
  box-shadow: 10px 10px 0 var(--coral);
}
.contact__form h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}
.contact__form-sub {
  color: var(--ink-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}
.field, .field-row {
  margin-bottom: var(--space-4);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.field-row .field {
  margin-bottom: 0;
}
.field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--space-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 2px solid rgba(26, 26, 26, 0.15);
  border-radius: var(--r-md);
  background: var(--surface);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__consent {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: var(--space-4);
  line-height: 1.5;
}
.contact__consent a {
  color: var(--coral-dark);
  text-decoration: underline;
}
.form-success {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--mint);
  border: 2px solid var(--teal-dark);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--teal-dark);
  font-weight: 600;
}
.form-success[hidden] { display: none; }
.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ============ FOOTER ============ */
.footer {
  background: #fff8ee;
  border-top: 2px solid var(--ink);
  padding-top: var(--space-16);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-12);
}
.footer__brand p {
  margin-top: var(--space-4);
  color: var(--ink-muted);
  font-size: var(--text-sm);
  max-width: 28ch;
}
.logo--footer { align-items: flex-start; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.footer__cols h4 {
  font-family: var(--body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: var(--space-4);
  font-weight: 700;
}
.footer__cols a,
.footer__cols span {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  padding: 4px 0;
  transition: color 0.18s;
}
.footer__cols a:hover { color: var(--coral-dark); }

.footer__bottom {
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  padding: var(--space-6) 0;
  font-size: var(--text-xs);
  color: var(--ink-muted);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer__bottom a {
  color: var(--coral-dark);
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav { display: none; }
  .header > .container > .btn { display: none; }
  .nav-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { transform: rotate(1deg); margin-top: var(--space-6); }
  .hero__image img { box-shadow: 8px 8px 0 var(--ink); }

  .about__grid { grid-template-columns: 1fr; }
  .about__image { max-width: 420px; margin: 0 auto; }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-card:nth-child(even) .service-card__image { order: 0; }
  .service-card__image img { min-height: 260px; max-height: 340px; }

  .insurance__split { grid-template-columns: 1fr; }
  .insurance__states { grid-template-columns: 1fr 1fr; }
  .insurance__commercial-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance__commercial-head { grid-template-columns: 1fr; text-align: left; }

  /* Territory — collapse the expanded stage to single column on tablet */
  .territory__interactive[data-active-state="il"] .territory__stage,
  .territory__interactive[data-active-state="in"] .territory__stage,
  .territory__interactive[data-active-state="sc"] .territory__stage,
  .territory__interactive[data-active-state="ga"] .territory__stage {
    grid-template-columns: 1fr;
  }
  .territory__map { max-width: 560px; margin: 0 auto; }
  .territory__chips { grid-template-columns: repeat(2, 1fr); }

  .contact__inner { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }

  .whatever-banner__content { flex-direction: column; text-align: center; gap: var(--space-4); }
  .whatever-banner p { font-size: var(--text-lg); }
}

@media (max-width: 560px) {
  .hero__chips { gap: var(--space-4); font-size: var(--text-xs); }
  .hero__sticker--1 { width: 64px; height: 64px; top: -20px; left: -14px; }
  .hero__sticker--2 { width: 60px; height: 60px; bottom: -18px; right: -10px; }
  .hero__cta { gap: var(--space-3); }
  .btn { padding: 0.85em 1.4em; font-size: var(--text-sm); }

  .field-row { grid-template-columns: 1fr; }

  .insurance__states { grid-template-columns: 1fr; }
  .insurance__commercial-grid { grid-template-columns: 1fr; }
  .territory__chips { grid-template-columns: 1fr 1fr; }
  .territory__pin { font-size: 0.68rem; padding: 0.3em 0.7em; }
  .state-chip { padding: 0.7em 0.9em; }
  .state-detail { padding: 1.25rem; }

  .footer__cols { grid-template-columns: 1fr; gap: var(--space-6); }

  .footer__bottom .container { flex-direction: column; align-items: flex-start; }

  .contact__details li { grid-template-columns: 1fr; gap: var(--space-1); }

  .quote blockquote p::before,
  .quote blockquote p::after {
    display: block;
    margin: var(--space-3) auto;
    width: 60px;
  }
}

/* ============ UTILITIES ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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