@font-face{font-family:"Montserrat";font-style:normal;font-weight:100 900;font-display:swap;src:url("../fonts/montserrat-latin.woff2") format("woff2")}
@font-face{font-family:"Playfair Display";font-style:normal;font-weight:400 900;font-display:swap;src:url("../fonts/playfair-display-latin.woff2") format("woff2")}
:root {
  --font-montserrat: "Montserrat";
  --font-playfair: "Playfair Display";
  --ink: #18322d;
  --green: #143f35;
  --green-2: #1f5a49;
  --sage: #b7c5aa;
  --cream: #f5efe4;
  --paper: #fffaf1;
  --sand: #e8d9c6;
  --terracotta: #ffae5f;
  --button-hover: #ffae5f;
  --deep-green: #194339;
  --coral: #e58b70;
  --white: #fffdf8;
  --line: rgba(24, 50, 45, 0.16);
  --shadow: 0 28px 80px rgba(36, 53, 45, 0.13);
  --radius: 28px;
  --page-scroll: 0px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

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

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

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

h1,
h2 {
  font-family: var(--font-playfair), Georgia, serif;
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.22;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  min-height: 66px;
  padding: 9px 10px 9px 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 14px 50px rgba(19, 50, 43, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.brand span {
  font-style: normal;
  font-weight: 700;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-header nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(20, 63, 53, 0.18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transform: translate(var(--mag-x), var(--mag-y));
  transition: box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease, transform 0.18s ease;
}

.button::before {
  position: absolute;
  top: -120%;
  left: -35%;
  width: 30%;
  height: 340%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: rotate(25deg);
  transition: left 0.7s ease;
}

.button:hover::before {
  left: 115%;
}

.button:hover {
  background: var(--button-hover);
  border-color: var(--button-hover);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(255, 174, 95, 0.3);
}

.button span,
.button > span {
  position: relative;
  z-index: 1;
}

.button .whatsapp-icon,
.mobile-whatsapp .whatsapp-icon {
  display: grid;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  place-items: center;
  background: transparent;
}

.button .whatsapp-icon img,
.mobile-whatsapp .whatsapp-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 11px;
}

.button-small .whatsapp-icon {
  flex-basis: 15px;
  width: 15px;
  height: 15px;
}

.button-small .whatsapp-icon img {
  width: 15px;
  height: 15px;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
  box-shadow: none;
}

.button-light .whatsapp-icon img {
  filter: none;
}

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

.button-light:hover .whatsapp-icon img {
  filter: brightness(0) invert(1);
}

.mobile-whatsapp:hover {
  background: var(--button-hover);
  color: var(--white);
}

.final-cta .button:hover {
  border-color: var(--deep-green);
  background: var(--deep-green);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(25, 67, 57, 0.3);
}

.button-large {
  min-height: 58px;
  padding: 14px 24px;
  font-size: 14px;
}

main p strong {
  font-weight: 800;
}

.hero-lead strong,
.situation-card strong,
.section-heading strong,
.about-copy strong,
.experience-flow strong,
.objection-grid strong {
  color: var(--green);
}

.method-section strong {
  color: var(--white);
}

.location-section strong,
.final-cta strong {
  color: var(--deep-green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  min-height: 100svh;
  padding: 142px max(6vw, calc((100vw - 1180px) / 2)) 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 20%, rgba(232, 217, 198, 0.75), transparent 31%),
    linear-gradient(120deg, #fffaf1 0%, #f4eee2 58%, #d9cdbb 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 94px, rgba(20, 63, 53, 0.08) 95px);
  content: "";
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 174, 95, 0.27);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  right: -12vw;
  bottom: -40vw;
  width: 72vw;
  height: 72vw;
  animation: orbit 24s linear infinite;
}

.orbit-two {
  right: -4vw;
  bottom: -31vw;
  width: 52vw;
  height: 52vw;
  border-color: rgba(20, 63, 53, 0.2);
  animation: orbit 18s linear infinite reverse;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--sage);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--green);
  font-size: clamp(41px, 4.35vw, 62px);
}

.hero h1 em {
  color: var(--terracotta);
  font-weight: 500;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #485d56;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

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

.cta-note {
  max-width: 150px;
  color: #66746f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.microproofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 42px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.microproofs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.microproofs span {
  color: var(--terracotta);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.hero-visual {
  justify-self: end;
  width: min(92%, 450px);
}

.image-frame {
  position: relative;
  height: min(62vh, 650px);
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 46% 46% 30px 30px;
  box-shadow: 0 40px 90px rgba(36, 46, 40, 0.22);
}

.image-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 12px solid rgba(255, 250, 241, 0.2);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.84) contrast(1.02) sepia(0.04);
  transform: scale(1.02) translateY(calc(var(--page-scroll) * -0.018));
  transition: filter 0.7s ease;
}

.hero-visual:hover img {
  filter: saturate(1) contrast(1.02);
}

.image-glow {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(20, 63, 53, 0.36));
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(24, 50, 45, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 22px;
  overflow: hidden;
  background: rgba(24, 50, 45, 0.2);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 10px;
  background: var(--terracotta);
  content: "";
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  from { transform: translateY(-12px); }
  to { transform: translateY(26px); }
}

.section {
  position: relative;
  padding: 120px max(6vw, calc((100vw - 1180px) / 2));
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading.center {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.section-heading h2,
.about-copy h2,
.location-copy h2,
.faq-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.3vw, 60px);
}

.section-heading > p,
.section-heading.center > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: #64756f;
  font-size: 16px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.section-heading.split h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading.split > p {
  margin: 0;
  padding-bottom: 7px;
}

.situations-section {
  background:
    linear-gradient(90deg, rgba(20, 63, 53, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 63, 53, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.situation-card {
  position: relative;
  min-height: 280px;
  padding: 34px 32px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 34px rgba(31, 63, 52, 0.04);
  backdrop-filter: blur(5px);
  transition: transform 0.45s cubic-bezier(.22,1,.36,1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.situation-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sand);
  content: "";
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.situation-card:hover {
  z-index: 2;
  border-color: rgba(255, 174, 95, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-10px) rotateX(2deg);
}

.situation-card:hover::after {
  opacity: 0.5;
  transform: scale(1);
}

.card-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--terracotta);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 30px;
  font-style: italic;
}

.situation-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 24px;
}

.situation-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #63716d;
  font-size: 13px;
}

.method-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 9vw, 140px);
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.method-section::before {
  position: absolute;
  top: -25vw;
  left: -25vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(255, 255, 255, 0.025), 0 0 0 14vw rgba(255, 255, 255, 0.02);
  content: "";
}

