:root {
  --ad-navy: #0A1A3A;
  --ad-green: #A4CB6A;
  --ad-teal: #64C6C4;
  --ad-white: #FFFFFF;
  --ad-light: #F5F7FA;
  --ad-medium: #6B7280;
  --ad-dark: #374151;
  --ad-line: rgba(10, 26, 58, 0.12);
  --ad-glow: rgba(164, 203, 106, 0.22);
  --foreground: var(--ad-dark);
  --font-display: "League Spartan", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ad-white);
  color: var(--foreground);
  font-family: var(--font-body);
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(164, 203, 106, 0.35); color: var(--ad-navy); }

@keyframes ad-drift {
  0% { transform: scale(1.05) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
  100% { transform: scale(1.05) translate3d(0, 0, 0); }
}
.ad-kenburns { animation: ad-drift 22s ease-in-out infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fade-up 0.7s ease-out both; }
.reveal--delay-1 { animation-delay: 0.12s; }
.reveal--delay-2 { animation-delay: 0.22s; }
.reveal--delay-3 { animation-delay: 0.34s; }
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid var(--ad-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 4.25rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-header__inner { padding: 0 2rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  color: var(--ad-navy);
}
.brand--footer { margin-bottom: 1rem; color: #fff; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
}
.site-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--ad-white);
  border-bottom: 1px solid var(--ad-line);
}
.site-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ad-dark);
  transition: color 0.2s;
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--ad-navy); }
.site-nav__link.is-active {
  box-shadow: inset 0 -2px 0 var(--ad-green);
}
.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--ad-line);
  background: transparent;
  color: var(--ad-navy);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-nav.is-open {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .nav-toggle { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--primary {
  background: var(--ad-green);
  color: var(--ad-navy);
  box-shadow: 0 4px 18px rgba(164, 203, 106, 0.35);
}
.btn--primary:hover {
  background: #b5d67f;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(164, 203, 106, 0.4);
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ad-teal);
  outline-offset: 2px;
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ad-green);
  color: var(--ad-green);
}
.section .btn--ghost,
.cta-banner .btn--ghost {
  border-color: rgba(10, 26, 58, 0.25);
  color: var(--ad-navy);
}
.section .btn--ghost:hover,
.cta-banner .btn--ghost:hover {
  border-color: var(--ad-navy);
  color: var(--ad-navy);
}
.btn--nav { padding: 0.5rem 1rem; }
.btn--small {
  border: 1px solid transparent;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
}
.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--ad-navy);
  font-size: 0.875rem;
  font-weight: 600;
}
.text-link:hover { color: #16305f; text-decoration: underline; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  background: var(--ad-navy);
}
.hero--compact { min-height: 70vh; }
.hero--home { min-height: auto; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__shade { position: absolute; inset: 0; }
.hero__shade--side {
  background: linear-gradient(90deg, rgba(10, 26, 58, 0.94) 0%, rgba(10, 26, 58, 0.78) 48%, rgba(10, 26, 58, 0.42) 100%);
}
.hero__shade--bottom {
  background: linear-gradient(180deg, rgba(10, 26, 58, 0.45) 0%, transparent 40%, rgba(10, 26, 58, 0.92) 100%);
}
.hero__content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
}
.hero__content--rich {
  justify-content: center;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .hero__content { padding: 10rem 2rem 6rem; }
  .hero__content--rich { padding-top: 8.5rem; padding-bottom: 5.5rem; }
}
.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__eyebrow {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ad-green);
}
.hero__headline {
  margin: 1rem 0 0;
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__support {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.55;
}
.hero__narrative {
  margin-top: 1.5rem;
  max-width: 42rem;
  display: grid;
  gap: 0.9rem;
}
.hero__narrative p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}
.hero__narrative-emphasis {
  color: #fff !important;
  font-weight: 700;
}
.hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 5rem 1.25rem;
  background: var(--ad-white);
}
.section--alt { background: var(--ad-light); }
.section--tight { padding-top: 2.5rem; padding-bottom: 1rem; }
@media (min-width: 768px) {
  .section { padding: 6.5rem 2rem; }
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ad-teal);
}
.section__title {
  margin: 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ad-navy);
}
.section__lead {
  margin: 1rem 0 0;
  max-width: 48rem;
  color: var(--ad-medium);
  font-size: 1.125rem;
  line-height: 1.65;
}
.section__lead--emphasis {
  color: var(--ad-navy);
  font-weight: 600;
}
.section__subheading {
  margin: 3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ad-navy);
}

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.stack-item {
  border-top: 1px solid var(--ad-line);
  padding-top: 1.5rem;
}
.stack-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ad-navy);
}
.stack-item p {
  margin: 0.75rem 0 0;
  color: var(--ad-medium);
}

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.split__media--plain {
  aspect-ratio: auto;
  border-radius: 0.75rem;
  overflow: hidden;
}
.split__media--plain img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.decision-chips {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
}
@media (min-width: 768px) {
  .decision-chips { grid-template-columns: 1fr 1fr; }
}
.decision-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: var(--ad-white);
  color: var(--ad-navy);
  font-weight: 600;
  line-height: 1.4;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.decision-chip:hover {
  border-color: var(--ad-teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 26, 58, 0.08);
}
.decision-chip--static {
  cursor: default;
  background: var(--ad-light);
}
.decision-chip__icon {
  flex: none;
  font-size: 1.25rem;
  line-height: 1.2;
}

