:root {
  --color-green-950: #062513;
  --color-green-900: #0a331b;
  --color-green-800: #0c4824;
  --color-green-700: #145632;
  --color-green-100: #eaf3ec;
  --color-cream: #fcf0d8;
  --color-cream-2: #fffaf0;
  --color-gold: #daa520;
  --color-gold-dark: #c9981d;
  --color-charcoal: #141311;
  --color-ink: #1d241f;
  --color-muted: #657069;
  --color-border: rgba(12, 72, 36, 0.16);
  --color-border-strong: rgba(12, 72, 36, 0.28);
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(6, 37, 19, 0.13);
  --shadow-panel: 0 34px 90px rgba(6, 37, 19, 0.2);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(88px, 11vw, 148px);
  --section-y-compact: clamp(56px, 8vw, 96px);
  --radius: 8px;
  --radius-sm: 6px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-cream-2);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  background: var(--color-green-800);
  color: var(--color-cream);
}

:focus-visible {
  outline: 3px solid rgba(218, 165, 32, 0.72);
  outline-offset: 4px;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  color: var(--color-green-950);
  padding: 12px 16px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  background: var(--color-green-950);
  border-bottom: 1px solid rgba(218, 165, 32, 0.36);
  color: rgba(252, 240, 216, 0.9);
  font-size: 0.86rem;
}

.utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  font-weight: 800;
  color: var(--color-cream);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(12, 72, 36, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 14px 34px rgba(6, 37, 19, 0.08);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  font-weight: 900;
  color: var(--color-green-950);
}

.brand__logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.brand__wordmark {
  display: grid;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(29, 36, 31, 0.74);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--color-green-800);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--color-green-900);
  color: var(--color-cream);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--radius-sm);
  padding: 0 24px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button--primary {
  background: var(--color-green-800);
  color: var(--color-cream);
  border: 1px solid rgba(6, 37, 19, 0.64);
  box-shadow: inset 0 -2px 0 rgba(6, 37, 19, 0.18);
}

.button--primary:hover {
  background: var(--color-green-950);
  border-color: var(--color-green-950);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-green-900);
  border: 1px solid var(--color-border-strong);
}

.button--secondary:hover {
  border-color: var(--color-green-800);
}

.button--cream {
  background: var(--color-cream);
  color: var(--color-green-950);
  border: 1px solid rgba(252, 240, 216, 0.72);
}

.button--gold {
  min-height: 46px;
  background: var(--color-gold);
  color: var(--color-green-950);
  border: 1px solid rgba(6, 37, 19, 0.28);
  box-shadow: inset 0 -2px 0 rgba(6, 37, 19, 0.14);
}

.button--gold:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.section-hero {
  min-height: calc(100svh - var(--header-h) - 42px);
  display: flex;
  align-items: center;
  padding: 58px 0 78px;
  background:
    radial-gradient(circle at 10% 0%, rgba(252, 240, 216, 0.85), transparent 30%),
    linear-gradient(90deg, rgba(218, 165, 32, 0.08), transparent 36%),
    linear-gradient(135deg, var(--color-cream-2) 0%, #f3f8f2 48%, #eaf3ec 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.88fr);
  gap: clamp(34px, 4vw, 52px);
  align-items: center;
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-green-800);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--color-cream);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-green-950);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h3 {
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: 4.6rem;
  line-height: 0.94;
}

.hero-title__line {
  white-space: nowrap;
}

.hero-title__accent {
  color: var(--color-green-800);
  font-style: italic;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(29, 36, 31, 0.78);
  font-size: 1.22rem;
  line-height: 1.65;
}

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

.hero__visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  justify-items: end;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 48px 20px 42px 80px;
  border: 1px solid rgba(12, 72, 36, 0.14);
  border-radius: var(--radius);
  background: rgba(12, 72, 36, 0.07);
  transform: rotate(-4deg);
}

.finance-story {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  min-height: 540px;
  margin-left: auto;
}

.finance-story__glow {
  position: absolute;
  inset: 72px 44px 42px 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 62% 40%, rgba(218, 165, 32, 0.2), transparent 36%),
    radial-gradient(circle at 36% 66%, rgba(12, 72, 36, 0.15), transparent 42%);
  filter: blur(12px);
}