.method-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.method-intro h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 3.8vw, 54px);
}

.method-intro > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.method-steps {
  position: relative;
}

.method-steps::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 31px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.method-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps article > span {
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--green);
  color: var(--coral);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.step-kicker {
  margin-bottom: 4px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-steps h3 {
  margin-bottom: 10px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}

.method-steps article div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.deliverables-section {
  background: var(--cream);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.deliverable-grid article {
  min-height: 290px;
  padding: 30px;
  border: 1px solid rgba(20, 63, 53, 0.11);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.76);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.deliverable-grid article:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-8px);
}

.deliverable-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 44px;
  place-items: center;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 17px;
  font-style: italic;
  transition: transform 0.45s ease, background 0.4s ease;
}

.deliverable-grid article:hover .deliverable-icon {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(12deg) scale(1.08);
}

.deliverable-grid h3 {
  margin-bottom: 14px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 25px;
}

.deliverable-grid p {
  margin: 0;
  color: #66756f;
  font-size: 13px;
  transition: color 0.4s ease;
}

.deliverable-grid article:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
  background: var(--paper);
}

.about-photo {
  position: relative;
  justify-self: center;
  width: min(90%, 400px);
  perspective: 1000px;
}

.about-photo picture {
  display: block;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 220px 220px 30px 30px;
  box-shadow: var(--shadow);
  transform: rotateY(0deg);
  transition: transform 0.7s cubic-bezier(.22,1,.36,1), filter 0.6s ease;
}

.about-photo:hover img {
  filter: saturate(1.05);
  transform: rotateY(2.5deg) rotateX(-1deg) translateY(-6px);
}

.photo-shadow {
  position: absolute;
  z-index: 0;
  inset: 30px -26px -26px 26px;
  border: 1px solid var(--terracotta);
  border-radius: 220px 220px 30px 30px;
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: -30px;
  bottom: 44px;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  box-shadow: 0 18px 44px rgba(112, 57, 41, 0.2);
}

.photo-caption span {
  display: block;
  white-space: nowrap;
}

