:root {
  --ivory: #fbf8f2;
  --cream: #f4eee3;
  --sand: #dccdbb;
  --taupe: #9c8d7b;
  --olive: #6f7f62;
  --forest: #294e3f;
  --forest-deep: #19372d;
  --gold: #b7925f;
  --ink: #26322d;
  --muted: #68736d;
  --white: #ffffff;
  --line: rgba(41, 78, 63, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--forest);
  color: var(--white);
}

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

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(41, 78, 63, 0.1);
}

.header-inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 82px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  position: relative;
  color: #53625b;
  font-size: 13px;
  font-weight: 520;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 660;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button-primary,
.button-header {
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(25, 55, 45, 0.18);
  color: var(--white);
}

.button-primary:hover,
.button-header:hover {
  background: var(--forest-deep);
  box-shadow: 0 16px 36px rgba(25, 55, 45, 0.26);
}

.button-header {
  min-height: 45px;
  padding: 0 20px;
  font-size: 12px;
  box-shadow: none;
}

.button-header .button-arrow {
  font-size: 14px;
}

.button-arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  font-size: 16px;
  transition: transform 0.25s ease;
}

.button-arrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.button:hover .button-arrow {
  transform: rotate(7deg) translate(1px, -1px);
}

.button-outline {
  border-color: rgba(41, 78, 63, 0.28);
  background: transparent;
  color: var(--forest);
}

.button-outline:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 855px;
  overflow: hidden;
  padding: 147px 0 74px;
  background:
    linear-gradient(105deg, rgba(251, 248, 242, 0.92) 0%, rgba(251, 248, 242, 0.87) 52%, rgba(243, 236, 224, 0.78) 100%),
    radial-gradient(circle at 85% 32%, rgba(192, 165, 126, 0.3), transparent 35%);
}

.hero::before {
  position: absolute;
  top: 100px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(183, 146, 95, 0.14);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  bottom: -180px;
  left: -230px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(41, 78, 63, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 190px;
  left: -80px;
  width: 230px;
  height: 230px;
  background: rgba(161, 177, 140, 0.12);
}

.hero-glow-two {
  right: 36%;
  bottom: 50px;
  width: 160px;
  height: 160px;
  background: rgba(183, 146, 95, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 630px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  gap: 90px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 14px;
  animation: rise-in 0.8s both ease-out;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  color: var(--olive);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #c8d6c8;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--forest-deep);
  font-size: clamp(50px, 5.15vw, 75px);
  line-height: 0.98;
}

.hero h1 em {
  position: relative;
  color: var(--gold);
  font-weight: 400;
}

.hero h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -4px;
  left: 1%;
  height: 8px;
  border-top: 1px solid rgba(183, 146, 95, 0.55);
  border-radius: 50%;
  content: "";
}

.hero-lead {
  max-width: 605px;
  margin-bottom: 32px;
  color: #5d6963;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 650;
}

.text-link span {
  display: grid;
  place-items: center;
}

.text-link span svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.7;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
  width: fit-content;
  padding: 10px 17px 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(244, 238, 227, 0.36));
  box-shadow: 0 16px 38px rgba(50, 65, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
  backdrop-filter: blur(16px) saturate(145%);
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--ivory);
  border-radius: 50%;
  background: #91a284;
  color: var(--white);
  font-size: 10px;
}

.avatar-stack svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.4;
}

.avatar-stack span:nth-child(2) { background: var(--gold); }
.avatar-stack span:nth-child(3) { background: var(--forest); }

.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--forest-deep);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 470px);
  padding: 16px;
  animation: fade-in 1s 0.15s both ease-out;
}

.hero-image-frame {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px 8px 28px 8px;
  clip-path: polygon(0 0, calc(100% - 62px) 0, 100% 62px, 100% 100%, 62px 100%, 0 calc(100% - 62px));
  background: #e7dbcc;
  box-shadow: 0 32px 80px rgba(67, 58, 47, 0.15);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34, 45, 38, 0.1));
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
  transition: transform 0.8s ease;
}