.finance-card {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(12, 72, 36, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  color: rgba(29, 36, 31, 0.72);
  box-shadow: 0 28px 72px rgba(6, 37, 19, 0.12);
  animation:
    financeCardIn 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
    financeFloat 7s 640ms ease-in-out infinite;
}

.finance-card__label {
  margin: 0;
  color: rgba(12, 72, 36, 0.55);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finance-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.finance-card strong {
  display: block;
  color: var(--color-green-950);
  font-weight: 900;
}

.finance-card small {
  display: block;
  color: var(--color-green-800);
  font-size: 0.92rem;
  font-weight: 850;
}

.finance-card--overview {
  right: 0;
  bottom: 0;
  width: 430px;
  padding: 28px 30px 24px;
  animation-delay: 180ms, 820ms;
}

.finance-card--overview > strong {
  margin-top: 18px;
  font-size: 3.85rem;
  line-height: 0.92;
}

.finance-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: rgba(12, 72, 36, 0.08);
  color: var(--color-green-800);
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 900;
}

.finance-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green-800);
}

.finance-progress {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.finance-progress__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  color: rgba(29, 36, 31, 0.6);
  font-size: 0.9rem;
  font-weight: 750;
}

.finance-progress__item strong {
  font-size: 0.9rem;
  font-weight: 850;
}

.finance-progress__item i {
  position: relative;
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 72, 36, 0.09);
}

.finance-progress__item i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: var(--color-green-800);
  transform-origin: left;
  animation: financeBar 1.3s 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.finance-progress__item--soft i::after {
  background: rgba(12, 72, 36, 0.28);
}

.finance-progress__item--dark i::after {
  background: var(--color-green-950);
}

.finance-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
  border-top: 1px solid rgba(12, 72, 36, 0.1);
  padding-top: 18px;
}

.finance-process span {
  position: relative;
  color: rgba(29, 36, 31, 0.56);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.finance-process span::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--color-green-800);
  box-shadow: 0 0 0 5px rgba(12, 72, 36, 0.08);
}

.finance-card--refund {
  top: 0;
  right: 38px;
  width: 288px;
  padding: 24px 26px 26px;
  animation-delay: 320ms, 960ms;
}

.finance-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(12, 72, 36, 0.08);
  color: var(--color-green-800);
}

.finance-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.finance-card--refund strong,
.finance-card--savings strong {
  margin-top: 10px;
  font-size: 2.2rem;
  line-height: 1;
}

.finance-card--savings {
  left: 0;
  bottom: 72px;
  width: 302px;
  padding: 24px 26px 28px;
  animation-delay: 420ms, 1060ms;
}

.finance-tag {
  border-radius: 999px;
  background: rgba(218, 165, 32, 0.18);
  color: #76520a;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}

.finance-bars {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.85fr 1.1fr 1.05fr;
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-top: 20px;
}

.finance-bars span {
  border-radius: 5px 5px 2px 2px;
  background: rgba(12, 72, 36, 0.1);
  transform-origin: bottom;
  animation: financeBarLift 1s ease both;
}

.finance-bars span:nth-child(1) { height: 34%; animation-delay: 180ms; }
.finance-bars span:nth-child(2) { height: 48%; animation-delay: 260ms; }
.finance-bars span:nth-child(3) { height: 42%; animation-delay: 340ms; }
.finance-bars span:nth-child(4) { height: 62%; animation-delay: 420ms; }
.finance-bars span:nth-child(5) {
  height: 82%;
  background: var(--color-green-950);
  animation-delay: 500ms;
}

.finance-card--checklist {
  top: 56px;
  left: 12px;
  width: 258px;
  background: var(--color-green-950);
  color: rgba(252, 240, 216, 0.72);
  padding: 24px 26px 26px;
  box-shadow: 0 30px 76px rgba(6, 37, 19, 0.2);
  animation-delay: 0ms, 640ms;
}

.finance-card--checklist .finance-card__label {
  color: rgba(252, 240, 216, 0.52);
}

.finance-card__title {
  margin: 14px 0 16px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.2;
}

.finance-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.finance-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(252, 240, 216, 0.82);
  font-weight: 750;
}

.finance-checklist span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #179b6f;
}

.finance-checklist span::before {
  content: "";
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--color-cream);
  border-left: 2px solid var(--color-cream);
  transform: rotate(-45deg) translate(1px, -1px);
}

.finance-checklist .is-muted {
  color: rgba(252, 240, 216, 0.48);
}