.about-copy h2 {
  max-width: 700px;
}

.about-copy > p:not(.eyebrow) {
  color: #60716b;
  font-size: 15px;
  line-height: 1.7;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 22px;
  margin: 32px 0 38px;
  padding: 0;
  list-style: none;
}

.principles li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.principles span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 174, 95, 0.16);
  color: var(--terracotta);
}

.proof-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.proof-heading {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 24px;
}

.proof-heading h2 {
  font-size: clamp(34px, 3.6vw, 50px);
}

.proof-heading h2 span {
  display: block;
}

.proof-heading > p:last-child {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  white-space: nowrap;
}

.results-section {
  background: var(--cream);
}

.results-section .proof-heading h2 {
  font-size: clamp(32px, 3.2vw, 46px);
}

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

.feedback-section .proof-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.marquee-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  outline: none;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 20px 0;
  animation: marquee-scroll 44s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex: none;
  gap: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .marquee-window:hover .marquee-track {
    animation-play-state: paused;
  }
}

.result-card {
  position: relative;
  flex: 0 0 330px;
  width: 330px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(25, 67, 57, 0.14);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(25, 67, 57, 0.12);
}

.result-card img {
  width: 100%;
  height: 430px;
  object-fit: contain;
  border-radius: 18px;
  background: #eee8de;
}

.result-card figcaption {
  padding: 14px 10px 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.feedback-marquee .marquee-track {
  animation-duration: 72s;
}

.feedback-card {
  position: relative;
  display: flex;
  flex: 0 0 380px;
  width: 380px;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--green);
  box-shadow: 0 22px 60px rgba(5, 29, 24, 0.18);
}

.feedback-card > span {
  position: absolute;
  top: -12px;
  right: 22px;
  color: rgba(255, 174, 95, 0.28);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 110px;
  line-height: 1;
}

.feedback-card p {
  position: relative;
  z-index: 1;
  margin: 24px 0 28px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 21px;
  line-height: 1.45;
}

.feedback-card small {
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  to { transform: translateX(calc(-50% - 9px)); }
}

.location-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  padding: 100px max(6vw, calc((100vw - 1180px) / 2));
  background: var(--terracotta);
  color: var(--deep-green);
}

.location-section .eyebrow {
  color: var(--deep-green);
}

.location-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.7vw, 52px);
}

.location-copy p:last-child {
  max-width: 600px;
  margin: 0;
  color: rgba(25, 67, 57, 0.86);
}

.location-map {
  overflow: hidden;
  border: 1px solid rgba(25, 67, 57, 0.3);
  border-radius: var(--radius);
  background: var(--deep-green);
  box-shadow: 0 28px 70px rgba(25, 67, 57, 0.22);
  backdrop-filter: blur(8px);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
  filter: saturate(0.82) contrast(0.95);
}

.location-map-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--deep-green);
  color: var(--white);
}

.location-map-footer .button {
  white-space: nowrap;
}

.location-pin {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 28px;
}

.location-map-footer small,
.location-map-footer strong {
  display: block;
}