.hero-image-frame:hover img {
  transform: scale(1.025);
}

.image-shine {
  position: absolute;
  z-index: 2;
  top: 4%;
  left: 9%;
  width: 35%;
  height: 40%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(26px);
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 193px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(245, 239, 228, 0.52));
  box-shadow: 0 22px 55px rgba(39, 60, 49, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  backdrop-filter: blur(20px) saturate(165%);
  will-change: transform;
}

.hero-badge::before {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.96), transparent);
  content: "";
}

.hero-badge-top {
  top: 124px;
  right: -64px;
  animation: float-card 5.6s ease-in-out infinite;
}

.hero-badge-bottom {
  bottom: 69px;
  left: -77px;
  animation: float-card 6.3s -2.1s ease-in-out infinite;
}

.hero-badge:hover {
  animation-play-state: paused;
}

.badge-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(231, 238, 228, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--forest);
  font-size: 15px;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.7;
}

.hero-badge p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.hero-badge strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.hero-badge small {
  color: var(--muted);
  font-size: 9px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  background: var(--forest-deep);
  color: var(--white);
}

.trust-grid {
  display: grid;
  min-height: 118px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 58px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }

.trust-grid span {
  color: #b8c8b8;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.5;
}

.trust-grid strong {
  color: var(--white);
  font-size: 12px;
  font-weight: 630;
}

.intro {
  overflow: hidden;
  background: #fffdf9;
}

.intro-grid,
.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 100px;
}

.intro-visual {
  position: relative;
  min-height: 650px;
}

.photo-card {
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(64, 58, 50, 0.13);
}

.photo-card-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 620px;
  border-radius: 8px 8px 0 8px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 76px), calc(100% - 76px) 100%, 0 100%);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-card {
  position: absolute;
  z-index: 3;
  bottom: -2px;
  left: 0;
  width: 250px;
  padding: 25px 28px 28px;
  border-left: 3px solid var(--gold);
  background: var(--forest);
  box-shadow: 0 22px 55px rgba(25, 55, 45, 0.22);
  color: var(--white);
}

.quote-mark {
  display: block;
  height: 31px;
  color: #cad6c6;
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.8;
}

.quote-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.28;
}

.decor-word {
  position: absolute;
  top: 80px;
  left: -66px;
  color: rgba(183, 146, 95, 0.16);
  font-family: var(--serif);
  font-size: 72px;
  font-style: italic;
  transform: rotate(-90deg);
}

.section-copy h2,
.section-heading h2,
.about-copy h2,
.faq-intro h2 {
  margin-bottom: 24px;
  color: var(--forest-deep);
  font-size: clamp(40px, 4.3vw, 61px);
  line-height: 1.02;
}

.section-copy > p,
.about-copy > p,
.faq-intro > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.section-copy .large-copy,
.about-copy .large-copy {
  margin-bottom: 19px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.46;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 31px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #47564e;
  font-size: 13px;
  font-weight: 560;
}

.check-list span,
.included-list span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: #e9f0e6;
  color: var(--forest);
  font-size: 10px;
}

.check-list span svg,
.included-list span svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}

.goals {
  background: var(--cream);
}

.section-heading {
  max-width: 745px;
  margin: 0 auto 56px;
}

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

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.goal-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.goal-card {
  position: relative;
  min-height: 340px;
  padding: 35px;
  overflow: hidden;
  border: 1px solid rgba(41, 78, 63, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.69);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(68, 65, 56, 0.1);
}

.goal-card.featured {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.goal-card::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(41, 78, 63, 0.1);
  border-radius: 50%;
  content: "";
}

.goal-card.featured::after {
  border-color: rgba(255, 255, 255, 0.13);
}

.goal-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(41, 78, 63, 0.26);
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
}

.featured .goal-number {
  color: rgba(255, 255, 255, 0.36);
}