.finance-checklist .is-muted span {
  border: 1px solid rgba(252, 240, 216, 0.18);
  background: transparent;
}

.finance-checklist .is-muted span::before {
  display: none;
}

@keyframes financeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes financeCardIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes financeBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes financeBarLift {
  from { transform: scaleY(0.2); opacity: 0.6; }
  to { transform: scaleY(1); opacity: 1; }
}

.trust-strip {
  background: #daa520;
  border-top: 1px solid rgba(6, 37, 19, 0.16);
  border-bottom: 1px solid rgba(6, 37, 19, 0.16);
  color: var(--color-green-950);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-left: 1px solid rgba(6, 37, 19, 0.16);
}

.trust-strip p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  border-right: 1px solid rgba(6, 37, 19, 0.16);
  padding: 28px clamp(22px, 3vw, 46px);
  color: var(--color-green-950);
  font-weight: 700;
  text-align: center;
}

.trust-strip svg {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 37, 19, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(6, 37, 19, 0.08);
  color: var(--color-green-950);
  fill: currentColor;
  padding: 5px;
}

.section {
  padding: var(--section-y) 0;
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.about-layout {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.95fr) minmax(250px, 0.45fr);
  align-items: center;
  gap: clamp(36px, 5vw, 74px);
}

.about-story {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.about-story__intro {
  max-width: 940px;
}

.about-story__intro .eyebrow {
  margin: 0 0 18px;
  color: var(--color-green-800);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-story__intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: 3.35rem;
  line-height: 1.02;
}

.about-story__intro > p {
  max-width: 680px;
  margin: 0;
  color: rgba(29, 36, 31, 0.7);
  font-size: 1.15rem;
}

.about-story__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.about-story__copy {
  display: grid;
  gap: 18px;
}

.about-story__copy > p {
  max-width: 780px;
  margin: 0;
  color: rgba(29, 36, 31, 0.76);
  font-size: 1.0rem;
  line-height: 1.75;
}

.about-points {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.about-points p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  margin: 0;
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
  color: var(--color-green-950);
  font-weight: 850;
}

.about-points span {
  color: var(--color-gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-kicker h2,
.section-heading h2,
.online-app h2,
.resources h2,
.contact-copy h2 {
  margin-bottom: 0;
  max-width: 980px;
  font-size: 3.05rem;
  line-height: 1.04;
}

#online-app-title {
  max-width: 700px;
}

#services-title {
  max-width: 1200px;
  font-size: 2.9rem;
}

#services-title + p {
  max-width: none;
}

@media (min-width: 881px) {
  #services-title + p {
    white-space: nowrap;
  }
}

#process-title,
#faq-title,
#contact-title,
#resources-title {
  max-width: 760px;
}

.text-stack {
  display: grid;
  gap: 24px;
  max-width: 690px;
  color: rgba(29, 36, 31, 0.76);
  font-size: 1.12rem;
}

.text-stack p {
  margin: 0;
}

.founder-card {
  margin: 0 auto;
  align-self: start;
  border: 1px solid rgba(218, 165, 32, 0.32);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--color-white), var(--color-cream-2));
  box-shadow: 0 22px 64px rgba(6, 37, 19, 0.1);
  overflow: hidden;
}

.founder-card__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-green-100);
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.founder-card figcaption {
  display: grid;
  gap: 8px;
  border-top: 4px solid var(--color-gold);
  padding: 18px;
}