.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.choice-chips span {
  border: 1px solid rgba(100, 198, 196, 0.55);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  color: var(--ad-navy);
  background: rgba(100, 198, 196, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
}

.decision-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: var(--ad-white);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}
.section--alt .decision-card { background: var(--ad-white); }
.decision-card:hover {
  border-color: rgba(100, 198, 196, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 26, 58, 0.08);
}
.decision-card--disabled:hover {
  transform: none;
  box-shadow: none;
}
.decision-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
}
.decision-card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ad-navy);
}
.decision-card__question {
  margin: 0.75rem 0 0;
  color: var(--ad-navy);
  font-weight: 600;
  font-size: 1.05rem;
}
.decision-card p:not(.decision-card__question) {
  margin: 0.75rem 0 0;
  color: var(--ad-medium);
  flex: 1;
}
.decision-card .text-link { margin-top: 1.5rem; }
.decision-card--disabled { opacity: 0.7; }
.decision-card__soon {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ad-medium);
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
}
.faq-item {
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: var(--ad-white);
  padding: 0.25rem 1.15rem;
}
.section--alt .faq-item,
.faq-page .faq-item { background: var(--ad-white); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ad-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ad-teal);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item__body {
  padding: 0 0 1.15rem;
  color: var(--ad-medium);
  font-size: 1.05rem;
  line-height: 1.65;
}
.faq-item__body p { margin: 0 0 0.85rem; }
.faq-item__body ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}
.faq-item__body li + li { margin-top: 0.35rem; }

.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--ad-line);
  background: var(--ad-navy);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, var(--ad-glow), transparent 60%),
    linear-gradient(90deg, rgba(10, 26, 58, 0.94) 0%, rgba(10, 26, 58, 0.86) 55%, rgba(10, 26, 58, 0.72) 100%);
}
.cta-banner--home::before { background-image: url("../media/hero-home.png"); }
.cta-banner--real-estate::before { background-image: url("../media/hero-real-estate.png"); }
.cta-banner--maintenance::before { background-image: url("../media/hero-maintenance.png"); }
.cta-banner--contact::before { background-image: url("../media/hero-contact.png"); }
.cta-banner .section__title,
.cta-banner .section__lead--emphasis { color: #fff; }
.cta-banner .section__lead { color: rgba(255, 255, 255, 0.82); }
.cta-banner .hero__ctas { margin-top: 2.5rem; }
.cta-banner .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cta-banner .btn--ghost:hover {
  border-color: var(--ad-green);
  color: var(--ad-green);
}

.contact-form {
  max-width: 42rem;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--ad-dark);
  font-size: 0.875rem;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  color: var(--ad-navy);
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--ad-teal);
  outline-offset: 0;
}
.contact-status {
  color: var(--ad-navy);
  font-size: 0.875rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ad-navy);
  color: #fff;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 2fr;
    padding: 3.5rem 2rem;
  }
}
.site-footer__mission {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.site-footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 900px) {
  .site-footer__links { grid-template-columns: repeat(5, 1fr); }
}
.site-footer__links a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.site-footer__links a:hover { color: var(--ad-green); }
.site-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.site-footer__plain {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__email {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ad-green);
}
.site-footer__email:hover { color: #b5d67f; }
.site-footer__social {
  margin-top: 1rem;
}
.site-footer__social a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
}
.site-footer__social a:hover { color: var(--ad-green); }
.site-footer__cta {
  margin-top: 1.5rem;
}
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .site-footer__bar { padding: 1.25rem 2rem; }
}