.goal-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 60px;
  place-items: center;
  border-radius: 18px;
  background: #edf1e9;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 23px;
}

.goal-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.55;
}

.featured .goal-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #d3dfd0;
}

.goal-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 13px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.goal-card.featured h3 {
  color: var(--white);
}

.goal-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.goal-card.featured p {
  color: rgba(255, 255, 255, 0.66);
}

.method {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.method::before {
  position: absolute;
  top: -280px;
  right: -120px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.method-heading {
  position: relative;
  display: grid;
  align-items: end;
  margin-bottom: 67px;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 100px;
}

.method-heading h2 {
  max-width: 660px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.5vw, 61px);
  line-height: 1.02;
}

.method-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 14px;
  line-height: 1.75;
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.method-step {
  display: flex;
  gap: 24px;
  padding: 31px 33px 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.method-step:last-child { border-right: 0; }

.method-step > span {
  color: #bac9b6;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.method-step h3 {
  margin: 2px 0 13px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.72;
}

.included-panel {
  position: relative;
  display: grid;
  margin-top: 82px;
  padding: 57px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  background: var(--ivory);
  box-shadow: 0 25px 70px rgba(10, 27, 22, 0.22);
  color: var(--ink);
  grid-template-columns: 0.78fr 1.4fr;
  gap: 70px;
}

.included-title h3 {
  margin: 0 0 17px;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.included-title > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.included-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
}

.included-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #526059;
  font-size: 11px;
}

.about {
  background: #fffdf9;
}

.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
}

.about-copy > p {
  max-width: 600px;
}

.credential-row {
  display: flex;
  gap: 38px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.credential-row > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.credential-row strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.credential-row span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-visual {
  position: relative;
  padding: 0 0 50px 50px;
}

.about-image-wrap {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 8px 28px 8px 28px;
  clip-path: polygon(48px 0, 100% 0, 100% calc(100% - 72px), calc(100% - 72px) 100%, 0 100%, 0 48px);
  box-shadow: 0 32px 70px rgba(64, 58, 50, 0.15);
}

.about-image-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 67%, rgba(25, 55, 45, 0.13));
  content: "";
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.signature-card {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 245px;
  padding: 25px 28px;
  border: 1px solid rgba(183, 146, 95, 0.4);
  border-radius: 18px;
  background: rgba(251, 248, 242, 0.93);
  box-shadow: 0 20px 45px rgba(52, 52, 45, 0.12);
  backdrop-filter: blur(12px);
}

.signature-card span {
  color: var(--olive);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.signature-card p {
  margin: 9px 0 0;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
}

.location {
  padding-top: 0;
  background: #fffdf9;
}

.location-card {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--forest);
  color: var(--white);
  grid-template-columns: 1.12fr 0.88fr;
}

.location-copy {
  position: relative;
  z-index: 3;
  padding: 75px;
}

.location-copy h2 {
  max-width: 550px;
  margin-bottom: 21px;
  color: var(--white);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.02;
}

.location-copy > p {
  max-width: 575px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.address-list {
  display: grid;
  gap: 15px;
  margin-bottom: 35px;
}

.address-list > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.address-list span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #c8d6c8;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.address-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 11px;
  line-height: 1.55;
}

.address-list strong {
  margin: 2px 0 3px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}

.location-copy .button {
  background: var(--ivory);
  box-shadow: none;
  color: var(--forest);
}

.location-copy .button-arrow {
  background: rgba(41, 78, 63, 0.08);
}

.location-map-wrap {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #dce3dc;
}

.location-map-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 55, 45, 0.1), transparent 26%);
  pointer-events: none;
  content: "";
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.98) brightness(1.03);
}

.map-glass-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 238, 227, 0.72));
  box-shadow: 0 20px 48px rgba(27, 52, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  backdrop-filter: blur(18px) saturate(155%);
}

.map-glass-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(41, 78, 63, 0.1);
  color: var(--forest);
}