.founder-card strong {
  color: var(--color-green-950);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.founder-card span {
  color: rgba(29, 36, 31, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(29, 36, 31, 0.68);
}

.section-heading--center p {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.service-card {
  min-height: 330px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.34);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--color-white);
  transform: translateY(-2px);
}

.service-card span,
.process-step span {
  display: inline-flex;
  border-bottom: 2px solid rgba(218, 165, 32, 0.55);
  padding-bottom: 6px;
  margin-bottom: 34px;
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.service-card__label {
  margin-bottom: 0;
  padding-bottom: 16px;
  color: var(--color-green-800);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card h3,
.process-step h3,
.resource-feature h3,
.form-heading h3 {
  margin-bottom: 16px;
  max-width: 20ch;
  font-size: 1.55rem;
  line-height: 1.12;
}

.booking-card h3 {
  max-width: 22ch;
}

.service-card p,
.process-step p {
  margin: 0;
  color: rgba(29, 36, 31, 0.68);
}

.section--booking {
  background:
    linear-gradient(135deg, rgba(218, 165, 32, 0.11), transparent 38%),
    linear-gradient(180deg, var(--color-green-950), #020704);
  color: rgba(252, 240, 216, 0.78);
}

.online-app {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}

.online-app__header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
}

.online-app h2 {
  max-width: 780px;
  color: var(--color-cream);
}

.online-app__header > p {
  margin: 0 0 10px;
  color: rgba(252, 240, 216, 0.72);
  font-size: 1.05rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.booking-grid__footer {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.booking-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(252, 240, 216, 0.12);
  border-radius: var(--radius);
  background: var(--color-cream-2);
  color: var(--color-ink);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.22);
}

.booking-card[hidden] {
  display: none;
}

.booking-card__visual {
  display: grid;
  place-items: end start;
  min-height: 174px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(252, 240, 216, 0.88), rgba(252, 240, 216, 0.2)),
    var(--color-green-800);
}

.booking-card__visual span {
  color: rgba(6, 37, 19, 0.24);
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 0.9;
}

.booking-card__visual--tax {
  background:
    linear-gradient(135deg, rgba(252, 240, 216, 0.86), rgba(252, 240, 216, 0.12)),
    linear-gradient(90deg, var(--color-green-800), var(--color-green-950));
}

.booking-card__visual--bookkeeping {
  background:
    linear-gradient(135deg, rgba(252, 240, 216, 0.82), rgba(252, 240, 216, 0.1)),
    linear-gradient(90deg, #17452a, #07160d);
}

.booking-card__visual--planning {
  background:
    linear-gradient(135deg, rgba(218, 165, 32, 0.58), rgba(252, 240, 216, 0.14)),
    linear-gradient(90deg, #0c4824, #041109);
}

.booking-card__visual--business {
  background:
    linear-gradient(135deg, rgba(252, 240, 216, 0.78), rgba(218, 165, 32, 0.18)),
    linear-gradient(90deg, #123a20, #050b07);
}

.booking-card__visual--notary {
  background:
    linear-gradient(135deg, rgba(252, 240, 216, 0.8), rgba(218, 165, 32, 0.16)),
    linear-gradient(90deg, #1d3d24, #090d09);
}

.booking-card__body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
}

.booking-card__type {
  margin: 0;
  color: var(--color-green-800);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.booking-card__meta {
  margin: 0 0 8px;
  color: rgba(29, 36, 31, 0.7);
  font-size: 1rem;
  font-weight: 750;
}

.text-link--light {
  color: rgba(252, 240, 216, 0.84);
}

.text-link--light:hover {
  color: var(--color-cream);
}

.section--deep {
  background:
    linear-gradient(115deg, rgba(252, 240, 216, 0.08), transparent 46%),
    var(--color-green-950);
  color: rgba(252, 240, 216, 0.78);
}

.resources {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.resources h2 {
  max-width: 740px;
  color: var(--color-cream);
}

.resources__content p:not(.eyebrow) {
  max-width: 590px;
  margin: 26px 0 34px;
  font-size: 1.08rem;
  color: rgba(252, 240, 216, 0.72);
}

.resource-feature {
  overflow: hidden;
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: var(--radius);
  background: rgba(252, 240, 216, 0.06);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.resource-feature__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  background: rgba(252, 240, 216, 0.1);
  padding: 0;
  cursor: pointer;
}

.resource-feature__media img,
.resource-feature__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.85) contrast(0.95);
}

.resource-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 37, 19, 0.56));
}

.text-link {
  width: fit-content;
  margin-top: 6px;
  border-bottom: 1px solid rgba(218, 165, 32, 0.74);
  background: transparent;
  color: var(--color-cream);
  padding: 0 0 4px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--color-cream);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.text-link:focus-visible {
  outline: 2px solid rgba(252, 240, 216, 0.88);
  outline-offset: 6px;
}

.resource-feature__body {
  padding: clamp(24px, 3vw, 34px);
}

.resource-feature__type {
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.resource-feature h3 {
  color: var(--color-cream);
}

.resource-feature p:last-child {
  margin-bottom: 0;
  color: rgba(252, 240, 216, 0.7);
}

.resource-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 34px;
  border-top: 1px solid rgba(252, 240, 216, 0.16);
  padding-top: 30px;
}

.resource-note span {
  color: var(--color-cream);
  font-weight: 900;
}

.resource-note p {
  max-width: 720px;
  margin: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.process-step {
  min-height: 310px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: clamp(26px, 3.6vw, 44px);
  box-shadow: 0 20px 54px rgba(6, 37, 19, 0.06);
}

.section--faq {
  background:
    linear-gradient(180deg, var(--color-cream-2), var(--color-white));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.86fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.faq-list details {
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 84px;
  color: var(--color-green-950);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(218, 165, 32, 0.55);
  border-radius: var(--radius-sm);
  color: var(--color-green-800);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--color-gold);
}

.faq-list p {
  max-width: 700px;
  margin: -4px 52px 26px 0;
  color: rgba(29, 36, 31, 0.72);
}

.section--contact {
  background:
    linear-gradient(180deg, var(--color-white), var(--color-green-100));
  padding-bottom: var(--section-y);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 8vw, 92px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(29, 36, 31, 0.7);
  font-size: 1.08rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.contact-methods a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding: 18px 0;
  color: rgba(29, 36, 31, 0.72);
  font-weight: 750;
  transition: color 180ms ease;
}

.contact-methods a:hover {
  color: var(--color-green-800);
}

.contact-methods span {
  color: var(--color-green-950);
  font-weight: 900;
}

.office-panel {
  display: grid;
  gap: 22px;
  border-left: 3px solid var(--color-gold);
  padding-left: 24px;
}

.office-panel p {
  margin: 0;
  color: rgba(29, 36, 31, 0.72);
}

.map-panel {
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(218, 165, 32, 0.34);
  border-radius: var(--radius);
  background: var(--color-green-100);
  box-shadow: 0 18px 50px rgba(6, 37, 19, 0.08);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.map-section {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: var(--color-green-950);
}

.map-section iframe {
  position: absolute;
  top: -240px;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: calc(100% + 240px);
  border: 0;
  filter: saturate(0.78) contrast(0.95);
}

.map-section__panel {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  top: clamp(42px, 8vw, 86px);
  border: 1px solid rgba(252, 240, 216, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 37, 19, 0.92);
  color: rgba(252, 240, 216, 0.76);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 28px 80px rgba(6, 37, 19, 0.28);
}

.map-section__panel .eyebrow {
  color: var(--color-gold);
}

.map-section__panel h2 {
  margin-bottom: 16px;
  max-width: 12ch;
  color: var(--color-cream);
  font-size: 2.75rem;
  line-height: 1;
}

.map-section__panel p {
  margin-bottom: 26px;
}

.consultation-form {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: clamp(30px, 4vw, 46px) clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading .eyebrow {
  margin-bottom: 12px;
}

.form-heading h3 {
  margin-bottom: 10px;
}

.consultation-form .form-heading h3 {
  font-size: 1.45rem;
}

.form-heading p {
  margin: 0;
  color: rgba(29, 36, 31, 0.62);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-green-950);
  font-size: 0.9rem;
  font-weight: 850;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(12, 72, 36, 0.18);
  border-radius: var(--radius-sm);
  background: #fbfdf9;
  color: var(--color-ink);
  padding: 14px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 136px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: 0;
  border-color: var(--color-green-800);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(12, 72, 36, 0.1);
}

.consultation-form .button {
  width: 100%;
  margin-top: 4px;
}

.consultation-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--color-green-800);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status[data-state="loading"] {
  color: rgba(29, 36, 31, 0.68);
}

.form-status[data-state="success"] {
  color: var(--color-green-800);
}

.form-status[data-state="error"] {
  color: #9b1c1c;
}

.form-status:empty {
  display: none;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(218, 165, 32, 0.08), transparent 42%),
    var(--color-green-950);
  color: rgba(252, 240, 216, 0.72);
  padding: clamp(46px, 7vw, 72px) 0 24px;
}

.footer-modern {
  display: grid;
  gap: clamp(24px, 4vw, 34px);
  align-items: start;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(252, 240, 216, 0.14);
  padding-bottom: clamp(20px, 4vw, 28px);
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 0.95;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.76fr) minmax(0, 0.7fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.footer-grid > div,
.footer-office {
  display: grid;
  align-content: start;
  gap: 8px;
}

.brand--footer {
  color: var(--color-cream);
}

.brand--footer .brand__logo {
  background: var(--color-white);
}

.brand--footer .brand__wordmark {
  color: var(--color-cream);
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  object-fit: contain;
}

.site-footer p {
  max-width: 430px;
  margin: 0;
}

.footer-label {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-content: start;
  font-size: 1rem;
  font-weight: 500;
}

.footer-grid a,
.footer-links button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: rgba(252, 240, 216, 0.72);
  padding: 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.footer-grid a:hover,
.footer-links button:hover {
  color: var(--color-cream);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
  justify-content: flex-start;
  margin-top: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 165, 32, 0.34);
  border-radius: var(--radius-sm);
  color: rgba(252, 240, 216, 0.82);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-green-950);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(252, 240, 216, 0.14);
  padding-top: 18px;
}

.footer-bottom p,
.footer-bottom button,
.footer-bottom a {
  color: rgba(252, 240, 216, 0.52);
  font-size: 0.8rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 400;
}

.footer-bottom__links span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(252, 240, 216, 0.32);
}

