:root {
  --white: #FFFFFF;
  --mint: #DFF3EA;
  --sage: #A8CBB7;
  --olive: #6F927B;
  --forest: #2F4F3E;
  --mist: #F6F8F6;
  --ink: #1F1F1F;
  --muted: #68726c;
  --line: rgba(47, 79, 62, 0.14);
  --shadow: 0 24px 70px rgba(39, 65, 51, 0.11);
  --shadow-soft: 0 12px 40px rgba(39, 65, 51, 0.08);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 44px;
  --container: 1240px;
  --header-height: 88px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--sage);
  color: var(--forest);
}

:focus-visible {
  outline: 3px solid rgba(111, 146, 123, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--forest);
  color: var(--white);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4.5rem);
  line-height: 1.04;
}

h3 {
  color: var(--forest);
  line-height: 1.3;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading p,
.results-header > p,
.technology-intro > p,
.faq-intro > p {
  color: var(--muted);
}

.heading-split {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  align-items: end;
  gap: 72px;
}

.heading-split h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.heading-split > p {
  max-width: 430px;
  margin-bottom: 6px;
}

.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.button svg {
  width: 19px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(47, 79, 62, 0.22);
  background: #3b624d;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.75rem;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button-ghost:hover {
  border-color: var(--forest);
  background: var(--mint);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease var(--reveal-delay, 0ms), transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-bottom: 1px solid rgba(47, 79, 62, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 30px rgba(47, 79, 62, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50% 50% 42% 58% / 48% 40% 60% 52%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  transform: rotate(-5deg);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand small {
  margin-top: 5px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.main-nav > a:not(.button) {
  position: relative;
  color: #3f4a44;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--olive);
  content: "";
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--forest);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    linear-gradient(90deg, rgba(246, 248, 246, 0.72), transparent 55%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.7vw, 6.25rem);
  line-height: 0.98;
}

.hero-title em {
  color: var(--olive);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 14px;
  color: #46524b;
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.hero-support {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-proof {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-proof div {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 20px 0;
}

.social-proof div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.social-proof strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.social-proof span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.03em;
}

.hero-visual {
  position: relative;
  z-index: 2;
  padding: 0 24px 38px 0;
}

.hero-frame {
  position: relative;
  height: min(70vh, 650px);
  min-height: 530px;
  overflow: hidden;
  border-radius: 47% 47% 24px 24px / 38% 38% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(25, 45, 34, 0.24));
  content: "";
}

.hero-frame img,
.parallax-image img {
  width: 100%;
  height: calc(100% + 38px);
  object-fit: cover;
  object-position: center 30%;
  transform: translateY(var(--parallax-y, -12px)) scale(1.02);
  transition: transform 0.18s linear;
}

.floating-seal {
  position: absolute;
  z-index: 3;
  top: 42px;
  right: -28px;
  display: flex;
  width: 142px;
  height: 142px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(223, 243, 234, 0.86);
  box-shadow: var(--shadow-soft);
  color: var(--forest);
  text-align: center;
  backdrop-filter: blur(12px);
  animation: floatSlow 5s ease-in-out infinite;
}

.floating-seal span {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.68rem;
  font-style: italic;
}

.floating-seal strong {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: -58px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 280px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: floatSlow 6s 0.6s ease-in-out infinite reverse;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 700;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  color: var(--forest);
  font-size: 0.78rem;
}

.floating-card small {
  color: var(--muted);
  font-size: 0.65rem;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 4px;
  bottom: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-caption span {
  color: var(--forest);
  font-weight: 700;
}

.blob {
  position: absolute;
  border-radius: 42% 58% 64% 36% / 50% 46% 54% 50%;
  filter: blur(2px);
  pointer-events: none;
  animation: blobMove 16s ease-in-out infinite alternate;
}

.blob-one {
  top: 70px;
  right: -150px;
  width: 560px;
  height: 560px;
  background: rgba(223, 243, 234, 0.75);
}

.blob-two {
  bottom: -220px;
  left: 20%;
  width: 430px;
  height: 430px;
  background: rgba(168, 203, 183, 0.14);
  animation-delay: -7s;
}

/* Treatments */
.treatments {
  background: var(--mist);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.treatment-card {
  overflow: hidden;
  border: 1px solid rgba(47, 79, 62, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(47, 79, 62, 0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.treatment-card:nth-child(even) {
  margin-top: 38px;
}

.treatment-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-soft);
}

.card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.treatment-card-tall .card-image {
  height: 315px;
}

.card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(25, 45, 34, 0.2));
  content: "";
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.treatment-card:hover .card-image img {
  transform: scale(1.045);
}

.card-image > span {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font-size: 0.63rem;
  font-weight: 700;
  backdrop-filter: blur(9px);
}

.card-body {
  padding: 24px 24px 26px;
}

.card-body h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.card-body p {
  min-height: 70px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

/* Journey */
.journey {
  overflow: hidden;
  background: var(--white);
}

.journey::before {
  position: absolute;
  top: 0;
  right: 8%;
  width: 260px;
  height: 260px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translateY(-60%);
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.journey-line::before {
  position: absolute;
  top: 28px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: var(--sage);
  content: "";
}

.journey-line li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-line li > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  place-items: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--sage);
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
}

.journey-line h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.journey-line p {
  max-width: 180px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

/* Results */
.results {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.results::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(223, 243, 234, 0.16);
  border-radius: 50%;
  content: "";
}

.results h2,
.results h3,
.results .eyebrow {
  color: var(--white);
}

.results-header {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 80px;
}

.results-header h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.results-header > p {
  color: rgba(255, 255, 255, 0.68);
}

.result-tabs {
  display: flex;
  gap: 8px;
  margin: 48px 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.result-tabs button {
  min-width: 92px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}

.result-tabs button[aria-selected="true"] {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--forest);
}

.result-stage {
  position: relative;
  z-index: 1;
}

.result-panel {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  animation: panelIn 0.55s ease both;
}

.result-panel[hidden] {
  display: none;
}

.result-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-image::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.label {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.label-before {
  left: 18px;
}

.label-after {
  right: 18px;
}

.result-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.result-copy > span {
  margin-bottom: 28px;
  color: var(--sage);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.result-copy h3 {
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
}

.result-copy p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.result-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  text-align: right;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.about-visual {
  position: relative;
  padding: 24px 0 42px 42px;
}

.about-visual::before {
  position: absolute;
  top: 0;
  bottom: 72px;
  left: 0;
  width: 62%;
  border-radius: var(--radius-lg) 12px 12px var(--radius-lg);
  background: var(--mint);
  content: "";
}

.about-image {
  position: relative;
  z-index: 1;
  height: 620px;
  overflow: hidden;
  border-radius: 180px 24px 180px 24px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.about-number {
  position: absolute;
  z-index: 2;
  right: -34px;
  bottom: 0;
  display: flex;
  width: 180px;
  height: 180px;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.about-number strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
}

.about-number span {
  font-size: 0.65rem;
  line-height: 1.4;
}

.about-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
}

.credential-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #445149;
  font-size: 0.78rem;
  font-weight: 600;
}

.credential-grid div:nth-child(odd) {
  padding-right: 18px;
}

.credential-grid div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.credential-grid span {
  color: var(--olive);
  font-size: 0.62rem;
}

.signature {
  display: flex;
  flex-direction: column;
  padding-left: 22px;
  border-left: 2px solid var(--sage);
}

.signature strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 500;
}

.signature span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Technology */
.technology {
  overflow: hidden;
  background: var(--mint);
}

.technology::before {
  position: absolute;
  top: -210px;
  left: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(47, 79, 62, 0.12);
  border-radius: 50%;
  content: "";
}

.technology-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 80px;
}

.technology-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.technology-intro h2 {
  font-size: clamp(2.45rem, 4vw, 4.1rem);
}

.technology-intro .text-link {
  margin-top: 20px;
}

.technology-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(47, 79, 62, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.tech-card:nth-child(even) {
  transform: translateY(28px);
}

.tech-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.tech-card:nth-child(even):hover {
  transform: translateY(20px);
}

.tech-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--olive);
  font-size: 0.66rem;
  font-weight: 700;
}

.tech-card h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.tech-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Testimonials */
.testimonials {
  background: var(--mist);
}

.testimonial-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.testimonial-heading h2 {
  margin-bottom: 0;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: var(--forest);
  color: var(--white);
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  display: grid;
  min-width: 100%;
  grid-template-columns: 0.45fr 1.55fr;
  grid-template-areas:
    "person stars"
    "person quote";
  align-items: center;
  gap: 0 70px;
  min-height: 400px;
  padding: 60px 7%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial-top {
  grid-area: person;
  text-align: center;
}

.testimonial-top img {
  width: 170px;
  height: 170px;
  margin: 0 auto 22px;
  border: 8px solid var(--mist);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-top div {
  display: flex;
  flex-direction: column;
}

.testimonial-top strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonial-top span {
  color: var(--olive);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars {
  grid-area: stars;
  margin-bottom: 22px;
  color: #a4814e;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

blockquote {
  grid-area: quote;
  margin: 0;
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1.35;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--sage);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--forest);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.faq-intro .button {
  margin-top: 20px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border: 0;
  background: none;
  color: var(--forest);
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.faq-item i {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item i::before,
.faq-item i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding-right: 60px;
  color: var(--muted);
  font-size: 0.86rem;
  opacity: 0;
  transition: opacity 0.3s ease, padding-bottom 0.4s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 28px;
  opacity: 1;
}

/* Booking */
.booking {
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.booking h2,
.booking .eyebrow {
  color: var(--white);
}

.booking-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.booking-intro > img {
  width: 100%;
  height: 250px;
  margin-top: 35px;
  border-radius: 22px 80px 22px 22px;
  object-fit: cover;
}

.booking-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-promise > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
}

.booking-promise div {
  display: flex;
  flex-direction: column;
}

.booking-promise strong {
  font-size: 0.8rem;
}

.booking-promise small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
}

.blob-three {
  right: -220px;
  bottom: -220px;
  width: 600px;
  height: 600px;
  background: rgba(168, 203, 183, 0.08);
}

.assessment-form {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span,
.goals legend {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.field input,
.field select {
  height: 48px;
}

.field textarea {
  min-height: 104px;
  padding: 12px 0;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage);
}

.field select option {
  background: var(--forest);
  color: var(--white);
}

.goals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
  padding: 0;
  border: 0;
}

.goals legend {
  width: 100%;
  margin-bottom: 8px;
}

.goals legend small {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}

.goals label {
  cursor: pointer;
}

.goals input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.goals label span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.goals input:checked + span {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--forest);
}

.goals input:focus-visible + span {
  outline: 3px solid rgba(168, 203, 183, 0.5);
  outline-offset: 3px;
}

.form-submit {
  width: 100%;
  margin-top: 28px;
  border-color: var(--mint);
  background: var(--mint);
  color: var(--forest);
}

.form-submit:hover {
  background: var(--white);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.61rem;
  text-align: center;
}

/* Contact */
.contact {
  background: var(--white);
}

.contact-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-details {
  padding: 48px;
  background: var(--mist);
}

.contact-item {
  display: flex;
  flex-direction: column;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span,
.contact-links span {
  margin-bottom: 5px;
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 28px;
}

.contact-links a {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-links strong {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: 0.72rem;
}

.contact-links a:hover strong {
  color: var(--olive);
}

.map-wrap {
  min-height: 560px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.45) sepia(0.1) hue-rotate(80deg);
}

/* Footer */
.site-footer {
  padding: 76px 0 24px;
  background: #20372c;
  color: rgba(255, 255, 255, 0.67);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 60px;
  padding-bottom: 58px;
}

.brand-light {
  color: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  font-size: 0.78rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a {
  margin: 5px 0;
  font-size: 0.73rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--sage);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.footer-bottom strong {
  color: var(--white);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float > a {
  position: relative;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(20, 70, 42, 0.28);
  color: var(--white);
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  fill: currentColor;
}

.whatsapp-bubble {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes blobMove {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(-22px, 18px, 0) rotate(7deg) scale(1.04); }
  100% { transform: translate3d(22px, -14px, 0) rotate(-5deg) scale(0.97); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.38), 0 10px 28px rgba(20, 70, 42, 0.28); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 28px rgba(20, 70, 42, 0.28); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 28px rgba(20, 70, 42, 0.28); }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: 0.67rem;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 6.2vw, 5rem);
  }

  .floating-card {
    left: -25px;
  }

  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .treatment-card:nth-child(even) {
    margin-top: 0;
  }

  .treatment-card:nth-child(3n + 2) {
    margin-top: 30px;
  }

  .journey-line {
    gap: 8px;
  }

  .about-grid {
    gap: 70px;
  }

  .booking-grid {
    gap: 45px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 90px 10vw;
    transform: translateX(100%);
    background: rgba(246, 248, 246, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s;
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav > a:not(.button) {
    color: var(--forest);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.6rem, 5vw, 2.7rem);
    font-weight: 500;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-left: auto;
  }

  .hero-frame {
    height: 620px;
  }

  .heading-split,
  .results-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-card:nth-child(3n + 2) {
    margin-top: 0;
  }

  .treatment-card:nth-child(even) {
    margin-top: 25px;
  }

  .journey-line {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 650px;
    margin: 55px auto 0;
  }

  .journey-line::before {
    top: 20px;
    bottom: 50px;
    left: 28px;
    width: 1px;
    height: auto;
  }

  .journey-line li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 24px;
    text-align: left;
  }

  .journey-line li > span {
    margin-bottom: 38px;
  }

  .journey-line li div {
    padding-top: 7px;
  }

  .journey-line p {
    max-width: none;
    margin-inline: 0;
  }

  .result-panel {
    grid-template-columns: 1fr;
  }

  .result-image {
    height: 460px;
  }

  .result-copy {
    padding: 38px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 610px);
  }

  .technology-layout,
  .faq-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .technology-intro,
  .faq-intro {
    position: static;
  }

  .technology-grid {
    margin-top: 20px;
  }

  .testimonial-card {
    gap: 0 35px;
    padding: 45px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 430px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding: 105px 0 70px;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .social-proof {
    grid-template-columns: 1fr;
  }

  .social-proof div,
  .social-proof div + div {
    padding: 13px 0;
    border-left: 0;
  }

  .social-proof div + div {
    border-top: 1px solid var(--line);
  }

  .social-proof div {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .social-proof strong {
    font-size: 1.4rem;
  }

  .hero-visual {
    padding-right: 0;
  }

  .hero-frame {
    min-height: 460px;
    height: 68vh;
    max-height: 560px;
    border-radius: 120px 120px 22px 22px;
  }

  .floating-seal {
    top: 24px;
    right: -7px;
    width: 110px;
    height: 110px;
  }

  .floating-seal strong {
    font-size: 0.53rem;
  }

  .floating-card {
    bottom: -5px;
    left: 10px;
    min-width: 0;
    max-width: calc(100% - 20px);
    padding: 14px 16px;
  }

  .hero-caption {
    display: none;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card:nth-child(even) {
    margin-top: 0;
  }

  .card-image,
  .treatment-card-tall .card-image {
    height: 280px;
  }

  .result-tabs {
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-width: none;
  }

  .result-tabs::-webkit-scrollbar {
    display: none;
  }

  .result-image {
    height: 360px;
  }

  .result-copy {
    padding: 28px;
  }

  .result-copy > span {
    margin-bottom: 14px;
  }

  .about-visual {
    padding-left: 20px;
  }

  .about-image {
    height: 510px;
    border-radius: 120px 18px 120px 18px;
  }

  .about-number {
    right: -8px;
    width: 145px;
    height: 145px;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid div:nth-child(odd),
  .credential-grid div:nth-child(even) {
    padding: 16px 0;
    border-left: 0;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .tech-card,
  .tech-card:nth-child(even) {
    min-height: 190px;
    transform: none;
  }

  .tech-card:nth-child(even):hover {
    transform: translateY(-6px);
  }

  .testimonial-heading {
    align-items: flex-start;
  }

  .carousel-controls {
    flex: 0 0 auto;
  }

  .carousel-button {
    width: 42px;
    height: 42px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "person"
      "stars"
      "quote";
    gap: 24px;
    padding: 34px 26px;
    text-align: center;
  }

  .testimonial-top img {
    width: 110px;
    height: 110px;
    margin-bottom: 12px;
  }

  blockquote {
    font-size: 1.55rem;
  }

  .faq-item button span {
    font-size: 1.05rem;
  }

  .faq-answer p {
    padding-right: 15px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .assessment-form {
    padding: 26px 20px;
  }

  .contact-details {
    padding: 30px 24px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float > a {
    width: 56px;
    height: 56px;
  }

  .whatsapp-bubble {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
