:root {
  --cream: #f8f2e9;
  --cream-deep: #efe2d2;
  --sage: #7f9884;
  --sage-deep: #395746;
  --sage-soft: #d9e3d9;
  --rose: #d78f88;
  --rose-soft: #f3d2cc;
  --ink: #24342b;
  --muted: #5d6f63;
  --paper: #fffaf4;
  --white: #ffffff;
  --line: rgba(57, 87, 70, 0.18);
  --shadow: 0 22px 60px rgba(57, 87, 70, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left,
      rgba(215, 143, 136, 0.24),
      transparent 30rem),
    linear-gradient(135deg, var(--cream) 0%, #fbf7f0 42%, #edf4ee 100%);
  font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(57, 87, 70, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 87, 70, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55),
      transparent 70%);
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(57, 87, 70, 0.12);
  background: rgba(248, 242, 233, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: grid;
  gap: 0;
  min-width: 144px;
  text-decoration: none;
}

.brand strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.nav-links a {
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sage-deep);
  background: rgba(127, 152, 132, 0.14);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 250, 244, 0.82);
}

.language-switch a,
.language-switch button {
  display: inline-flex;
  min-width: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.language-switch a.is-active,
.language-switch button.is-active {
  color: var(--white);
  background: var(--sage-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: var(--sage-deep);
  box-shadow: 0 12px 28px rgba(57, 87, 70, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #2f473a;
}

.button-secondary {
  color: var(--sage-deep);
  border-color: rgba(57, 87, 70, 0.22);
  background: rgba(255, 250, 244, 0.78);
}

.button-rose {
  color: #4a2b28;
  background: var(--rose-soft);
}

.page {
  overflow: hidden;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 56px 0;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--rose);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 6.1rem;
}

h2 {
  max-width: 780px;
  font-size: 4rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.25rem;
}

.hero {
  position: relative;
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin-top: 12px;
}

.meta-card {
  border: 1px solid rgba(57, 87, 70, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 250, 244, 0.68);
}

.meta-card strong {
  display: block;
  color: var(--sage-deep);
  font-size: 1.04rem;
  line-height: 1.2;
}

.meta-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.portrait-panel {
  position: relative;
  display: grid;
  min-height: 620px;
  align-items: stretch;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 87, 70, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(145deg,
      rgba(255, 250, 244, 0.88),
      rgba(217, 227, 217, 0.72)),
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.4) 0 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.34) 0 1px, transparent 1px);
  background-size:
    auto,
    28px 28px,
    28px 28px;
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(57, 87, 70, 0.25);
  border-radius: 8px;
  content: "";
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 42px;
  text-align: center;
}

.portrait-placeholder span {
  display: inline-flex;
  width: min(270px, 76%);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 87, 70, 0.14);
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(255, 250, 244, 0.72);
  font-family: "Fraunces", Georgia, serif;
  font-size: 5.2rem;
  font-weight: 650;
}

.portrait-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  border-radius: var(--radius);
  padding: 18px;
  color: var(--sage-deep);
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 16px 35px rgba(57, 87, 70, 0.12);
}

.floating-note {
  position: absolute;
  top: 32px;
  left: -26px;
  max-width: 235px;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--sage-deep);
  background: var(--rose-soft);
  box-shadow: 0 14px 28px rgba(84, 48, 44, 0.12);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(28px, 6vw, 70px);
}

@media (min-width: 981px) {
  #area .split {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  }
}

.text-stack {
  display: grid;
  gap: 20px;
}

.panel {
  border: 1px solid rgba(57, 87, 70, 0.14);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 18px 50px rgba(57, 87, 70, 0.1);
}

.soft-band {
  background: linear-gradient(180deg,
      rgba(255, 250, 244, 0),
      rgba(217, 227, 217, 0.42) 18%,
      rgba(217, 227, 217, 0.35) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.service-card,
.step-card,
.faq-card,
.testimonial-card {
  border: 1px solid rgba(57, 87, 70, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 14px 36px rgba(57, 87, 70, 0.08);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 22px;
}

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--sage-soft);
  font-weight: 900;
}

.service-card p,
.step-card p,
.testimonial-card p,
.faq-card p,
.panel p {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.step-card {
  position: relative;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-deep);
  font-weight: 900;
}

.insurance-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: insurance;
}

.insurance-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-bottom: 1px solid rgba(57, 87, 70, 0.12);
  padding: 0 0 14px;
  color: var(--muted);
}

.insurance-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.insurance-list li::before {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  content: counter(insurance);
  counter-increment: insurance;
  color: var(--sage-deep);
  background: var(--rose-soft);
  font-weight: 900;
}

.map-card {
  overflow: hidden;
  border: 1px solid rgba(57, 87, 70, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: var(--shadow);
}

.service-map-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.testimonial-shell {
  margin-top: 34px;
}

.testimonial-track {
  display: grid;
  grid-auto-columns: minmax(280px, 420px);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sage) transparent;
}

.testimonial-card {
  min-height: 245px;
  padding: 24px;
  scroll-snap-align: start;
}

.quote-mark {
  color: var(--rose);
  font-family: "Fraunces", Georgia, serif;
  font-size: 3.1rem;
  line-height: 0.8;
}

.testimonial-card .label {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--sage-deep);
  background: var(--sage-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.icon-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 87, 70, 0.16);
  border-radius: 999px;
  color: var(--sage-deep);
  background: rgba(255, 250, 244, 0.78);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

details.faq-card {
  padding: 0;
}

.faq-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--sage-deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-card summary::after {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  content: "+";
  background: var(--sage-soft);
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  padding: 0 22px 22px;
}

.contact-band {
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-deep), #526e5a);
}

.contact-band .eyebrow,
.contact-band .lead,
.contact-band p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-band .eyebrow::before {
  background: var(--rose-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-card a,
.contact-card span {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 24px 0;
  color: var(--muted);
  background: #fffaf4;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--sage-deep);
  font-weight: 900;
  text-decoration: none;
}

.placeholder-note {
  border-left: 3px solid var(--rose);
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .nav {
    min-height: auto;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    min-height: 520px;
  }

  .floating-note {
    left: 20px;
  }

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

@media (max-width: 720px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-meta,
  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .portrait-panel {
    min-height: 440px;
  }

  .portrait-placeholder span {
    font-size: 3.8rem;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-bottom: 12px;
  }

  .portrait-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Legal pages */
body.legal-page {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cream), #edf4ee);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

body.legal-page::before {
  content: none;
}

.legal-page main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal-page.legal-page-narrow main {
  width: min(840px, calc(100% - 32px));
}

.legal-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(255, 250, 244, 0.88);
}

.legal-page h1,
.legal-page h2 {
  margin: 0;
  color: var(--sage-deep);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.legal-page h1 {
  font-size: 3rem;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.5rem;
}

.legal-page p,
.legal-page ul,
.legal-page address {
  margin: 14px 0 0;
}

.legal-page address {
  font-style: normal;
}

.legal-page li+li {
  margin-top: 8px;
}

.legal-page a {
  color: var(--sage-deep);
  font-weight: 700;
}

.legal-page .back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--sage-deep);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.legal-page .note {
  border-left: 3px solid var(--rose-soft);
  padding-left: 14px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .legal-page h1 {
    font-size: 2.35rem;
  }
}