.footer-bottom button,
.footer-bottom a {
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 400;
  cursor: pointer;
}

.footer-bottom button:hover,
.footer-bottom a:hover {
  color: var(--color-cream);
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 37, 19, 0.74);
  backdrop-filter: blur(10px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  border: 1px solid rgba(218, 165, 32, 0.22);
  border-radius: var(--radius);
  background: var(--color-cream-2);
  color: var(--color-ink);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.modal__panel--video {
  width: min(520px, 100%);
  background: var(--color-green-950);
  color: rgba(252, 240, 216, 0.74);
}

.modal--booking {
  align-items: center;
}

.modal__panel--booking {
  width: min(1120px, 100%);
  padding: 0;
  overflow: hidden;
  background: #f8fbf7;
}

.modal__panel h2 {
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.2;
}

.modal__panel--video h2 {
  color: var(--color-cream);
}

.modal__panel video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  background: #000;
  object-fit: cover;
  object-position: center top;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-green-950);
  padding: 0;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.modal__close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-green-950);
  transform: translateY(-1px);
}

.modal__close:focus-visible {
  outline: 2px solid rgba(252, 240, 216, 0.9);
  outline-offset: 4px;
}

.booking-modal {
  display: grid;
  grid-template-columns: minmax(360px, 0.46fr) minmax(0, 1fr);
  min-height: min(760px, calc(100svh - 40px));
}

