:root {
  --green: #1f2513;
  --green-deep: #171c0d;
  --green-soft: #718257;
  --sage: #e8efe3;
  --sage-light: #f4f8f1;
  --nude: #d9b995;
  --cream: #fffdf8;
  --white: #ffffff;
  --text-soft: rgba(31, 37, 19, 0.64);
  --border: rgba(31, 37, 19, 0.12);
  --container: 1280px;
  --shadow: 0 22px 60px rgba(31, 37, 19, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--green);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 253, 249, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: auto;
  height: 56px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(31, 37, 19, 0.72);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.5rem;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--green-soft);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 38px rgba(31, 37, 19, 0.16);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button:focus-visible {
  background: #2b3218;
  box-shadow: 0 20px 44px rgba(31, 37, 19, 0.22);
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--small {
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  box-shadow: none;
}

.button--outline {
  color: var(--green);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--green);
  border-color: rgba(31, 37, 19, 0.3);
  background: var(--white);
  box-shadow: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fbfdf9;
}

.hero-bg {
  --green-x: 0px;
  --green-y: 0px;
  --nude-x: 0px;
  --nude-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(128deg, #fff 0%, #fbfdf9 48%, #f3f8f0 100%);
}

.hero-orb {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-orb--green {
  top: -38%;
  right: -20%;
  width: min(76vw, 980px);
  background: rgba(188, 211, 178, 0.42);
  transform: translate3d(var(--green-x), var(--green-y), 0);
}

.hero-orb--nude {
  bottom: -53%;
  left: -20%;
  width: min(64vw, 820px);
  background: rgba(221, 203, 180, 0.2);
  transform: translate3d(var(--nude-x), var(--nude-y), 0);
}

.hero-grid {
  display: grid;
  min-height: calc(100vh - 80px);
  align-items: center;
  gap: 3rem;
  padding-block: 3.5rem;
  grid-template-columns: 1.02fr 0.98fr;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 2rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(31, 37, 19, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 4px 18px rgba(31, 37, 19, 0.05);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nude);
}

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

.hero h1 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 7.3vw, 6.7rem);
  font-weight: 650;
  line-height: 0.89;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--green-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-description {
  max-width: 580px;
  margin: 2rem 0 0;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.8rem;
  margin-top: 2.25rem;
  color: rgba(31, 37, 19, 0.66);
  font-size: 0.8rem;
  font-weight: 650;
}

.hero-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-details b {
  color: var(--green-soft);
}

.product-column {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  text-align: center;
}

.product-frame {
  display: grid;
  min-height: min(70vh, 640px);
  place-items: center;
}

.product-image {
  width: min(92%, 560px);
  user-select: none;
  mix-blend-mode: multiply;
  clip-path: polygon(0 0, 74% 0, 74% 24%, 82% 28%, 91.5% 38%, 91.5% 73%, 90% 79%, 88% 83%, 85% 86.5%, 80% 87.7%, 74% 89.5%, 66% 91.2%, 57% 92.3%, 48% 92.7%, 39% 92.3%, 32% 91.5%, 26% 90.2%, 21% 88%, 17% 84.7%, 14.5% 80%, 13% 74%, 13% 47%, 0 42%);
}

.product-caption {
  margin: -2.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-caption span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(31, 37, 19, 0.57);
  font-size: 0.72rem;
  font-weight: 500;
}

.section {
  padding-block: 7rem;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: 1fr 0.68fr;
}

.section-heading h2,
.clinic-copy h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
}

.solution-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1.65rem;
  background: var(--cream);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.solution-card:hover {
  border-color: rgba(31, 37, 19, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 185, 149, 0.34);
  font-size: 1.3rem;
}