.map-glass-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.map-glass-card p {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.map-glass-card strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.map-glass-card small {
  color: var(--muted);
  font-size: 9px;
}

.map-glass-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 9px;
  font-weight: 680;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease;
}

.map-glass-card a:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.map-glass-card a svg {
  width: 12px;
  height: 12px;
  stroke-width: 1.8;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p {
  max-width: 430px;
  margin-bottom: 30px;
}

.faq-list {
  border-top: 1px solid rgba(41, 78, 63, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(41, 78, 63, 0.22);
}

.faq-list summary {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: var(--forest-deep);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(41, 78, 63, 0.24);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 17px;
  transition: transform 0.25s ease;
}

.faq-list summary span svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -6px 55px 25px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(rgba(32, 68, 54, 0.95), rgba(32, 68, 54, 0.97)),
    url("/images/monica-hero-new.jpeg") center 35% / cover;
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  top: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.final-cta::before { left: -250px; }
.final-cta::after { right: -250px; }

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
}

.cta-kicker {
  display: block;
  margin-bottom: 24px;
  color: #cbd8c8;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(45px, 5.3vw, 70px);
  line-height: 0.98;
}

.final-cta p {
  max-width: 630px;
  margin: 0 auto 31px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.72;
}

.final-cta .button {
  background: var(--ivory);
  box-shadow: 0 18px 45px rgba(10, 25, 19, 0.25);
  color: var(--forest);
}

.final-cta .button-arrow { background: rgba(41, 78, 63, 0.08); }

.final-cta small {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.site-footer {
  padding: 70px 0 20px;
  background: #122a22;
  color: var(--white);
}

.footer-main {
  display: grid;
  align-items: center;
  padding-bottom: 55px;
  grid-template-columns: 0.75fr 1fr 0.85fr;
  gap: 50px;
}

.footer-logo-surface {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.brand-logo-footer {
  width: 124px;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(96%) sepia(10%) saturate(277%) hue-rotate(334deg) brightness(103%) contrast(95%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-footer:hover .brand-logo-footer {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-main > p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--white); }

.footer-links .back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.back-to-top svg {
  width: 12px;
  height: 12px;
  stroke-width: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: #1f9b59;
  box-shadow: 0 15px 35px rgba(22, 87, 55, 0.3);
  color: var(--white);
  font-size: 11px;
  font-weight: 660;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(22, 87, 55, 0.4);
}

.wa-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-family: var(--serif);
  font-size: 17px;
}

.wa-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float-card {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -9px, 0); }
}

@keyframes drift-glow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.07); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-glow-one { animation: drift-glow 8s ease-in-out infinite; }
  .hero-glow-two { animation: drift-glow 10s -3s ease-in-out infinite reverse; }

  .scroll-animations-ready .reveal {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(0, 38px, 0);
    transition:
      opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.72s ease,
      clip-path 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform, filter;
  }

  .scroll-animations-ready .reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  .scroll-animations-ready .reveal-delay { transition-delay: 0.12s; }
  .scroll-animations-ready .reveal-delay-two { transition-delay: 0.24s; }

  .scroll-animations-ready .intro-visual.reveal,
  .scroll-animations-ready .about-visual.reveal {
    clip-path: inset(4% 0 4% 0 round 34px);
    transform: translate3d(0, 30px, 0) scale(0.965);
  }

  .scroll-animations-ready .intro-visual.reveal.is-visible,
  .scroll-animations-ready .about-visual.reveal.is-visible {
    clip-path: inset(0 round 0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  .scroll-animations-ready .goal-card.reveal {
    transform: translate3d(0, 42px, 0) scale(0.97);
  }

  .scroll-animations-ready .goal-card.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .scroll-animations-ready .goal-card.reveal.is-visible:hover {
    transform: translate3d(0, -8px, 0) scale(1);
  }

  .scroll-animations-ready .method-step.reveal:nth-child(2) { transition-delay: 0.1s; }
  .scroll-animations-ready .method-step.reveal:nth-child(3) { transition-delay: 0.2s; }

  .scroll-animations-ready .included-panel.reveal,
  .scroll-animations-ready .location-card.reveal,
  .scroll-animations-ready .final-cta-inner.reveal {
    transform: translate3d(0, 34px, 0) scale(0.985);
  }

  .scroll-animations-ready .included-panel.reveal.is-visible,
  .scroll-animations-ready .location-card.reveal.is-visible,
  .scroll-animations-ready .final-cta-inner.reveal.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .scroll-animations-ready .included-list li,
  .scroll-animations-ready .faq-list details,
  .scroll-animations-ready .location-card .address-list > div,
  .scroll-animations-ready .about-copy .credential-row > div {
    opacity: 0;
    transform: translate3d(16px, 0, 0);
    transition:
      opacity 0.52s ease,
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .scroll-animations-ready .included-panel.is-visible .included-list li,
  .scroll-animations-ready .faq-list.is-visible details,
  .scroll-animations-ready .location-card.is-visible .address-list > div,
  .scroll-animations-ready .about-copy.is-visible .credential-row > div {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .scroll-animations-ready .included-list li:nth-child(2),
  .scroll-animations-ready .faq-list details:nth-child(2),
  .scroll-animations-ready .location-card .address-list > div:nth-child(2),
  .scroll-animations-ready .about-copy .credential-row > div:nth-child(2) {
    transition-delay: 0.09s;
  }

  .scroll-animations-ready .included-list li:nth-child(3),
  .scroll-animations-ready .faq-list details:nth-child(3) { transition-delay: 0.18s; }

  .scroll-animations-ready .included-list li:nth-child(4),
  .scroll-animations-ready .faq-list details:nth-child(4) { transition-delay: 0.27s; }

  .scroll-animations-ready .included-list li:nth-child(5),
  .scroll-animations-ready .faq-list details:nth-child(5) { transition-delay: 0.36s; }

  .scroll-animations-ready .included-list li:nth-child(6) { transition-delay: 0.45s; }

  .scroll-animations-ready .reveal.is-visible {
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 0.76fr; gap: 52px; }
  .hero-badge-top { right: -24px; }
  .hero-badge-bottom { left: -45px; }
  .desktop-nav { gap: 20px; }
  .intro-grid,
  .about-grid { gap: 65px; }
  .location-copy { padding: 62px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 40px, 740px); }
  .section { padding: 90px 0; }
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding: 132px 0 85px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-content { text-align: center; }
  .hero h1,
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero .eyebrow,
  .hero-actions,
  .hero-proof { justify-content: center; }
  .hero-proof { margin-right: auto; margin-left: auto; }
  .hero-visual { justify-self: center; width: min(100%, 500px); }
  .hero-image-frame { height: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 17px 0; }
  .trust-grid > div { padding: 18px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(n+3) { border-bottom: 0; }
  .trust-grid > div:first-child { padding-left: 24px; }
  .intro-grid,
  .about-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .intro-visual { width: min(100%, 560px); margin: 0 auto; }
  .goal-grid { grid-template-columns: 1fr; }
  .goal-card { min-height: 275px; }
  .goal-icon { margin-bottom: 40px; }
  .method-heading { grid-template-columns: 1fr; gap: 24px; }
  .method-heading > p { max-width: 600px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-step { border-right: 0; }
  .included-panel { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { order: 2; }
  .about-visual { order: 1; width: min(100%, 570px); margin: 0 auto; }
  .location-card { grid-template-columns: 1fr; }
  .location-map-wrap { min-height: 430px; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 75px; }
  .container { width: calc(100% - 30px); }
  .section { padding: 72px 0; }
  .site-header { border-bottom-color: rgba(41, 78, 63, 0.08); }
  .header-inner { min-height: 76px; gap: 10px; }
  .brand-logo { width: 68px; }
  .button-header { min-height: 39px; padding: 0 14px; font-size: 10px; }
  .button-header .button-arrow { display: none; }
  .hero { padding: 111px 0 67px; }
  .hero .eyebrow { max-width: 310px; margin-right: auto; margin-left: auto; line-height: 1.55; }
  .hero h1 { margin-bottom: 21px; font-size: 44px; line-height: 0.99; }
  .hero-lead { margin-bottom: 27px; font-size: 14px; line-height: 1.66; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; margin-top: 30px; text-align: left; }
  .hero-visual { padding: 9px; }
  .hero-image-frame {
    height: 500px;
    border-radius: 20px 6px 20px 6px;
    clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 42px 100%, 0 calc(100% - 42px));
  }
  .hero-badge { min-width: 162px; padding: 10px 12px; }
  .hero-badge-top { top: 94px; right: -5px; }
  .hero-badge-bottom { bottom: 35px; left: -5px; }
  .badge-icon { width: 31px; height: 31px; }
  .hero-badge strong { font-size: 12px; }
  .hero-badge small { font-size: 8px; }
  .trust-grid > div { min-height: 80px; gap: 10px; padding: 14px 9px; }
  .trust-grid > div:first-child { padding-left: 9px; }
  .trust-grid span { font-size: 18px; }
  .trust-grid p { font-size: 9px; }
  .trust-grid strong { font-size: 10px; }
  .intro-visual { min-height: 500px; }
  .photo-card-main {
    width: 94%;
    height: 480px;
    border-radius: 6px 6px 0 6px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%);
  }
  .quote-card { width: 210px; padding: 20px 22px; }
  .quote-card p { font-size: 17px; }
  .decor-word { display: none; }
  .section-copy h2,
  .section-heading h2,
  .about-copy h2,
  .faq-intro h2 { font-size: 39px; }
  .section-copy .large-copy,
  .about-copy .large-copy { font-size: 19px; }
  .goal-card { min-height: 265px; padding: 28px; }
  .method-heading { margin-bottom: 45px; }
  .method-heading h2 { font-size: 39px; }
  .method-step { padding: 27px 9px; }
  .included-panel { margin-top: 55px; padding: 32px 22px; }
  .included-title h3 { font-size: 31px; }
  .included-list { grid-template-columns: 1fr; }
  .included-list li { font-size: 10px; }
  .about-visual { padding: 0 0 45px 20px; }
  .about-image-wrap {
    height: 510px;
    border-radius: 6px 20px 6px 20px;
    clip-path: polygon(34px 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%, 0 34px);
  }
  .signature-card { width: 215px; padding: 20px 22px; }
  .credential-row { gap: 25px; }
  .credential-row span { font-size: 8px; }
  .location { padding-bottom: 72px; }
  .location-card { width: calc(100% - 20px); border-radius: 24px; }
  .location-copy { padding: 45px 27px; }
  .location-copy h2 { font-size: 39px; }
  .location-copy .button { width: 100%; padding: 0 19px; }
  .location-map-wrap { min-height: 390px; }
  .map-glass-card { right: 14px; bottom: 14px; left: 14px; padding: 11px; }
  .map-glass-card p { display: none; }
  .map-glass-card a { flex: 1; justify-content: center; min-height: 39px; }
  .faq-grid { gap: 45px; }
  .faq-list summary { min-height: 74px; font-size: 17px; }
  .faq-list details p { margin-right: 0; }
  .final-cta { padding: 85px 0; }
  .final-cta h2 { font-size: 42px; }
  .final-cta .button { width: 100%; padding: 0 18px; }
  .footer-main { padding-bottom: 42px; }
  .footer-main > p { font-size: 16px; }
  .footer-links { flex-wrap: wrap; gap: 18px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-whatsapp { right: 15px; bottom: 15px; padding-right: 8px; }
  .floating-whatsapp > span:last-child { display: none; }
  .wa-mark { width: 38px; height: 38px; }
}

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