.booking-modal__summary {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(218, 165, 32, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(8, 48, 24, 0.96), rgba(6, 37, 19, 1));
  color: rgba(252, 240, 216, 0.78);
  padding: clamp(36px, 4vw, 48px) clamp(44px, 5vw, 44px);
}

.booking-modal__summary h2 {
  max-width: 100%;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.28;
}

.booking-modal__lead,
.booking-modal__scheduler-head p,
.booking-modal__helper {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 0.86rem;
  line-height: 1.55;
}

.booking-modal__prepare-title {
  color: rgba(252, 240, 216, 0.56);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-modal__note {
  border: 1px solid rgba(218, 165, 32, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(252, 240, 216, 0.08);
  color: rgba(252, 240, 216, 0.86);
  padding: 15px 16px;
  font-weight: 750;
  line-height: 1.5;
  font-size: 0.82rem;
}

.booking-modal__note[hidden] {
  display: none;
}

.booking-modal__prepare {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(252, 240, 216, 0.18);
  padding-top: 18px;
}

.booking-modal__prepare ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-modal__prepare li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  font-size: 0.82rem;
}

.booking-modal__prepare li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.booking-modal__scheduler {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(32px, 4vw, 44px);
}

.booking-modal__scheduler-head {
  display: grid;
  gap: 10px;
}

.booking-modal__scheduler-head .eyebrow {
  margin-bottom: 0;
}

.booking-modal__scheduler-head p,
.booking-modal__helper {
  color: rgba(29, 36, 31, 0.68);
}

.booking-modal__embed-shell {
  position: relative;
  min-height: 600px;
  border: 1px solid rgba(12, 72, 36, 0.12);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: inset 0 1px 0 rgba(252, 240, 216, 0.46);
  overflow: hidden;
}

.booking-modal__loading {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(29, 36, 31, 0.66);
  padding: 20px 22px;
  font-weight: 800;
}

.booking-modal__loading[hidden] {
  display: none;
}

.booking-modal__loading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 8px rgba(218, 165, 32, 0.14);
  animation: bookingPulse 1.5s ease-in-out infinite;
}

.booking-modal__embed {
  min-height: 560px;
}

.booking-modal__embed iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
}