.card-top small {
  color: rgba(31, 37, 19, 0.35);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.solution-card h3 {
  margin: 3rem 0 1rem;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.solution-card p {
  color: rgba(31, 37, 19, 0.6);
  font-size: 0.95rem;
  line-height: 1.65;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.solution-card a span {
  transition: transform 180ms ease;
}

.solution-card a:hover span {
  transform: translateX(4px);
}

.clinic {
  background: #edf3e9;
}

.clinic-grid {
  display: grid;
  align-items: center;
  gap: 5rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.clinic-visual {
  position: relative;
}

.clinic-visual > img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  border-radius: 2rem;
  object-fit: cover;
}

.care-note {
  position: absolute;
  right: -1.5rem;
  bottom: -1.7rem;
  max-width: 240px;
  padding: 1.4rem;
  border-radius: 1.3rem;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.care-note span {
  color: var(--nude);
  font-size: 1.8rem;
}

.care-note p {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.clinic-description {
  max-width: 700px;
  margin: 1.8rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.clinic-features {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.2rem;
  padding-block: 1.8rem;
  border-block: 1px solid var(--border);
  grid-template-columns: repeat(2, 1fr);
}

.clinic-features strong,
.clinic-features span {
  display: block;
}

.clinic-features strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.clinic-features span {
  margin-top: 0.3rem;
  color: rgba(31, 37, 19, 0.54);
  font-size: 0.9rem;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  margin-top: 2.2rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.journey {
  color: var(--white);
  background: var(--green);
}

.journey-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.75fr 1.25fr;
}

.section-kicker--light {
  color: var(--nude);
}

.journey h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.journey-list {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.journey-list article {
  display: grid;
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 50px 1fr 1.2fr;
}

.journey-list article:last-child {
  border-bottom: 0;
}

.journey-list small {
  color: var(--nude);
  font-weight: 800;
}

.journey-list h3,
.journey-list p {
  margin: 0;
}

.journey-list h3 {
  font-size: 1.15rem;
}

.journey-list p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.65;
}

.final-cta {
  text-align: center;
  background: var(--sage);
}

.final-cta h2 {
  max-width: 940px;
  margin: 1.2rem auto 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.final-cta p:not(.section-kicker) {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.final-cta .button {
  margin-top: 2.25rem;
}

.site-footer {
  color: var(--white);
  background: var(--green);
}

.footer-main {
  display: grid;
  gap: 3.5rem;
  padding-block: 5rem 4rem;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-brand {
  max-width: 430px;
}

.footer-brand img {
  width: auto;
  height: 80px;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-main > div:last-child a {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand > a {
  display: inline-flex;
  gap: 0.45rem;
  margin-top: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--nude);
  color: var(--white);
  font-weight: 750;
}

.footer-main h3 {
  margin-bottom: 1.2rem;
  color: var(--nude);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  display: grid;
  align-items: center;
  gap: 1.5rem;
  padding-block: 1.5rem 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1fr auto 1fr;
}

.footer-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.footer-bottom > p:last-child {
  text-align: right;
}

.conecta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.conecta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nude);
  box-shadow: 0 0 8px rgba(217, 185, 149, 0.9);
}

.conecta b {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.conecta strong {
  color: var(--white);
  letter-spacing: 0.16em;
}

.conecta:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

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

@media (max-width: 1000px) {
  .desktop-nav,
  .desktop-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--green);
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-menu {
    position: fixed;
    inset: 80px 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: #f7f5ef;
    box-shadow: 0 24px 50px rgba(31, 37, 19, 0.13);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border: 0;
  }

  .mobile-menu small {
    color: var(--green-soft);
    font-size: 0.7rem;
  }

  .hero-grid,
  .section-heading,
  .clinic-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 5rem 3.5rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .product-column {
    margin-inline: auto;
  }

  .product-frame {
    min-height: 560px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 320px;
  }

  .clinic-grid {
    gap: 4rem;
  }

  .clinic-visual {
    max-width: 620px;
  }

  .journey-grid {
    gap: 3rem;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    height: 48px;
  }

  .mobile-menu {
    inset-block-start: 72px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .hero-grid {
    gap: 1.5rem;
    padding-top: 3.5rem;
  }

  .eyebrow {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-frame {
    min-height: 430px;
  }

  .product-image {
    width: 100%;
  }

  .product-caption {
    margin-top: -1.2rem;
  }

  .section {
    padding-block: 5rem;
  }

  .section-heading h2,
  .clinic-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .solution-card {
    min-height: 340px;
    padding: 1.55rem;
  }

  .clinic-grid {
    gap: 4.5rem;
  }

  .care-note {
    right: -0.25rem;
    bottom: -2rem;
    max-width: 220px;
  }

  .clinic-features {
    grid-template-columns: 1fr;
  }

  .journey-list article {
    gap: 0.7rem;
    grid-template-columns: 40px 1fr;
  }

  .journey-list article p {
    grid-column: 2;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-items: start;
  }

  .footer-bottom > p:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

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