@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("assets/fonts/FiraSans/FiraSans-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fontjek";
  src: url("assets/fonts/Fontjek.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --base: #ADB19F;
  --base-light: #BEC2B3;
  --base-deep: #9CA18E;
  --accent: #5F7258;
  --ink: #050505;
  --text: #2B3D1F;
  --muted: #536147;
  --line: rgba(43, 61, 31, 0.28);
  --white-soft: rgba(255, 255, 255, 0.36);
  --shadow: 0 28px 70px rgba(5, 5, 5, 0.12);
  --max: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --brand-pattern: url("assets/images/ogawa-editorial-pattern.svg");
  --intro-height: clamp(500px, 60svh, 560px);
  --flow-section: clamp(48px, 5.4vw, 72px);
  --flow-section-tight: clamp(28px, 3.4vw, 42px);
  --flow-gap: clamp(14px, 1.6vw, 22px);
  --flow-gap-lg: clamp(24px, 3vw, 40px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background-color: var(--base);
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 360px 360px;
  background-position: center top;
  color: var(--text);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: none;
}

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

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

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

::selection {
  background: var(--ink);
  color: var(--base);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--pad) 0;
  background: transparent;
  transition: padding .32s var(--ease);
}

.nav-shell {
  width: min(var(--max), 100%);
  min-height: 68px;
  margin: 0 auto;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 28px);
  border: 1px solid transparent;
  background-color: rgba(173, 177, 159, .9);
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 360px 360px;
  backdrop-filter: blur(18px);
  transition: width .32s var(--ease), min-height .32s var(--ease), padding .32s var(--ease), border-color .32s var(--ease), border-radius .32s var(--ease), box-shadow .32s var(--ease), background-color .32s var(--ease);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.site-header.is-scrolled .nav-shell {
  width: min(1120px, 100%);
  min-height: 56px;
  padding: 6px 10px;
  border-color: rgba(5, 5, 5, .18);
  border-radius: 999px;
  background-color: rgba(173, 177, 159, .72);
  box-shadow: 0 18px 50px rgba(5, 5, 5, .12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,.18);
  transition: width .32s var(--ease), height .32s var(--ease);
}

.site-header.is-scrolled .brand-mark {
  width: 42px;
  height: 42px;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .08em;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.brand-text span:nth-child(2) {
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, .34);
  color: var(--ink);
}

.site-nav .button {
  min-height: 44px;
  margin-left: 6px;
  padding: 0 18px;
  color: var(--base);
}

.site-nav .button:hover,
.site-nav .button.is-active {
  background: var(--ink);
  color: var(--base);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: var(--ink);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--ink);
  background: rgba(255, 255, 255, .32);
}

.menu-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s var(--ease);
}

.menu-icon-path {
  transition: stroke-dasharray .3s var(--ease), stroke-dashoffset .3s var(--ease);
}

.menu-icon-path-primary {
  stroke-dasharray: 12 63;
}

.site-header.is-open .menu-icon {
  transform: rotate(-45deg);
}

.site-header.is-open .menu-icon-path-primary {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--ink);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--base);
}

.page-shell {
  overflow-x: hidden;
}

.section {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: var(--flow-section) 0;
}

.section-paper {
  position: relative;
  isolation: isolate;
}

.section-paper::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, .72);
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 360px 360px;
  border-top: 1px solid rgba(43, 61, 31, .14);
  border-bottom: 1px solid rgba(43, 61, 31, .14);
}

.section[id],
.split-band[id] {
  scroll-margin-top: 94px;
}

.intro-flow {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow-x: hidden;
}

.intro-flow > .section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.intro-flow .hero {
  position: relative;
  top: auto;
  z-index: 1;
  min-height: var(--intro-height);
  align-items: stretch;
}

.story-lift-card {
  position: relative;
  z-index: 8;
  min-height: auto;
  margin-top: 0;
  padding-top: clamp(18px, 2.4vw, 32px);
  padding-bottom: clamp(14px, 2vw, 28px);
  overflow: visible;
}

.story-lift-inner {
  position: relative;
  min-height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--base);
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 360px 360px;
  box-shadow: none;
  transform: none !important;
  transition: none;
}

.program-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ADB19F;
  color: var(--text);
  border-top: 1px solid rgba(43, 61, 31, .24);
  border-bottom: 1px solid rgba(43, 61, 31, .24);
}

.program-flow::before {
  content: none;
}

.program-flow::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -12%;
  top: clamp(390px, 32vw, 560px);
  width: 124%;
  height: 78%;
  border-radius: 48% 52% 0 0 / 12% 15% 0 0;
  background: rgba(255, 255, 255, .94);
  transform: rotate(-2.5deg);
  transform-origin: center top;
  pointer-events: none;
}

.program-flow > .section,
.program-flow > .split-band {
  position: relative;
  z-index: 1;
}

.program-flow .planning-section {
  padding-top: clamp(24px, 3.2vw, 42px);
}