.booking-modal__fallback {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 560px;
  padding: 28px;
}

.booking-modal__fallback p {
  margin: 0;
  color: rgba(29, 36, 31, 0.74);
}

.booking-modal__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-modal__fallback-actions .button {
  width: auto;
}

@keyframes bookingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

.privacy-copy {
  display: grid;
  gap: 18px;
  color: rgba(29, 36, 31, 0.74);
}

.privacy-copy p {
  margin: 0;
}

.privacy-copy a {
  color: var(--color-green-800);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
}

.chatbot__launcher {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-green-800);
  color: var(--color-cream);
  box-shadow: 0 18px 46px rgba(6, 37, 19, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.chatbot__launcher:hover {
  transform: translateY(-2px);
  background: var(--color-green-950);
}

.chatbot__launcher span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(252, 240, 216, 0.52);
  border-radius: 50%;
  font-weight: 900;
}

.chatbot__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(6, 37, 19, 0.24);
  transform-origin: bottom right;
}

.chatbot__panel.is-opening {
  animation: panel-in 180ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chatbot__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  background: var(--color-green-950);
  color: var(--color-cream);
  padding: 20px;
}

.chatbot__eyebrow {
  margin-bottom: 4px;
  color: rgba(252, 240, 216, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.chatbot__header h2 {
  margin: 0;
  color: var(--color-cream);
  font-size: 1.45rem;
}

.chatbot__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(252, 240, 216, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(252, 240, 216, 0.08);
  color: rgba(252, 240, 216, 0.72);
  cursor: pointer;
}

.chatbot__close svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.chatbot__close:hover {
  background: rgba(252, 240, 216, 0.16);
  color: var(--color-cream);
}

.chatbot__messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding: 18px;
  background: #fbfdf9;
}

.message {
  max-width: 88%;
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.message--bot {
  justify-self: start;
  background: var(--color-green-100);
  color: var(--color-green-950);
}

.message--user {
  justify-self: end;
  background: var(--color-green-800);
  color: var(--color-cream);
}

.chatbot__prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--color-border);
  padding: 14px;
}

.chatbot__prompts button {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-green-900);
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.chatbot__prompts button:hover {
  border-color: var(--color-green-800);
}

.chatbot__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-top: 1px solid var(--color-border);
  padding: 14px;
}