.jake-launcher {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(100, 198, 196, 0.45);
  background: var(--ad-white);
  color: var(--ad-navy);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(10, 26, 58, 0.18);
}
.jake-launcher:hover {
  border-color: var(--ad-teal);
}
.jake-launcher__badge {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ad-green);
  color: var(--ad-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
@media (min-width: 768px) {
  .jake-launcher { right: 2rem; bottom: 2rem; }
}

.jake-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 26, 58, 0.4);
  backdrop-filter: blur(2px);
}
.jake-panel {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 100%;
  height: min(720px, 100svh);
  display: flex;
  flex-direction: column;
  background: var(--ad-white);
  border-left: 1px solid var(--ad-line);
  border-top: 1px solid var(--ad-line);
  box-shadow: 0 20px 60px rgba(10, 26, 58, 0.2);
  animation: fade-up 0.28s ease-out;
}
.jake-panel[hidden],
.jake-backdrop[hidden] {
  display: none !important;
}
@media (min-width: 640px) {
  .jake-panel {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 420px;
    height: min(640px, 85svh);
    border-radius: 1rem;
    border: 1px solid var(--ad-line);
  }
}
.jake-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--ad-line);
}
.jake-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ad-navy);
}
.jake-panel__subtitle {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--ad-medium);
}
.jake-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.jake-msg { display: flex; }
.jake-msg--user { justify-content: flex-end; }
.jake-msg--jake { justify-content: flex-start; }
.jake-bubble {
  max-width: 90%;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.jake-msg--user .jake-bubble {
  background: var(--ad-green);
  color: var(--ad-navy);
}
.jake-msg--jake .jake-bubble {
  background: var(--ad-light);
  border: 1px solid var(--ad-line);
  color: var(--ad-dark);
}
.jake-followups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.jake-followups button {
  border: 1px solid var(--ad-line);
  background: transparent;
  color: var(--ad-medium);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
}
.jake-followups button:hover {
  border-color: var(--ad-teal);
  color: var(--ad-navy);
}
.jake-typing {
  font-size: 0.75rem;
  color: var(--ad-medium);
}
.jake-panel__form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--ad-line);
}
.jake-panel__form input {
  flex: 1;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  color: var(--ad-navy);
  border-radius: 0.375rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
}
.jake-panel__form input:focus {
  outline: 2px solid var(--ad-teal);
}
.jake-panel__form .btn:disabled { opacity: 0.5; cursor: not-allowed; }

.section--story {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.story-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 1px solid var(--ad-line);
  border-radius: 0.75rem;
  background: var(--ad-white);
  color: var(--ad-dark);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.story-toggle:hover {
  border-color: rgba(100, 198, 196, 0.7);
}
.story-toggle[aria-expanded="true"] {
  border-color: rgba(100, 198, 196, 0.8);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.story-toggle__label {
  flex: 1;
  min-width: 12rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ad-navy);
}
.story-toggle__hint {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ad-teal);
}
.story-toggle__chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--ad-teal);
  border-bottom: 2px solid var(--ad-teal);
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.story-toggle[aria-expanded="true"] .story-toggle__chevron {
  transform: rotate(-135deg);
}
.story-panel {
  border: 1px solid rgba(100, 198, 196, 0.45);
  border-top: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  background: var(--ad-white);
  padding: 1.5rem 1.25rem 1.75rem;
}
.story-panel[hidden] { display: none !important; }
.story-panel .narrative { margin-top: 0; }

.narrative {
  margin-top: 1.5rem;
  max-width: 48rem;
  display: grid;
  gap: 1rem;
}
.narrative p {
  margin: 0;
  color: var(--ad-medium);
  font-size: 1.125rem;
  line-height: 1.65;
}
.narrative__emphasis,
.narrative p.narrative__emphasis {
  color: var(--ad-navy);
  font-weight: 600;
}

.policy { max-width: 48rem; }
.policy-block { margin-top: 3.5rem; }
.policy-block:first-child { margin-top: 0; }
.policy .section__subheading { margin-top: 2rem; }
.policy-list {
  margin: 1.25rem 0 0;
  padding-left: 1.35rem;
  max-width: 48rem;
  color: var(--ad-medium);
  font-size: 1.125rem;
  line-height: 1.65;
}
.policy-list li + li { margin-top: 0.75rem; }
.policy-list__label {
  font-weight: 700;
  color: var(--ad-navy);
  margin-right: 0.35rem;
}
.policy a {
  color: var(--ad-navy);
  text-decoration: underline;
}