.location-map-footer small {
  opacity: 0.65;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-map-footer strong {
  margin: 4px 0 8px;
  color: var(--white);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 28px;
}

.location-map-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.experience-section {
  background: var(--paper);
}

.experience-section .section-heading h2 {
  font-size: clamp(34px, 3.6vw, 50px);
}

.experience-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.experience-flow article {
  min-height: 250px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.experience-flow article span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-flow h3 {
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 25px;
}

.experience-flow p {
  margin: 0;
  color: #687771;
  font-size: 12px;
}

.experience-flow > i {
  align-self: center;
  color: var(--terracotta);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 24px;
  font-style: normal;
}

.ethical-note {
  margin: 28px auto 0;
  color: #78837f;
  font-size: 10px;
  text-align: center;
}

.objection-section {
  background: var(--cream);
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.objection-grid article {
  position: relative;
  min-height: 310px;
  padding: 38px 32px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
}

.objection-grid article > span {
  position: absolute;
  top: 5px;
  right: 24px;
  color: rgba(255, 174, 95, 0.16);
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.objection-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 280px;
  margin: 70px 0 18px;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 27px;
}

.objection-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #66756f;
  font-size: 13px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
  background: var(--paper);
}

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

.faq-intro h2 {
  font-size: clamp(38px, 4.1vw, 56px);
}

.faq-intro > p:not(.eyebrow) {
  color: #65746f;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-playfair), Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary i {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--terracotta);
  font-family: var(--font-montserrat), Arial, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.faq-list details[open] summary i {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.45s ease, opacity 0.45s ease;
}

.faq-list details[open] div {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-list details div p {
  max-width: 650px;
  margin-bottom: 28px;
  overflow: hidden;
  color: #66756f;
  font-size: 13px;
}

.final-cta {
  position: relative;
  padding: 120px 24px;
  overflow: hidden;
  background: var(--terracotta);
  color: var(--deep-green);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(25, 67, 57, 0.28);
  border-radius: 36px;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--deep-green);
}

.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4.15vw, 54px);
}

.final-cta h2 span + span::before {
  content: " ";
}

@media (min-width: 901px) {
  .final-cta h2 span {
    display: block;
    white-space: nowrap;
  }

  .final-cta h2 span + span::before {
    content: none;
  }
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 auto 34px;
  color: rgba(25, 67, 57, 0.88);
}

.final-cta small {
  display: block;
  margin-top: 16px;
  color: rgba(25, 67, 57, 0.78);
  font-size: 10px;
}

.final-glow {
  position: absolute;
  border: 1px solid rgba(25, 67, 57, 0.18);
  border-radius: 50%;
}

.glow-a {
  top: -300px;
  left: -180px;
  width: 700px;
  height: 700px;
}

.glow-b {
  right: -280px;
  bottom: -420px;
  width: 850px;
  height: 850px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 46px max(6vw, calc((100vw - 1180px) / 2));
  background: #102e27;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.brand-footer {
  color: var(--white);
}

footer p {
  margin: 0;
  font-size: 11px;
}

.instagram-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 0.35s ease, background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.instagram-link:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--green);
  transform: translateY(-3px);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-link .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.mobile-whatsapp {
  display: none;
}

[data-reveal] {
  --delay: 0ms;
  opacity: 0;
  transition: opacity 0.85s ease var(--delay), transform 1s cubic-bezier(.22,1,.36,1) var(--delay), filter 0.85s ease var(--delay);
  will-change: opacity, transform;
}

[data-reveal="left"] { transform: translateX(-70px); }
[data-reveal="right"] { transform: translateX(70px); }
[data-reveal="top"] { transform: translateY(-50px); }
[data-reveal="bottom"] { transform: translateY(60px); }
[data-reveal="scale"] { transform: scale(0.87); filter: blur(6px); }
[data-reveal="perspective"] { transform: perspective(900px) rotateY(-8deg) translateX(-30px); transform-origin: left center; }
[data-reveal="text"] { transform: translateY(45px); filter: blur(4px); }

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; gap: 18px; }
  .site-header nav { display: none; }
  .site-header .button-small { justify-self: end; }
  .hero { grid-template-columns: 1fr 0.8fr; gap: 38px; }
  .hero h1 { font-size: clamp(39px, 5vw, 54px); }
  .situation-grid, .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .method-section, .about-section, .location-section, .faq-section { gap: 55px; }
  .experience-flow { grid-template-columns: 1fr; }
  .experience-flow > i { justify-self: center; transform: rotate(90deg); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 74px; }
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    min-height: 56px;
    gap: 10px;
    padding: 7px 9px 7px 16px;
  }
  .site-header .button-small {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
  }
  .site-header .button-small .whatsapp-icon {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }
  .brand { font-size: 22px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 112px 24px 80px;
  }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions { justify-content: center; }
  .hero h1 { margin-right: auto; margin-left: auto; font-size: clamp(36px, 9vw, 46px); }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-visual { justify-self: center; width: min(76%, 440px); }
  .image-frame { height: 580px; min-height: 0; }
  .scroll-cue { display: none; }
  .section { padding: 88px 24px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 24px; }
  .section-heading.split > p { margin: 0; }
  .method-section, .about-section, .location-section, .faq-section {
    grid-template-columns: 1fr;
    padding: 88px 24px;
  }
  .method-intro, .faq-intro { position: static; }
  .about-photo { width: min(76%, 440px); margin: 0 auto; }
  .photo-caption { right: -20px; }
  .proof-section { padding: 88px 0; }
  .result-card { flex-basis: 290px; width: 290px; }
  .result-card img { height: 390px; }
  .feedback-card { flex-basis: 330px; width: 330px; min-height: 250px; }
  .objection-grid { grid-template-columns: 1fr; }
  footer { gap: 14px; padding: 44px 24px; text-align: center; }
}