.chatbot__form input {
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.chatbot__form button {
  border-radius: var(--radius-sm);
  background: var(--color-green-800);
  color: var(--color-cream);
  padding: 0 14px;
  font-weight: 850;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  h1 {
    max-width: 680px;
    font-size: 4.35rem;
  }

  .section-kicker h2,
  .section-heading h2,
  .about-story__intro h2,
  .online-app h2,
  .resources h2,
  .contact-copy h2,
  .footer-cta h2 {
    font-size: 3.1rem;
  }

  .footer-cta h2 {
    font-size: 1.5rem;
  }

  .about-layout,
  .about-story__body,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-cta h2,
  .footer-cta p,
  .footer-cta .button {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-card {
    max-width: 360px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__grid,
  .resources,
  .online-app__header,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout .section-heading {
    position: static;
  }

  .hero__visual {
    min-height: 560px;
    justify-items: center;
  }

  .finance-story {
    width: min(100%, 620px);
    min-height: 540px;
    margin-inline: auto;
  }
}

@media (max-width: 880px) {
  :root {
    --header-h: 72px;
  }

  h1 {
    font-size: 3.85rem;
  }

  .section-kicker h2,
  .section-heading h2,
  .about-story__intro h2,
  .online-app h2,
  .resources h2,
  .contact-copy h2,
  .footer-cta h2 {
    font-size: 2.8rem;
  }

  .footer-cta h2 {
    font-size: 1.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + 42px) var(--gutter) auto var(--gutter);
    display: grid;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    padding: 14px;
  }

  .site-nav a:hover {
    background: var(--color-green-100);
  }

  .menu-toggle {
    display: block;
  }

  .site-header__actions .button {
    display: none;
  }

  .trust-strip__inner,
  .split-layout,
  .process-grid,
  .resource-note,
  .site-footer__inner,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  .site-footer,
  .site-footer p,
  .footer-grid a,
  .footer-links button {
    text-align: center;
  }

  .footer-modern,
  .footer-grid > div,
  .footer-office {
    justify-items: center;
  }

  .footer-cta {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer-grid a,
  .footer-links button {
    justify-self: center;
  }

  .trust-strip p {
    border-bottom: 1px solid rgba(6, 37, 19, 0.16);
  }

  .section-heading--center {
    text-align: left;
  }

  .modal--booking {
    align-items: end;
    padding: 0;
  }

  .modal__panel--booking {
    width: 100%;
    max-height: min(100svh, 980px);
    border-radius: 18px 18px 0 0;
  }

  .booking-modal {
    grid-template-columns: 1fr;
  }

  .booking-modal__embed-shell,
  .booking-modal__embed,
  .booking-modal__embed iframe,
  .booking-modal__fallback {
    min-height: 540px;
  }

  .finance-story {
    width: min(100%, 560px);
    min-height: 540px;
  }

  .finance-card--overview {
    width: 390px;
    right: 8px;
  }

  .finance-card--overview > strong {
    font-size: 3.2rem;
  }

  .finance-card--checklist {
    left: 0;
    width: 232px;
  }

  .finance-card--refund {
    right: 0;
    width: 250px;
  }

  .finance-card--savings {
    left: 0;
    width: 268px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --section-y: 76px;
    --section-y-compact: 56px;
  }

  .utility-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .brand__wordmark {
    max-width: 188px;
  }

  .brand__wordmark {
    font-size: 1.05rem;
  }

  .section-hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 3.05rem;
    line-height: 1;
  }

  .section-kicker h2,
  .section-heading h2,
  .about-story__intro h2,
  .online-app h2,
  .resources h2,
  .contact-copy h2,
  .footer-cta h2 {
    font-size: 2.24rem;
  }

  .hero__lead,
  .text-stack,
  .about-story__intro > p,
  .about-story__copy > p,
  .resources__content p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero__lead {
    margin-bottom: 24px;
  }

  .modal {
    padding: 12px;
  }

  .modal--booking {
    padding: 0;
  }

  .modal__panel--booking {
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .booking-modal__summary,
  .booking-modal__scheduler {
    padding: 26px 20px;
  }

  .booking-modal__summary {
    padding-right: 34px;
    padding-left: 34px;
  }

  .booking-modal__embed-shell,
  .booking-modal__embed,
  .booking-modal__embed iframe,
  .booking-modal__fallback {
    min-height: 500px;
  }

  .service-card h3,
  .process-step h3,
  .booking-card h3,
  .resource-feature h3,
  .form-heading h3 {
    font-size: 1.35rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__visual::before {
    inset: 24px 4px 28px 24px;
  }

  .service-grid,
  .booking-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .finance-story {
    display: grid;
    width: 100%;
    min-height: auto;
    gap: 14px;
    margin: 18px auto 0;
  }

  .finance-story__glow {
    inset: 12px;
  }

  .finance-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .finance-card--overview {
    order: 1;
    padding: 24px 22px;
  }

  .finance-card--overview > strong {
    font-size: 2.65rem;
  }

  .finance-card--checklist {
    order: 2;
    padding: 22px;
  }

  .finance-card--refund {
    order: 3;
    padding: 22px;
  }

  .finance-card--savings {
    order: 4;
    padding: 22px;
  }

  .finance-card--refund strong,
  .finance-card--savings strong {
    font-size: 1.9rem;
  }

  .finance-process,
  .finance-progress {
    gap: 12px;
  }

  .about-points p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .map-section {
    min-height: 650px;
  }

  .map-section__panel {
    margin-inline: 20px;
  }

  .map-section__panel h2 {
    font-size: 2.25rem;
  }

  .modal__panel h2,
  .booking-modal__summary h2 {
    font-size: 1rem;
  }

  .booking-card__visual {
    min-height: 142px;
  }

  .booking-card__visual span {
    font-size: 2.8rem;
  }

  .faq-list summary {
    min-height: 76px;
  }

  .faq-list p {
    margin-right: 0;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .service-card span,
  .process-step span {
    margin-bottom: 34px;
  }

  .resources {
    gap: 34px;
  }

  .footer-links {
    justify-content: center;
    justify-items: center;
  }

  .chatbot {
    right: 16px;
    bottom: 18px;
  }

  .chatbot__launcher {
    width: 52px;
    height: 52px;
  }

  .chatbot__panel {
    right: -2px;
    bottom: 64px;
    max-height: min(620px, calc(100svh - 104px));
  }

  .chatbot__messages {
    max-height: 230px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