.hero {
  min-height: var(--intro-height);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-stage {
  position: relative;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  min-height: var(--intro-height);
  padding: 0 0 96px;
  overflow: visible;
}

.hero-stage::before {
  content: none;
}

.hero-stage .hero-side,
.hero-stage .hero-copy,
.hero-stage .hero-circle,
.hero-stage .hero-portrait {
  opacity: 0;
}

.hero-stage.is-visible .hero-side,
.hero-stage.is-visible .hero-copy {
  animation: heroFadeUp .72s var(--ease) forwards;
}

.hero-stage.is-visible .hero-side-left {
  animation-delay: .72s;
}

.hero-stage.is-visible .hero-copy {
  animation-delay: .9s;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  left: auto;
  right: 0;
  bottom: clamp(52px, 7vh, 72px);
  width: clamp(260px, 25vw, 360px);
  text-align: left;
  transform: none;
}

.hero-side {
  position: absolute;
  z-index: 4;
  width: min(220px, 24%);
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.hero-side-left {
  left: 0;
  top: clamp(180px, 28vh, 252px);
  text-align: left;
}

.hero-side-right {
  display: none;
}

.hero-title,
.page-title {
  margin: 0;
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  max-width: none;
}

.hero-title em {
  display: inline-block;
  font-size: 1em;
}

.hero-title em,
.page-title em,
.accent-word {
  color: var(--accent);
  font-style: normal;
}

.hero-lede,
.page-lede {
  width: 100%;
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 18px;
}

.hero-portrait {
  position: absolute;
  left: 51%;
  bottom: -18px;
  z-index: 3;
  height: clamp(430px, 56vh, 525px);
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 50%;
  width: clamp(260px, 25vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  box-shadow: none;
  transform: translateY(-50%) scale(.82);
  pointer-events: none;
  overflow: visible;
}

.hero-circle img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
  image-rendering: auto;
}

.hero-stage.is-visible .hero-circle {
  animation: heroCircleIn .88s cubic-bezier(.22, 1, .36, 1) .18s forwards;
}

.hero-stage.is-visible .hero-portrait {
  animation: heroPortraitIn .92s cubic-bezier(.22, 1, .36, 1) .28s forwards;
}

.about-layout {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(440px, .96fr) minmax(420px, .78fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
}

.about-heading {
  position: relative;
  top: auto;
  grid-column: 1 / -1;
  margin-bottom: clamp(4px, 1vw, 12px);
}

.about-heading .section-kicker {
  margin-bottom: 14px;
  max-width: none;
  font-size: clamp(44px, 5.4vw, 78px);
  line-height: .94;
}

.about-heading .section-title {
  max-width: none;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: .9;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(43, 61, 31, .7), 0 5px 18px rgba(43, 61, 31, .25);
  -webkit-text-stroke: .3px rgba(43, 61, 31, .38);
}

.about-photo-card {
  width: min(100%, 520px);
  margin: 0;
  aspect-ratio: 1.08 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 20px 42px rgba(5, 5, 5, .12);
}

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

.about-copy .text-block {
  border-top: 0;
  padding-top: 0;
}

.hero-portrait img {
  width: auto;
  height: 100%;
  max-width: none;
  filter: drop-shadow(0 22px 28px rgba(5, 5, 5, .14));
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroCircleIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(.82);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes heroPortraitIn {
  from {
    opacity: 0;
    transform: translate3d(-50%, 42px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

.marquee-band {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: 100vw;
  min-height: clamp(28px, 3vw, 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: #223d13;
  color: #fff;
  box-shadow: 0 -1px 0 rgba(5, 5, 5, .08), 0 1px 0 rgba(5, 5, 5, .08);
}

.marquee-track {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  transform: none;
  animation: none;
}

.marquee-track span {
  display: block;
  padding: clamp(7px, .8vw, 10px) clamp(22px, 4vw, 52px);
  color: inherit;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.marquee-track span:not(:first-child) {
  display: none;
}

@keyframes marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}

.hero-media,
.photo-frame {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255,255,255,.24), rgba(5,5,5,.02)),
    var(--base-light);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media::before,
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(5, 5, 5, .2);
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -84px;
  bottom: -84px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

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

.media-placeholder img {
  width: min(300px, 64%);
  opacity: .92;
  mix-blend-mode: multiply;
}

.media-photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px 28px 0;
}

.media-photo img {
  width: min(440px, 92%);
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(5, 5, 5, .14));
}

.media-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.editorial-number {
  font-family: "Fontjek", "Fira Sans", sans-serif;
  color: #fff;
  font-size: clamp(92px, 13vw, 172px);
  line-height: .72;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(520px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.488rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: 0;
}

.primary-section-label {
  margin: 0 0 clamp(18px, 2.4vw, 30px);
  max-width: 16ch;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: none;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 2.074rem;
  font-weight: 600;
  line-height: 1.04;
  max-width: 17ch;
}

.highlight-phrase {
  color: #fff;
  font-family: "Fontjek", "Fira Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .9;
  text-shadow: 0 2px 0 rgba(43, 61, 31, .32);
  -webkit-text-stroke: .25px rgba(43, 61, 31, .18);
}

.hero-lede.highlight-phrase {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: .95;
}

.wide-title {
  max-width: 14ch;
}

.long-copy .section-title {
  margin-bottom: 28px;
  max-width: 16ch;
}

.section-text {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.36;
}

.planning-section {
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.planning-section .section-kicker,
.planning-section .section-title {
  color: var(--text);
}

.planning-heading {
  display: grid;
  grid-template-columns: minmax(220px, .4fr) minmax(480px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.planning-heading .section-kicker {
  margin-bottom: 0;
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: none;
}

.planning-heading .section-title {
  max-width: 15ch;
  color: #fff;
  text-shadow: 0 2px 0 rgba(43, 61, 31, .72), 0 5px 18px rgba(43, 61, 31, .28);
  -webkit-text-stroke: .35px rgba(43, 61, 31, .42);
}

.planning-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  padding: 6px 4px 34px;
  perspective: 1400px;
}

.planning-card {
  min-height: 220px;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid rgba(43, 61, 31, .24);
  border-radius: 15px;
  background: #f5f5f0;
  box-shadow: 0 27px 0 -15px rgba(43, 61, 31, .2), 0 34px 45px -28px rgba(5, 5, 5, .42);
  transform-style: preserve-3d;
  transition: transform .36s var(--ease), box-shadow .36s var(--ease);
}

.planning-card:nth-child(1) {
  transform: rotateY(-6deg) rotateX(2deg);
}

.planning-card:nth-child(2) {
  transform: translateY(26px) rotateY(-2deg) rotateX(2deg);
}

.planning-card:nth-child(3) {
  transform: rotateY(2deg) rotateX(2deg);
}

.planning-card:nth-child(4) {
  transform: translateY(26px) rotateY(6deg) rotateX(2deg);
}

.planning-card:hover {
  transform: translateY(-8px) rotateY(0) rotateX(0);
  box-shadow: 0 30px 0 -17px rgba(43, 61, 31, .22), 0 42px 54px -30px rgba(5, 5, 5, .48);
}

.planning-card i {
  display: block;
  width: 38px;
  height: 2px;
  margin: 0 0 clamp(48px, 5vw, 58px);
  background: var(--accent);
}

.planning-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.text-block h2.highlight-phrase,
.text-block h3.highlight-phrase,
.cta-inner h2.highlight-phrase,
.split-band .highlight-phrase {
  color: #fff;
  font-family: "Fontjek", "Fira Sans", sans-serif;
  font-weight: 400;
}

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

.method-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.method-row strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.method-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
}

.method-row p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 620px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.feature-card,
.service-card,
.plan-card {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, .32);
}

.section-paper .feature-card {
  background: rgba(245, 245, 240, .92);
}

.feature-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 34px);
  transform: translateY(0) scale(1);
  transition: transform .34s cubic-bezier(.2, .8, .2, 1), background-color .34s var(--ease), box-shadow .34s var(--ease);
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -62px;
  width: 210px;
  height: 210px;
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 210px 210px;
  opacity: .42;
  transform: rotate(-8deg);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.025);
  background-color: rgba(255, 255, 255, .46);
  box-shadow: 0 18px 42px rgba(5, 5, 5, .1);
}

.feature-card span,
.service-card span,
.plan-card > span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.feature-card h3,
.service-card h2,
.plan-card h3 {
  position: relative;
  z-index: 1;
  margin: clamp(24px, 3vw, 42px) 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: .94;
}

.feature-card p,
.service-card p,
.plan-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
}

#objetivos {
  padding-top: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(26px, 3vw, 38px);
}

#objetivos.section-paper::before {
  top: 0;
  bottom: 0;
}