@media (max-width: 600px) {
  .eyebrow { font-size: 9px; letter-spacing: 0.12em; }
  .section-heading.center .eyebrow { font-size: 8px; letter-spacing: 0.11em; }
  .proof-heading h2 {
    font-size: clamp(31px, 8.6vw, 38px);
  }
  .proof-heading h2 span {
    display: inline;
  }
  .proof-heading h2 span + span::before {
    content: " ";
  }
  .proof-heading > p:last-child {
    max-width: 440px;
    font-size: 14px;
    line-height: 1.65;
    white-space: normal;
  }
  .hero { padding-right: 18px; padding-left: 18px; }
  .hero-actions { flex-direction: column; }
  .cta-note { max-width: none; }
  .button {
    width: auto;
    max-width: calc(100% - 24px);
    gap: 8px;
    min-height: 46px;
    padding: 11px 16px;
    font-size: 10.5px;
    white-space: nowrap;
  }
  .button .whatsapp-icon { flex-basis: 15px; width: 15px; height: 15px; }
  .hero-actions .button,
  .about-copy .button,
  .method-intro .button,
  .final-cta .button { align-self: center; }
  .site-header .button-small {
    width: auto;
    min-height: 40px;
    padding: 7px 10px;
    font-size: 9px;
  }
  .site-header .button-small .whatsapp-icon { flex-basis: 14px; width: 14px; height: 14px; }
  .hero h1 { font-size: clamp(34px, 8.8vw, 42px); }
  .hero-visual { width: min(86%, 390px); }
  .image-frame { height: 460px; border-radius: 150px 150px 28px 28px; }
  .section-heading h2, .about-copy h2, .location-copy h2, .faq-intro h2 { font-size: 36px; }
  .method-intro h2,
  .location-copy h2,
  .experience-section .section-heading h2 { font-size: 34px; }
  .results-section .proof-heading h2 { font-size: clamp(29px, 8vw, 34px); }
  .situation-grid, .deliverable-grid { grid-template-columns: 1fr; }
  .situation-card, .deliverable-grid article { min-height: auto; }
  .method-steps article { grid-template-columns: 54px 1fr; gap: 18px; }
  .method-steps article > span { width: 54px; height: 54px; }
  .method-steps::before { left: 26px; }
  .principles { grid-template-columns: 1fr; }
  .about-photo { width: min(86%, 390px); height: 460px; }
  .about-photo picture { height: 100%; }
  .about-photo img { width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; }
  .about-photo img, .photo-shadow { border-radius: 150px 150px 24px 24px; }
  .photo-caption {
    position: absolute;
    right: 50%;
    bottom: -20px;
    width: max-content;
    max-width: calc(100% + 18px);
    margin: 0;
    padding: 16px 18px;
    font-size: 15px;
    transform: translateX(50%);
  }
  .location-map iframe { height: 260px; }
  .marquee-window {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
  }
  .marquee-track,
  .marquee-group { gap: 12px; }
  .marquee-track { animation-duration: 38s; }
  .feedback-marquee .marquee-track { animation-duration: 64s; }
  .result-card { flex-basis: 250px; width: 250px; border-radius: 22px; }
  .result-card img { height: 340px; }
  .feedback-card { flex-basis: 290px; width: 290px; min-height: 245px; padding: 26px; }
  .feedback-card p { font-size: 18px; }
  .results-note {
    width: calc(100% - 48px);
    max-width: 390px;
    line-height: 1.55;
  }
  .results-note span { display: block; }
  .location-map-footer { grid-template-columns: auto 1fr; padding: 18px; }
  .location-map-footer .button { grid-column: 1 / -1; justify-self: center; }
  .experience-flow article { min-height: auto; }
  .faq-list summary { font-size: 19px; }
  .final-cta { padding: 92px 18px; }
  .final-cta::before { inset: 10px; border-radius: 28px; }
  .final-cta h2 { font-size: 36px; }
}

@media (max-width: 360px) {
  .button { font-size: 9.5px; }
  .brand { font-size: 20px; }
  .site-header .button-small { padding-right: 9px; font-size: 8.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; filter: none; transform: none; }
}