#objetivos .feature-cards {
  max-width: min(1160px, 100%);
  margin: 0 auto;
}

.services-section {
  padding-top: clamp(54px, 8vw, 96px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.service-card {
  min-height: 430px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 0;
}

.service-card:last-child {
  border-right: 1px solid var(--ink);
}

.service-card p + p {
  margin-top: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(173, 177, 159, .08);
}

.plan-card h3 {
  color: var(--base);
  text-transform: uppercase;
  font-size: 24px;
  overflow-wrap: normal;
}

.plan-card p {
  color: rgba(245, 245, 240, .86);
  font-size: 22px;
}

.plan-card .button {
  margin-top: auto;
  min-width: 112px;
  background: var(--base);
  color: var(--ink);
}

.plan-card.featured {
  background: var(--base);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured > span {
  color: var(--ink);
}

.plan-card.featured .button {
  background: var(--ink);
  color: var(--base);
}

.plans-section .plan-grid {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.plans-section .plan-card {
  min-height: 260px;
  background: var(--ink);
}

.plans-section .plan-card h3 {
  font-size: clamp(34px, 4vw, 58px);
}

.plans-section .plan-card p {
  font-size: clamp(24px, 2.8vw, 34px);
}

.plans-section .plan-card.featured {
  background-color: var(--base-light);
  background-image: var(--brand-pattern);
  background-repeat: repeat;
  background-size: 360px 360px;
}

.plans-section {
  position: relative;
  padding-top: clamp(54px, 7vw, 94px);
  padding-bottom: clamp(64px, 8vw, 110px);
}

.plans-section.section-paper::before {
  background-color: #223d13;
  background-image: none;
  border-color: rgba(209, 165, 71, .3);
}

.plans-section::after {
  content: none;
}

.plans-section .primary-section-label {
  max-width: none;
  color: #d1a547;
  font-size: clamp(38px, 5vw, 68px);
  text-align: center;
}

.plans-section .wide-title {
  max-width: none;
  color: #f5f1e7;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 500;
  text-align: center;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.plans-section .plan-grid {
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(54px, 6vw, 78px);
  align-items: stretch;
}

.plans-section .plan-card {
  position: relative;
  min-height: 360px;
  padding: clamp(24px, 2.5vw, 32px);
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(209, 165, 71, .5);
  border-radius: 9px;
  background: #fbfaf6;
  color: #223d13;
  text-align: center;
  box-shadow: 0 28px 52px -34px rgba(0, 0, 0, .72);
}

.plans-section .plan-card::after {
  content: none;
}

.plans-section .plan-card.featured {
  transform: translateY(-18px);
  border: 2px solid #d1a547;
  background-color: #fbfaf6;
  background-image: none;
  color: #223d13;
  box-shadow: 0 36px 58px -28px rgba(0, 0, 0, .72);
}

.plans-section .plan-card.featured::after {
  content: none;
}

.plans-section .plan-tag {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 27px;
  padding: 6px 10px;
  border: 1px solid rgba(209, 165, 71, .64);
  border-radius: 999px;
  color: #b88726;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.plans-section .featured .plan-tag {
  margin-top: calc(clamp(24px, 2.5vw, 32px) * -1);
  padding: 9px 24px;
  border: 0;
  border-radius: 0 0 9px 9px;
  background: #d1a547;
  color: #223d13;
}

.plans-section .plan-card h3 {
  margin: clamp(32px, 4vw, 44px) 0 8px;
  color: #223d13;
  font-size: clamp(38px, 4vw, 56px);
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: none;
}

.plans-section .plan-card > p:not(.plan-ideal) {
  margin: 0 0 18px;
  color: #223d13;
  font-size: 24px;
  font-weight: 600;
}

.plans-section .plan-ideal {
  min-height: 0;
  margin: 0 0 22px;
  color: #6f6b61;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plans-section .featured h3,
.plans-section .featured > p:not(.plan-ideal),
.plans-section .featured .plan-ideal {
  color: #223d13;
}

.plan-includes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(95, 114, 88, .2);
  border-bottom: 1px solid rgba(95, 114, 88, .2);
  list-style: none;
}

.featured .plan-includes {
  border-color: rgba(255, 255, 255, .22);
}

.plan-includes li {
  position: relative;
  padding-left: 19px;
  font-size: 14px;
  font-weight: 600;
}

.plan-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.featured .plan-includes li::before {
  background: #fff;
}

.plans-section .plan-card .button {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid #223d13;
  background: #223d13;
  color: #fbfaf6;
}

.plans-section .plan-card .button::after {
  content: "→";
  margin-left: 18px;
  font-size: 20px;
}

.plans-section .plan-card.featured .button {
  border-color: #d1a547;
  background: #223d13;
  color: #fbfaf6;
}

.investment-section {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
}

.investment-section h2 {
  color: var(--accent);
  font-size: clamp(32px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.045em;
}

.investment-section .highlight-phrase {
  color: var(--accent);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 900;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.investment-section .primary-section-label {
  max-width: none;
}

.hand-circle {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin: 0 .08em;
  padding: 0 .16em;
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.hand-circle::before,
.hand-circle::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 2px solid #c3262d;
  border-radius: 48% 54% 46% 52% / 56% 45% 58% 44%;
}

.hand-circle::before {
  inset: -.16em -.22em -.12em;
  transform: rotate(-3deg);
}

.hand-circle::after {
  inset: -.1em -.18em -.18em -.26em;
  border-width: 1.5px;
  opacity: .72;
  transform: rotate(2deg);
}

.investment-section .primary-section-label,
.payment-label {
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: var(--accent);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.investment-section .text-block > .primary-section-label,
.investment-section .text-block > .payment-label {
  min-height: 1.92em;
  display: flex;
  align-items: flex-start;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
  color: var(--accent);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-style: normal;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.testimonials-section {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(56px, 7vw, 90px);
}

.testimonials-section.section-paper::before {
  background-color: rgba(173, 177, 159, .38);
  background-image: none;
}

.testimonials-section .primary-section-label {
  color: var(--accent);
}

.testimonials-section .highlight-phrase {
  color: #fff;
  text-shadow: 0 2px 0 rgba(95, 114, 88, .8), 0 5px 18px rgba(43, 61, 31, .24);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.testimonials-heading .section-title {
  max-width: 16ch;
  font-size: clamp(36px, 4.6vw, 66px);
}

.google-review-count {
  min-width: 180px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(95, 114, 88, .28);
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  color: var(--accent);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.google-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.google-review {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(95, 114, 88, .28);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 24px 38px -28px rgba(95, 114, 88, .56);
}

.google-review.is-extra {
  display: none;
}

.google-reviews.is-expanded .google-review.is-extra {
  display: flex;
}

.google-review header {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(95, 114, 88, .18);
}

.google-review header strong,
.google-review header span {
  display: block;
}

.google-review header strong {
  font-size: 16px;
}

.google-review header span {
  margin-top: 3px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.google-review blockquote {
  margin: 24px 0 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.google-review > a {
  margin-top: auto;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.google-review > a:hover {
  text-decoration: underline;
}

.google-reviews-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.google-reviews-actions .button {
  width: auto;
  border-color: #223d13;
  background: #223d13;
  color: #fff;
}

.google-reviews-actions .button:hover {
  border-color: #5f7258;
  background: #5f7258;
  color: #fff;
}

.google-reviews-toggle {
  min-width: min(100%, 360px);
  border-width: 2px;
}

.plans-section > .reveal {
  display: grid;
  gap: 8px;
}

.split-band {
  background: transparent;
  color: var(--text);
  overflow: hidden;
}

.split-band .section {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(420px, .8fr);
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: clamp(16px, 2vw, 26px);
  width: min(var(--max), calc(100% - var(--pad) * 2));
  padding-top: clamp(28px, 3.6vw, 48px);
  padding-bottom: clamp(28px, 3.6vw, 48px);
}

.split-band .section-title,
.split-band .section-kicker {
  color: var(--text);
}

.split-band .section-text {
  color: var(--text);
}

.acompanhamento-layout {
  position: relative;
  align-items: start;
}

.acompanhamento-head {
  grid-column: 1;
  grid-row: 1;
}

.acompanhamento-title {
  max-width: 12ch;
  margin: 0 0 clamp(22px, 3vw, 38px);
  color: var(--text);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.05em;
}

.split-band .acompanhamento-head .highlight-phrase {
  display: grid;
  gap: .45em;
  max-width: 620px;
  margin: 0;
  color: var(--text);
  text-shadow: none;
  -webkit-text-stroke: 0;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-style: normal;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: 0;
}

.acompanhamento-phone {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: clamp(280px, 29vw, 410px);
  margin: 0;
  line-height: 0;
}

.acompanhamento-phone img,
.beyond-consulta img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.acompanhamento-cards {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  width: 100%;
  margin-left: 0;
}

.acompanhamento-card {
  min-height: clamp(128px, 12vw, 156px);
  padding: clamp(16px, 1.8vw, 24px);
  background: #f5f5f0;
  color: var(--ink);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .14);
}

.acompanhamento-card h3 {
  margin: 0 0 10px;
  max-width: 14ch;
  color: var(--ink);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(18px, 1.65vw, 22px);
  font-style: normal;
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}

.acompanhamento-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(12px, .98vw, 13px);
  line-height: 1.35;
}

.beyond-consulta {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(14px, 2vw, 20px);
  align-items: end;
  margin-top: 0;
}

.beyond-consulta h3 {
  max-width: 320px;
  margin: 0 0 8px;
  color: var(--text);
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-style: normal;
  font-weight: 900;
  line-height: .94;
  text-transform: uppercase;
}

.beyond-consulta p {
  max-width: 330px;
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  line-height: 1.32;
}

.beyond-consulta img {
  justify-self: end;
  width: clamp(300px, 31vw, 470px);
  max-height: 650px;
  margin-bottom: calc(clamp(28px, 3.6vw, 48px) * -1);
  object-fit: contain;
  object-position: center bottom;
}

.journey {
  display: grid;
  gap: 0;
  border-left: 1px solid rgba(245, 245, 240, .5);
}

.journey-item {
  position: relative;
  padding: 0 0 24px 30px;
}

.journey-item:last-child {
  padding-bottom: 0;
}

.journey-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
}

.journey-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.1;
}

.journey-item p {
  margin: 0;
  color: rgba(245, 245, 240, .82);
  font-size: 15px;
  line-height: 1.45;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) 1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.quote-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.quote-mark img {
  width: 72%;
  mix-blend-mode: multiply;
}

.large-copy {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4.8vw, 74px);
  font-weight: 900;
  line-height: 1;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(340px, .72fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.location-section.section-paper::before {
  background-color: rgba(255, 255, 255, .72);
  background-image: var(--brand-pattern);
}

.location-visual {
  position: relative;
  min-height: clamp(360px, 38vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(34, 61, 19, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, .5), transparent 30%),
    #adb19f;
  box-shadow: 0 28px 58px -38px rgba(5, 5, 5, .55);
}

.location-visual::before,
.location-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(34, 61, 19, .17);
  border-radius: 50%;
}

.location-visual::before {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -74px;
}

.location-visual::after {
  width: 180px;
  height: 180px;
  top: -48px;
  right: -32px;
}

.location-map::before,
.location-map::after {
  content: none;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

.map-road {
  position: absolute;
  display: block;
  height: 18px;
  border-top: 2px solid rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(34, 61, 19, .18);
  border-radius: 50%;
}

.map-road-one {
  width: 125%;
  left: -15%;
  top: 31%;
  transform: rotate(-12deg);
}

.map-road-two {
  width: 105%;
  left: 5%;
  top: 63%;
  transform: rotate(17deg);
}

.map-road-three {
  width: 82%;
  left: 20%;
  top: 47%;
  transform: rotate(72deg);
}

.location-pin {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 45%;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 61, 19, .25);
  border-radius: 50%;
  background: #d1a547;
  color: #223d13;
  box-shadow: 0 18px 38px rgba(34, 61, 19, .24);
  transform: translate(-50%, -50%);
}

.location-pin svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}

.location-city {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: calc(45% + 58px);
  padding: 8px 13px;
  border-radius: 999px;
  background: #223d13;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.location-copy .primary-section-label {
  max-width: none;
  margin-bottom: 16px;
  color: #5f7258;
  font-size: clamp(38px, 4.8vw, 66px);
}

.location-copy .section-title {
  max-width: 14ch;
  margin-bottom: 26px;
  color: #223d13;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
}

.location-copy address {
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 23px);
  font-style: normal;
  line-height: 1.5;
}

.location-copy .button {
  border-color: #223d13;
  background: #223d13;
  color: #fff;
}

.cta-band {
  border-top: 0;
  border-bottom: 0;
  padding-top: var(--flow-section);
  padding-bottom: var(--flow-section);
}

.cta-band.section-paper::before {
  background-color: #223d13;
  background-image: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--flow-gap-lg);
  align-items: end;
}

.cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 92px);
  line-height: .92;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.cta-inner p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
}

.cta-inner .button {
  border-color: #fff;
  background: #fff;
  color: #223d13;
}

.lgpd-consent {
  position: fixed;
  z-index: 90;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: rgba(34, 61, 19, .96);
  color: #fff;
  box-shadow: 0 24px 70px rgba(5, 5, 5, .34);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 34px));
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.lgpd-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.lgpd-consent-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.lgpd-consent-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.45;
}

.lgpd-consent-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lgpd-consent-actions a {
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.lgpd-consent-actions button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #223d13;
  font-family: "Fira Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.lgpd-consent-actions button:hover {
  transform: translateY(-2px);
  background: #adb19f;
  color: #050505;
}

.button.js-whatsapp {
  border-color: #223d13;
  background: #223d13;
  color: #fff;
  box-shadow: 0 12px 28px -18px rgba(5, 5, 5, .58);
}

.button.js-whatsapp:hover {
  border-color: #5f7258;
  background: #5f7258;
  color: #fff;
}

.page-hero {
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(56px, 8vw, 92px);
  border-bottom: 1px solid var(--line);
}

.page-title {
  max-width: 12ch;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--flow-gap-lg);
}

.text-block {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.text-block h2:not(.section-title),
.text-block h3:not(.section-title) {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.text-block p,
.text-block li {
  color: var(--text);
}

.text-block ul {
  margin: 0;
  padding-left: 18px;
}

.photo-frame {
  min-height: 500px;
}

.portrait-frame .media-photo img {
  width: min(470px, 96%);
}

.long-copy p {
  margin: 0 0 17px;
  font-size: 17px;
  line-height: 1.62;
}

.about-copy .long-copy p:first-child {
  margin-bottom: 24px;
  color: #203516;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.4;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--ink);
  background: rgba(255,255,255,.16);
}

.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-line strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 22px;
}

.site-footer {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 0;
  display: grid;
  grid-template-columns: minmax(190px, .45fr) 1fr minmax(160px, auto);
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #223d13;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-brand span {
  display: grid;
  gap: 4px;
}

.footer-brand small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  opacity: .88;
  transition: color .22s var(--ease), opacity .22s var(--ease);
}

.footer-nav a:hover {
  color: #050505;
  opacity: 1;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.footer-credit img {
  width: 24px;
  height: 24px;
  max-height: 24px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: .96;
}

.footer-credit:hover {
  color: var(--green);
  opacity: .85;
}

.footer-legal {
  justify-self: end;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(18px, 2.2vw, 32px);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid #d1a547;
  border-radius: 50%;
  background: #223d13;
  color: #fff;
  box-shadow: 0 16px 34px rgba(5, 5, 5, .24);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(5, 5, 5, .3);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.legal-page-body {
  min-height: 100vh;
  background: #f7f8f5;
  background-image: none;
  color: #26351d;
}

.legal-page-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(22px, calc((100vw - 1210px) / 2));
  border-bottom: 3px solid #223d13;
  background: rgba(247, 248, 245, .94);
  backdrop-filter: blur(14px);
}

.legal-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #223d13;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.legal-page-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.legal-page-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.legal-page-nav a {
  color: #1f641c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-page-main {
  width: min(1210px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0 clamp(64px, 8vw, 108px);
}

.legal-page-document {
  max-width: 1040px;
  color: #344255;
}

.legal-page-eyebrow {
  margin: 0 0 12px;
  color: #5f7258;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-page-document h1 {
  margin: 0 0 18px;
  color: #1976d2;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.legal-page-updated {
  margin: 0 0 28px;
  color: #5f7258;
  font-size: 14px;
  font-weight: 700;
}

.legal-page-document h2 {
  margin: 32px 0 14px;
  color: #1976d2;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 900;
  line-height: 1.18;
}

.legal-page-document p {
  margin: 0 0 16px;
  color: #344255;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.48;
}

.legal-page-document strong {
  color: #243a18;
  font-weight: 900;
}

.legal-page-document ul {
  display: grid;
  gap: 4px;
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.legal-page-document li {
  color: #344255;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.42;
}

.legal-page-document li::before {
  content: "• ";
  color: #1976d2;
  font-weight: 900;
}

.legal-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 61, 19, .2);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 880px) {
  :root {
    --intro-height: 600px;
  }

  .nav-shell {
    min-height: 66px;
    border-color: rgba(5, 5, 5, .14);
    border-radius: 999px;
    padding: 7px 10px 7px 12px;
  }

  .site-header.is-scrolled {
    padding-top: 14px;
  }

  .site-header.is-scrolled .nav-shell {
    width: min(var(--max), 100%);
    min-height: 66px;
    padding: 7px 10px 7px 12px;
  }

  .story-lift-card {
    margin-top: 0;
    padding-top: var(--flow-section-tight);
    padding-bottom: var(--flow-section-tight);
  }

  .story-lift-inner {
    padding: clamp(18px, 4vw, 28px);
    border-radius: 0;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    left: calc(var(--pad) * -1);
    right: calc(var(--pad) * -1);
    top: var(--mobile-nav-top, 88px);
    bottom: auto;
    height: calc(100svh - var(--mobile-nav-top, 88px));
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px var(--pad) 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: rgba(173, 177, 159, .96);
    background-image: var(--brand-pattern);
    background-repeat: repeat;
    background-size: 360px 360px;
    box-shadow: none;
    transform: scale(.98);
    transform-origin: top center;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease);
  }

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

  .site-nav a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: clamp(22px, 7vw, 40px);
    font-weight: 900;
    color: var(--ink);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .button {
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin: auto 0 0;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 15px;
  }

  .hero,
  .about-layout,
  .planning-heading,
  .section-grid,
  .split-band .section,
  .quote-section,
  .location-section,
  .cta-inner,
  .two-column,
  .contact-panel,
  .feature-cards,
  .service-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid {
    gap: 14px;
  }

  .plans-section .plan-card.featured {
    transform: none;
  }

  .plans-section .plan-card {
    min-height: 0;
  }

  .testimonials-heading,
  .google-reviews {
    grid-template-columns: 1fr;
  }

  .google-review-count {
    justify-self: start;
  }

  .google-reviews-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .google-reviews-actions .button {
    width: 100%;
  }

  .service-card,
  .service-card:last-child {
    min-height: 0;
    border-right: 1px solid var(--ink);
  }

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

  .hero-stage {
    min-height: var(--intro-height);
    width: calc(100% - (var(--pad) * 2));
    padding: 18px 0 72px;
  }

  .hero-pill {
    top: 18px;
    min-height: 38px;
    padding: 6px 10px;
  }

  .hero-pill span {
    min-height: 24px;
    padding: 0 10px;
    font-size: 11px;
  }

  .hero-circle {
    left: 0;
    top: 45%;
    width: 29%;
  }

  .hero-portrait {
    left: 50%;
    height: clamp(410px, 62vw, 470px);
    max-width: 310px;
    bottom: 18px;
  }

  .hero-side {
    display: none;
  }

  .hero-copy {
    left: auto;
    right: 0;
    bottom: 64px;
    width: 29%;
    text-align: left;
    transform: none;
  }

  .hero-title,
  .page-title {
    font-size: clamp(26px, 4.4vw, 38px);
  }

  .hero-lede,
  .page-lede {
    font-size: clamp(16px, 2vw, 18px);
  }

  .section-title {
    max-width: 14ch;
  }

  .planning-heading {
    align-items: start;
  }

  .planning-heading .section-title {
    max-width: 16ch;
  }

  .about-heading {
    position: static;
    order: 1;
  }

  .about-heading .section-title {
    max-width: 18ch;
    white-space: normal;
  }

  .about-copy {
    order: 3;
  }

  .about-photo-card {
    order: 2;
    width: 100%;
    aspect-ratio: 1.18 / 1;
    border-radius: 16px;
  }

  .acompanhamento-head,
  .acompanhamento-cards,
  .beyond-consulta {
    grid-column: auto;
    grid-row: auto;
  }

  .beyond-consulta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .split-band .acompanhamento-head .highlight-phrase,
  .split-band .section-title {
    max-width: 100%;
  }

  .acompanhamento-phone {
    grid-column: auto;
    grid-row: auto;
    width: min(420px, 72vw);
    justify-self: center;
  }

  .acompanhamento-cards {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
  }

  .acompanhamento-card {
    min-height: auto;
  }

  .beyond-consulta img {
    width: min(470px, 78vw);
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-self: start;
    text-align: left;
  }

  .footer-credit {
    justify-content: flex-start;
  }

  .location-section {
    gap: 28px;
  }

  .location-visual {
    min-height: 340px;
  }

  .investment-section .primary-section-label,
  .payment-label {
    white-space: normal;
  }

  .investment-section .text-block > .primary-section-label,
  .investment-section .text-block > .payment-label {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --intro-height: 500px;
    --flow-section: 38px;
    --flow-section-tight: 28px;
    --flow-gap: 14px;
    --flow-gap-lg: 24px;
  }

  .section {
    padding-top: var(--flow-section);
    padding-bottom: var(--flow-section);
  }

  .section-kicker,
  .primary-section-label {
    margin-bottom: 16px;
  }

  .section-text {
    font-size: 18px;
    line-height: 1.42;
  }

  .brand-text {
    display: none;
  }

  .story-lift-card {
    margin-top: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .story-lift-inner {
    padding: 16px;
    border-radius: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero {
    padding-top: 14px;
    padding-bottom: 0;
  }

  .hero-stage {
    min-height: var(--intro-height);
    width: calc(100% - (var(--pad) * 2));
    padding: 8px 0 64px;
  }

  .hero-pill {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: fit-content;
    margin: 0 auto;
  }

  .hero-circle {
    left: -5%;
    top: 28%;
    width: min(158px, 42vw);
  }

  .hero-portrait {
    left: 72%;
    top: 18px;
    bottom: auto;
    height: 280px;
    max-width: 235px;
  }

  .hero-copy {
    left: 0;
    right: 0;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .hero-title,
  .page-title {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.05;
  }

  .hero-lede,
  .page-lede {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.3;
  }

  .marquee-track span {
    padding: 7px 18px;
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .location-section {
    gap: 24px;
  }

  .location-visual {
    min-height: 280px;
    border-radius: 20px;
  }

  .location-pin {
    width: 72px;
    height: 72px;
  }

  .location-pin svg {
    width: 36px;
    height: 36px;
  }

  .location-copy .primary-section-label {
    font-size: 38px;
  }

  .location-copy .section-title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .planning-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .planning-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 16px;
    padding-right: 3px;
    padding-left: 3px;
  }

  .planning-cards.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .planning-card,
  .planning-card:nth-child(n) {
    min-height: 148px;
    padding: 20px;
    transform: rotateY(-3deg) rotateX(2deg);
  }

  .planning-card i {
    margin-bottom: 32px;
  }

  .planning-card p {
    font-size: 22px;
  }

  .about-photo-card {
    order: 2;
    aspect-ratio: 1.18 / 1;
    border-radius: 14px;
  }

  .about-photo-card img {
    object-position: 52% 28%;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .media-caption {
    display: grid;
  }

  .feature-card,
  .plan-card {
    min-height: 200px;
  }

  .split-band .section {
    row-gap: 22px;
    padding-top: var(--flow-section);
    padding-bottom: var(--flow-section);
  }

  .split-band .acompanhamento-head .highlight-phrase {
    gap: .38em;
    font-size: clamp(24px, 8vw, 34px);
    text-align: center;
  }

  .acompanhamento-phone {
    width: min(280px, 76vw);
  }

  .acompanhamento-card {
    min-height: 0;
    padding: 17px 18px;
  }

  .acompanhamento-card h3 {
    max-width: none;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .beyond-consulta {
    gap: 18px;
    text-align: left;
  }

  .beyond-consulta h3 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .beyond-consulta img {
    width: min(290px, 78vw);
    max-height: 440px;
    margin-bottom: calc(var(--flow-section) * -1);
  }

  .service-card h2,
  .feature-card h3,
  .plan-card h3 {
    font-size: 28px;
  }

  .plans-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .plans-section .plan-grid {
    gap: 16px;
    margin-top: 34px;
  }

  .plans-section .plan-card {
    min-height: 0;
    padding: 22px;
  }

  .plans-section .plan-card.featured {
    order: -1;
  }

  .plans-section .plan-card h3 {
    margin-top: 26px;
    font-size: 38px;
  }

  .plans-section .plan-card > p:not(.plan-ideal) {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .plans-section .plan-ideal {
    min-height: 0;
    margin-bottom: 18px;
  }

  .plan-includes {
    gap: 8px;
    margin-bottom: 22px;
    padding: 16px 0;
  }

  .investment-section,
  .testimonials-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .testimonials-heading {
    gap: 18px;
    margin-bottom: 26px;
  }

  .google-review-count {
    min-width: 0;
    padding: 15px 17px;
    font-size: 18px;
  }

  .google-reviews {
    gap: 14px;
  }

  .google-review {
    min-height: 0;
    padding: 20px;
  }

  .google-review header {
    padding-bottom: 12px;
  }

  .google-review blockquote {
    margin: 16px 0 20px;
    font-size: 15px;
    line-height: 1.48;
  }

  .google-reviews-actions {
    margin-top: 20px;
  }

  .cta-band {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .cta-inner {
    gap: 20px;
  }

  .cta-inner p {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .site-footer {
    padding-top: 30px;
    padding-bottom: 96px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px 14px;
  }

  .footer-nav a {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(43, 61, 31, .14);
  }

  .footer-legal {
    gap: 10px;
  }

  .legal-page-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 22px;
  }

  .legal-page-nav {
    justify-content: flex-start;
  }

  .legal-page-main {
    width: min(100% - 34px, 1210px);
    padding-top: 30px;
  }

  .legal-page-document h1 {
    font-size: 30px;
  }

  .legal-page-document p,
  .legal-page-document li {
    font-size: 15.5px;
    line-height: 1.52;
  }

  .legal-page-actions .button {
    width: 100%;
  }

  .lgpd-consent {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

  .lgpd-consent-copy p {
    font-size: 13px;
  }

  .lgpd-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lgpd-consent-actions a,
  .lgpd-consent-actions button {
    width: 100%;
    text-align: center;
  }

  .program-flow::after {
    content: none;
  }

  .reveal {
    transition-duration: .38s;
  }

}

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

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

  .story-lift-inner {
    transform: none !important;
  }

  .planning-card,
  .planning-card:nth-child(n),
  .planning-card:hover {
    transform: none;
  }

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .hero-stage .hero-side,
  .hero-stage .hero-copy,
  .hero-stage .hero-circle,
  .hero-stage .hero-portrait {
    opacity: 1;
    animation: none !important;
  }
}
