* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  background: #fff;
}

/* Acabamento da barra lateral apenas em telas desktop com ponteiro preciso. */
@media (min-width: 901px) and (pointer: fine) and (forced-colors: none) {
  html::-webkit-scrollbar {
    width: 11px;
    height: 11px;
  }
  html::-webkit-scrollbar-track {
    background: #253b2f;
  }
  html::-webkit-scrollbar-thumb {
    min-height: 48px;
    border: 3px solid #253b2f;
    border-radius: 999px;
    background: #8b9b7d;
  }
  html::-webkit-scrollbar-thumb:hover {
    background: #adbd9d;
  }
  html::-webkit-scrollbar-thumb:active {
    background: #c3ceaf;
  }
  html::-webkit-scrollbar-corner {
    background: #253b2f;
  }
  @supports not selector(::-webkit-scrollbar) {
    html {
      scrollbar-width: thin;
      scrollbar-color: #8b9b7d #253b2f;
    }
  }
}

.scroll-sequence {
  position: relative;
  height: 1065vh;
  height: 1065svh;
  background: #f3efe7;
}

/* No desktop, a barra acompanha o palco e sai junto com o banner. */
.banner-nav {
  position: absolute;
  z-index: 5;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 17px 22px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 22px;
  background: rgba(35, 43, 34, 0.76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(25, 22, 17, 0.1);
  color: #fffdf8;
  font: 400 13px/1.4 Arial, sans-serif;
}
.banner-brand { display: block; width: min(100%, 225px); }
.banner-brand picture,
.banner-brand img { display: block; width: 100%; height: auto; }
.banner-links { display: flex; align-items: center; gap: 16px; }
.banner-nav a { text-decoration: none; color: inherit; }
.banner-links > a:not(.banner-nav-cta) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  padding-block: 12px;
  color: rgba(255, 253, 248, 0.86);
  transition: color 180ms ease;
}
.nav-link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.banner-menu-toggle path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  transform-origin: 12px 12px;
  transition: transform 200ms ease;
}
.banner-nav[data-open="true"] .menu-line-top { transform: rotate(45deg) translateY(4px); }
.banner-nav[data-open="true"] .menu-line-bottom { transform: rotate(-45deg) translateY(-4px); }
.banner-links > a:hover { color: #fff; }
.banner-nav .banner-nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 44px;
  padding: 12px 19px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: #e7ecdb;
  color: #2d412e;
  white-space: nowrap;
  font-weight: 600;
  transition: background-color 180ms ease;
}
.banner-nav .banner-nav-cta:hover { background: #f6f7ee; }
.banner-nav :is(a, button):focus-visible { outline: 2px solid #f4e2bc; outline-offset: 5px; }
.banner-menu-toggle,
.banner-nav .banner-nav-cta-mobile { display: none; }

@media (max-width: 900px) {
  .banner-nav {
    position: fixed;
    z-index: 100;
    top: max(18px, env(safe-area-inset-top));
    width: min(560px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 20px;
    padding: 10px 16px;
    border-radius: 20px;
    max-height: calc(100dvh - 36px - env(safe-area-inset-top));
    overflow-y: auto;
  }
  .banner-brand {
    width: min(100%, 225px);
    padding: 0;
    background: transparent;
  }
  .banner-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    min-height: 44px;
    border: 0;
    padding: 10px;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
  }
  .banner-links {
    display: none;
    grid-column: 1 / -1;
    padding: 18px 0 8px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 253, 248, 0.15);
    gap: 2px;
    text-align: center;
  }
  .banner-nav[data-open="true"] .banner-links { display: grid; }
  .banner-links > a:not(.banner-nav-cta) { padding: 14px; gap: 12px; font-size: 12px; letter-spacing: 0.1em; }
  .banner-links .nav-link-icon { width: 18px; height: 18px; }
  .banner-nav .banner-nav-cta-desktop { display: none; }
  .banner-nav .banner-nav-cta-mobile { display: flex; justify-self: stretch; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .banner-nav a,
  .banner-menu-toggle path { transition: none; }
}

.sticky-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .sticky-stage {
    height: 100dvh;
  }
}

#sequence-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(36px, 7.5vw, 120px);
  color: #fff;
  background: radial-gradient(ellipse at center, rgba(17, 35, 25, 0.8), rgba(22, 40, 29, 0.5) 60%, rgba(25, 43, 31, 0.18));
  opacity: var(--hero-opacity, 1);
  pointer-events: auto;
  will-change: opacity;
}

.hero-content {
  width: min(100%, 700px);
  transform: translateX(var(--hero-shift-x, 0px));
  will-change: transform;
}

.hero-eyebrow {
  margin: 0 0 clamp(30px, 4.4vh, 54px);
  font: 500 clamp(11px, 0.9vw, 13px)/1.5 Arial, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.hero-eyebrow span {
  margin: 0 0.55em;
  color: #d8c7ae;
}

.hero-content h1 {
  margin: 0;
  max-width: 700px;
  font: 400 clamp(46px, 4.8vw, 72px)/1.12 'Playfair Display', serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-description {
  max-width: 580px;
  margin: clamp(26px, 4vh, 44px) auto 0;
  font: 400 clamp(16px, 1.2vw, 18px)/1.72 Arial, sans-serif;
  color: rgba(255, 255, 255, 0.88);
}

.hero-content h1 span {
  display: block;
  color: #b4c59f;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 4vh, 44px);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  margin-top: 0;
  padding: 14px 25px 14px 29px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font: 500 13px/1.2 Arial, sans-serif;
  letter-spacing: 0.055em;
  cursor: pointer;
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-button-primary {
  background: #98ad84;
  border-color: #98ad84;
  color: #152b20;
  font-weight: 600;
}

.hero-button.hero-button-primary:hover,
.hero-button.hero-button-primary:focus-visible {
  background: #b2c59f;
  border-color: #b2c59f;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero-button span {
  font-size: 17px;
  line-height: 0.7;
  transition: transform 260ms ease;
}

.hero-button:hover span,
.hero-button:focus-visible span {
  transform: translate(3px, -3px);
}

.process-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(28px, 7vw, 112px);
  color: #fff;
  background: linear-gradient(270deg, rgba(17, 35, 25, 0.82) 0%, rgba(22, 40, 29, 0.56) 36%, rgba(25, 43, 31, 0.12) 68%, transparent 100%);
  opacity: var(--process-opacity, 0);
  pointer-events: none;
  will-change: opacity;
}

.process-content {
  width: min(100%, 580px);
  transform: translateX(var(--process-shift-x, 64px));
  will-change: transform;
}

.process-eyebrow {
  margin: 0 0 clamp(26px, 4vh, 48px);
  font: 500 clamp(11px, 0.95vw, 13px)/1.5 Arial, sans-serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.process-content h2 {
  margin: 0;
  font: 400 clamp(40px, 4.4vw, 66px)/1.15 'Playfair Display', serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.process-description {
  max-width: 540px;
  margin: clamp(24px, 3.8vh, 42px) 0 0;
  font: 400 clamp(15px, 1.25vw, 18px)/1.65 Arial, sans-serif;
  color: rgba(255, 255, 255, 0.85);
}

.process-overlay.closing-overlay {
  justify-content: flex-start;
  background: linear-gradient(90deg, rgba(17, 35, 25, 0.82), rgba(22, 40, 29, 0.56) 36%, rgba(25, 43, 31, 0.12) 68%, transparent);
}

@media (max-width: 700px) {
  .process-overlay.closing-overlay {
    background: linear-gradient(90deg, rgba(17, 35, 25, 0.82), rgba(22, 40, 29, 0.58) 85%, rgba(25, 43, 31, 0.3));
  }
}

/* Composição editorial exclusiva dos três momentos da escultura. */
.cinematic-texts .hero-overlay,
.cinematic-texts .process-overlay {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(28px, 5vw, 96px) 8vw;
  color: #fffdf8;
  background: radial-gradient(ellipse at 50% 50%, rgba(25, 22, 17, 0.32), rgba(25, 22, 17, 0.12) 42%, rgba(25, 22, 17, 0) 72%);
  opacity: var(--text-opacity, 0);
  pointer-events: none;
}

.cinematic-texts .hero-overlay {
  opacity: var(--text-opacity, 1);
}

.cinematic-texts .hero-content,
.cinematic-texts .process-content {
  position: relative;
  width: 38vw;
  max-width: none;
  transform: translate3d(var(--text-x, 0px), var(--text-y, 0px), 0);
  filter: blur(var(--text-blur, 0px));
  will-change: transform, filter;
}

.cinematic-texts #process-overlay { align-items: center; }
.cinematic-texts #closing-overlay { align-items: center; }
.cinematic-texts h1,
.cinematic-texts h2 {
  max-width: 100%;
  font: 500 clamp(3.4rem, 5vw, 6.2rem)/1.01 'Playfair Display', serif;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 2px 14px rgba(25, 22, 17, 0.22);
}
.cinematic-texts #process-overlay .process-content {
  top: 0;
  left: 0;
}
.cinematic-texts h1 .banner-line,
.cinematic-texts h2 .banner-line {
  display: block;
  color: inherit;
  font-weight: inherit;
  opacity: var(--line-opacity, 1);
  transform: translate3d(var(--line-x, 0px), var(--line-y, 0px), 0);
  will-change: transform, opacity;
}
.cinematic-texts .banner-line em {
  font-style: italic;
  font-weight: 500;
}
.cinematic-texts #closing-overlay .process-content {
  top: 0;
  left: 0;
}
.cinematic-texts .hero-description,
.cinematic-texts .process-description {
  max-width: 460px;
  margin: clamp(40px, 3.8vw, 64px) auto 0;
  color: rgba(255, 250, 241, 0.9);
  font: 400 clamp(1rem, 1.15vw, 1.3rem)/1.75 Arial, sans-serif;
  text-wrap: pretty;
  text-shadow: 0 1px 7px rgba(25, 22, 17, 0.35);
}

@media (min-width: 701px) and (max-width: 1024px) {
  .cinematic-texts h1,
  .cinematic-texts h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
  }
}

@media (max-width: 700px) {
  .cinematic-texts .hero-overlay,
  .cinematic-texts .process-overlay,
  .cinematic-texts #process-overlay,
  .cinematic-texts #closing-overlay {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: max(24px, env(safe-area-inset-top), env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left), env(safe-area-inset-right));
    background: radial-gradient(ellipse at 50% 50%, rgba(25, 22, 17, 0.38), rgba(25, 22, 17, 0.16) 42%, rgba(25, 22, 17, 0) 72%);
  }
  .cinematic-texts .hero-content,
  .cinematic-texts .process-content { width: 100%; max-width: 350px; }
  .cinematic-texts h1,
  .cinematic-texts h2 { margin-inline: auto; font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.08; }
  .cinematic-texts #process-overlay .process-content { top: 0; left: 0; }
  .cinematic-texts #closing-overlay .process-content { top: 0; left: 0; }
  .cinematic-texts h2 br { display: initial; }
  .cinematic-texts .hero-description,
  .cinematic-texts .process-description { max-width: 30ch; margin: 30px auto 0; font-size: clamp(0.875rem, 3.6vw, 1rem); line-height: 1.75; }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-texts h1 .banner-line,
  .cinematic-texts h2 .banner-line { transform: none; will-change: auto; }
  .cinematic-texts .hero-content,
  .cinematic-texts .process-content { transform: none; filter: none; will-change: auto; }
}

.about-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) clamp(28px, 7vw, 112px);
  background: #faf9f6;
  color: #30342f;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-section::before {
  width: min(72vw, 1050px);
  aspect-ratio: 1.35;
  right: -21%;
  top: -13%;
  border-radius: 48% 52% 38% 62% / 55% 38% 62% 45%;
  background: radial-gradient(ellipse at 48% 52%, rgba(170, 190, 153, 0.31), rgba(195, 207, 177, 0.17) 52%, rgba(195, 207, 177, 0) 77%);
  transform: translate3d(0, var(--ambient-y, 0px), 0) rotate(-14deg);
}

.about-section::after {
  width: min(61vw, 870px);
  aspect-ratio: 1;
  right: -13%;
  top: 6%;
  border: 1px solid rgba(135, 156, 126, 0.27);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(32deg);
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(76px, 10vw, 156px);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 clamp(24px, 2.4vw, 36px);
  font: 500 12px/1.4 Arial, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #728c63;
}

.about-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: #9aaf83;
}

.about-copy {
  position: relative;
  isolation: isolate;
  width: min(100%, 650px);
  justify-self: center;
}

.about-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: 10%;
  width: 40%;
  height: 22%;
  background-image: radial-gradient(rgba(127, 153, 117, 0.18) 1px, transparent 1.5px);
  background-size: 23px 23px;
  mask-image: linear-gradient(90deg, transparent, #000 55%);
  pointer-events: none;
}

.about-copy h2 {
  max-width: 720px;
  margin: 0;
  font: 400 clamp(48px, 4.4vw, 76px)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-copy h2 span {
  color: #829d70;
}

.about-body {
  max-width: 650px;
  margin-top: clamp(25px, 2.7vw, 38px);
}

.about-body p {
  margin: 0 0 1.25em;
  font: 400 clamp(16px, 1.13vw, 18px)/1.78 Arial, sans-serif;
  color: #515b50;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 3.4vw, 46px);
}

.about-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 154px;
  padding: 19px 17px;
  border: 1px solid rgba(164, 180, 149, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(56, 72, 45, 0.045);
}

.about-highlight-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 17px;
  border-radius: 13px;
  background: #e9f0e2;
  color: #64804e;
  font: 20px/1 Georgia, serif;
}

.about-highlight-icon svg {
  width: 21px;
  height: 21px;
}

.about-highlight-label {
  margin-bottom: 6px;
  color: #76816e;
  font: 500 10px/1.3 Arial, sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-highlight strong {
  color: #283526;
  font: 600 clamp(12px, 0.95vw, 15px)/1.35 Arial, sans-serif;
}

.about-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: center;
  isolation: isolate;
}

.about-depth {
  position: absolute;
  z-index: -1;
  inset: 17% -8% 4% -5%;
  border-radius: 43% 18% 33% 12% / 24% 38% 20% 34%;
  background: linear-gradient(145deg, #e5ebdd 0%, #d7e1cf 50%, #edf0e8 100%);
  transform: translate3d(0, var(--depth-y, 0px), 0) rotate(-6deg);
  will-change: transform;
}

.about-orbit {
  position: absolute;
  z-index: -1;
  width: 65%;
  aspect-ratio: 1;
  top: -9%;
  left: -13%;
  border: 1px solid rgba(174, 123, 101, 0.34);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: translate3d(0, var(--orbit-y, 0px), 0) rotate(-25deg);
  will-change: transform;
}

.about-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 0.76;
  overflow: visible;
  background: transparent;
}

.about-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5%;
  right: 0;
  bottom: 1%;
  height: 12%;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(79, 93, 68, 0.16), transparent 70%);
  filter: blur(15px);
}

.about-photo img {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 94%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 22px rgba(69, 73, 58, 0.1));
  transform: translate3d(0, var(--photo-y, 0px), 0) scale(var(--photo-scale, 1));
  will-change: transform;
}

.about-credential {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: -10px;
  left: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 18px 28px;
  overflow: hidden;
  border: 1px solid #e0e9d9;
  border-bottom: 3px solid #8aa778;
  border-radius: 24px;
  background: linear-gradient(115deg, #f6f9f1, #fffefa 48%, #f3f7ed);
  box-shadow: 0 18px 42px rgba(44, 58, 39, 0.12);
  text-align: center;
}

.about-credential::before {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  top: -54px;
  left: -34px;
  border: 1px solid rgba(126, 157, 109, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.about-credential::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 88px;
  right: 8px;
  bottom: -30px;
  background-image: radial-gradient(rgba(121, 153, 105, 0.22) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, transparent, #000);
  pointer-events: none;
}

.about-credential span {
  margin-bottom: 6px;
  color: #778d6e;
  font: 500 10px/1.3 Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-credential strong {
  color: #2e3c2b;
  font: 400 clamp(24px, 2.1vw, 31px)/1.1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

@media (prefers-reduced-motion: no-preference) {
  .about-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

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

  .about-photo.about-reveal {
    transform: translateY(26px) scale(0.985);
  }

  .about-section.is-visible .about-photo.about-reveal {
    transform: translateY(0) scale(1);
  }

  .about-section.is-visible .about-credential { transition-delay: 180ms; }

  .about-section.is-visible .about-eyebrow { transition-delay: 90ms; }
  .about-section.is-visible .about-copy h2 { transition-delay: 170ms; }
  .about-section.is-visible .about-body p:nth-child(1) { transition-delay: 250ms; }
  .about-section.is-visible .about-body p:nth-child(2) { transition-delay: 320ms; }
  .about-section.is-visible .about-highlights { transition-delay: 390ms; }
}

@media (max-width: 700px) {
  .sticky-stage {
    border-radius: 0 0 22px 22px;
  }

  .hero-overlay {
    align-items: center;
    padding: 28px clamp(26px, 7vw, 38px);
    background: radial-gradient(ellipse at center, rgba(17, 35, 25, 0.84), rgba(22, 40, 29, 0.6));
  }

  .hero-content {
    width: min(100%, 540px);
  }

  .hero-content h1 {
    font-size: clamp(32px, 8.6vw, 46px);
    line-height: 1.14;
  }

  .hero-description {
    max-width: 410px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    justify-content: stretch;
    margin-inline: auto;
    gap: 10px;
    max-width: 340px;
    margin-top: 24px;
  }

  .hero-button {
    min-height: 50px;
    gap: 24px;
    padding-inline: 25px 22px;
  }

  .hero-content h1 br {
    display: none;
  }

  .hero-eyebrow {
    max-width: 300px;
    margin-inline: auto;
    margin-bottom: 24px;
  }

  .process-overlay {
    padding: 28px clamp(26px, 7vw, 38px);
    background: linear-gradient(270deg, rgba(17, 35, 25, 0.82), rgba(22, 40, 29, 0.58) 85%, rgba(25, 43, 31, 0.3));
  }

  .process-overlay,
  .process-overlay.closing-overlay {
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(17, 35, 25, 0.84), rgba(22, 40, 29, 0.58));
  }

  .process-eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 0.17em;
  }

  .process-content {
    max-width: 420px;
  }

  .process-content h2 {
    font-size: clamp(32px, 8.2vw, 44px);
    line-height: 1.17;
  }

  .process-description {
    max-width: 34ch;
    margin: 24px auto 0;
    font-size: 15px;
    line-height: 1.7;
  }

  .process-content h2 br {
    display: none;
  }

  .about-section {
    padding: 80px 28px 100px;
  }

  .about-section::before {
    width: 130vw;
    right: -75%;
    top: 16%;
  }

  .about-section::after {
    width: 120vw;
    right: -75%;
    top: 30%;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .about-visual {
    max-width: 460px;
  }

  .about-photo {
    aspect-ratio: 0.73;
  }

  .about-credential {
    right: 0;
    left: 0;
    min-height: 80px;
    padding: 14px 20px;
    border-radius: 20px;
  }

  .about-depth {
    inset: 19% -3% 5% -4%;
    border-radius: 42% 17% 35% 12% / 22% 34% 22% 32%;
  }

  .about-orbit {
    left: -8%;
    top: -6%;
  }

  .about-copy h2 {
    font-size: clamp(39px, 10vw, 54px);
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-highlight {
    min-height: 0;
    padding: 16px;
  }

  .about-copy::after {
    right: -8%;
    bottom: 4%;
    width: 48%;
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .process-content {
    transform: none;
  }

  .hero-button,
  .hero-button span {
    transition: none;
  }

  .about-photo img {
    height: 94%;
    transform: none;
    will-change: auto;
  }

  .about-depth,
  .about-orbit,
  .about-section::before {
    transform: none;
    will-change: auto;
  }
}

.therapies-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 10vw, 152px) clamp(28px, 7vw, 112px) clamp(116px, 11vw, 170px);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 110% -5%, transparent 28%, rgba(219, 233, 200, 0.045) 28.2%, rgba(219, 233, 200, 0.045) 36%, transparent 36.2%),
    radial-gradient(ellipse at 8% 4%, rgba(168, 188, 141, 0.2), transparent 43%),
    radial-gradient(ellipse at 55% 105%, rgba(179, 158, 111, 0.1), transparent 42%),
    radial-gradient(ellipse at 100% 55%, rgba(9, 28, 23, 0.3), transparent 58%),
    linear-gradient(135deg, #3e5545 0%, #2b4438 48%, #21382f 100%);
  color: #f9f9f2;
}

.therapies-inner {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 0 auto;
}

.therapies-header {
  max-width: 780px;
  margin: 0 auto clamp(60px, 6vw, 86px);
  text-align: center;
}

.therapies-header h2 {
  margin: 0;
  font: 400 clamp(46px, 5.3vw, 78px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.therapies-header p {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(255, 255, 248, 0.83);
  font: 400 clamp(16px, 1.2vw, 18px)/1.75 Arial, sans-serif;
}

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

.therapy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 252px;
  overflow: hidden;
  padding: 32px 30px;
  border: 1px solid rgba(233, 238, 226, 0.9);
  border-radius: 28px;
  background: linear-gradient(150deg, #fffefa 0%, #f7f9f4 100%);
  box-shadow: 0 16px 34px rgba(11, 20, 16, 0.13), inset 0 1px rgba(255, 255, 255, 0.9);
  color: #293a28;
  text-align: center;
}

.therapy-card::before,
.therapy-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.therapy-card::before {
  width: var(--art-size, 190px);
  height: var(--art-size, 190px);
  top: var(--art-top, -95px);
  right: var(--art-right, -70px);
  border-radius: var(--art-radius, 48% 52% 42% 58%);
  background: var(--art-color, rgba(151, 177, 132, 0.16));
  transform: rotate(var(--art-rotate, -15deg));
}

.therapy-card::after {
  width: var(--line-size, 155px);
  height: var(--line-size, 155px);
  top: var(--line-top, -88px);
  right: var(--line-right, -66px);
  border: 1px solid var(--line-color, rgba(119, 151, 104, 0.21));
  border-radius: 50%;
  transform: rotate(var(--line-rotate, 0deg));
}

.therapy-card:nth-child(2) {
  --art-color: rgba(194, 207, 184, 0.18);
  --art-top: auto;
  --art-right: auto;
  --line-top: auto;
  --line-right: auto;
}

.therapy-card:nth-child(2)::before,
.therapy-card:nth-child(2)::after {
  bottom: -95px;
  left: -65px;
}

.therapy-card:nth-child(2)::before {
  background: repeating-radial-gradient(circle, transparent 0 23px, rgba(125, 154, 119, 0.14) 24px 25px, transparent 26px 46px);
}

.therapy-card:nth-child(2)::after {
  display: none;
}

.therapy-card:nth-child(3) {
  --art-color: rgba(213, 183, 153, 0.17);
  --art-size: 160px;
  --art-top: -80px;
  --art-right: -36px;
  --art-radius: 18% 82% 26% 74%;
  --art-rotate: 24deg;
  --line-size: 175px;
  --line-top: -102px;
  --line-right: -98px;
  --line-color: rgba(167, 133, 102, 0.2);
}

.therapy-card:nth-child(4) {
  --art-color: rgba(189, 197, 170, 0.18);
  --art-size: 220px;
  --art-top: auto;
  --art-right: -110px;
  --art-radius: 65% 35% 56% 44%;
  --line-top: auto;
  --line-right: -80px;
}

.therapy-card:nth-child(4)::before,
.therapy-card:nth-child(4)::after {
  bottom: -125px;
}

.therapy-card:nth-child(5) {
  --art-color: rgba(207, 211, 183, 0.19);
  --art-size: 180px;
  --art-top: -115px;
  --art-right: auto;
  --line-top: -112px;
  --line-right: auto;
}

.therapy-card:nth-child(5)::before,
.therapy-card:nth-child(5)::after {
  left: -80px;
}

.therapy-card:nth-child(5)::before {
  background: radial-gradient(rgba(139, 158, 115, 0.19) 1px, transparent 1.5px);
  background-size: 15px 15px;
  mask-image: radial-gradient(circle, #000, transparent 73%);
}

.therapy-card:nth-child(5)::after {
  display: none;
}

.therapy-card:nth-child(6) {
  --art-color: rgba(181, 204, 190, 0.2);
  --art-size: 195px;
  --art-top: auto;
  --art-right: -80px;
  --art-radius: 34% 66% 60% 40%;
  --line-top: auto;
  --line-right: -110px;
  --line-color: rgba(110, 150, 133, 0.2);
}

.therapy-card:nth-child(6)::before,
.therapy-card:nth-child(6)::after {
  bottom: -105px;
}

.therapy-card:nth-child(7) {
  --art-color: rgba(202, 207, 176, 0.17);
  --art-size: 170px;
  --art-top: auto;
  --art-right: auto;
  --line-top: auto;
  --line-right: auto;
}

.therapy-card:nth-child(7)::before,
.therapy-card:nth-child(7)::after {
  bottom: -95px;
  left: -75px;
}

.therapy-card:nth-child(8) {
  --art-color: rgba(215, 191, 176, 0.18);
  --art-size: 200px;
  --art-top: -130px;
  --art-right: -95px;
  --art-radius: 58% 42% 67% 33%;
  --line-color: rgba(175, 137, 119, 0.2);
}

.therapy-card:nth-child(8)::before {
  background: repeating-linear-gradient(135deg, rgba(173, 136, 118, 0.12) 0 1px, transparent 1px 17px);
  mask-image: radial-gradient(circle, #000, transparent 72%);
}

.therapy-card:nth-child(8)::after {
  display: none;
}

.therapy-card:nth-child(9) {
  --art-color: rgba(182, 201, 181, 0.2);
  --art-size: 180px;
  --art-top: auto;
  --art-right: -65px;
  --art-radius: 25% 75% 46% 54%;
  --line-top: auto;
  --line-right: -105px;
}

.therapy-card:nth-child(9)::before,
.therapy-card:nth-child(9)::after {
  bottom: -100px;
}

.therapy-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 19px;
  border-radius: 16px;
  background: #eaf0e4;
  color: #617d53;
}

.therapy-icon svg {
  width: 24px;
  height: 24px;
}

.therapy-card:nth-child(3n) .therapy-icon {
  background: #f0e9de;
  color: #8c745d;
}

.therapy-card:nth-child(3n + 2) .therapy-icon {
  background: #edf0e5;
  color: #687d62;
}

.therapy-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  font: 400 clamp(24px, 1.8vw, 29px)/1.18 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.therapy-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 330px;
  color: #59655a;
  font: 400 15px/1.65 Arial, sans-serif;
}

@media (max-width: 950px) {
  .therapies-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .therapies-section {
    padding: 86px 24px 100px;
    border-radius: 24px;
    overflow: visible;
  }

  .therapies-header {
    margin-bottom: 48px;
  }

  .therapies-header h2 {
    font-size: clamp(42px, 11vw, 55px);
  }

  .therapies-grid {
    display: block;
  }

  .therapy-card {
    position: sticky;
    top: calc(24px + env(safe-area-inset-top) + var(--stack-step, 0px));
    min-height: 250px;
    margin-bottom: 7vh;
    padding: 28px 25px;
    box-shadow: 0 16px 34px rgba(11, 20, 16, 0.18);
  }

  .therapy-card:last-child {
    margin-bottom: 0;
  }

  .therapy-card:nth-child(1) { z-index: 1; --stack-step: 0px; }
  .therapy-card:nth-child(2) { z-index: 2; --stack-step: 6px; }
  .therapy-card:nth-child(3) { z-index: 3; --stack-step: 12px; }
  .therapy-card:nth-child(4) { z-index: 4; --stack-step: 18px; }
  .therapy-card:nth-child(5) { z-index: 5; --stack-step: 24px; }
  .therapy-card:nth-child(6) { z-index: 6; --stack-step: 30px; }
  .therapy-card:nth-child(7) { z-index: 7; --stack-step: 36px; }
  .therapy-card:nth-child(8) { z-index: 8; --stack-step: 42px; }
  .therapy-card:nth-child(9) { z-index: 9; --stack-step: 48px; }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .therapy-card {
    position: relative;
    top: auto;
    margin-bottom: 15px;
  }
}

.services-section {
  position: relative;
  isolation: isolate;
  padding: clamp(110px, 10vw, 170px) clamp(28px, 7vw, 112px);
  background: linear-gradient(98deg, #f5f7f0 0%, #f5f7f0 42%, #fff 42.1%, #fff 100%);
  color: #263428;
}

.services-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(72px, 10vw, 160px);
  max-width: 1340px;
  margin: 0 auto;
}

.services-intro {
  position: sticky;
  top: clamp(88px, 13vh, 150px);
  align-self: start;
  max-width: 510px;
}

.services-intro h2 {
  margin: 0;
  font: 400 clamp(49px, 5vw, 76px)/1.06 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}

.services-intro h2 span {
  display: block;
  color: #7e9b70;
}

.services-intro p {
  max-width: 410px;
  margin: 28px 0 0;
  color: #677468;
  font: 400 clamp(16px, 1.15vw, 18px)/1.75 Arial, sans-serif;
}

.services-list {
  min-width: 0;
  border-top: 1px solid #dce5d4;
}

.service-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 48px;
  align-items: start;
  gap: 22px;
  padding: 30px 0 34px;
  border-bottom: 1px solid #dce5d4;
}

.service-number {
  padding-top: 6px;
  color: #83a06f;
  font: 600 13px/1.3 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.service-copy h3 {
  margin: 0 0 8px;
  font: 400 clamp(25px, 2vw, 31px)/1.2 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.service-copy p {
  max-width: 470px;
  margin: 0;
  color: #59685a;
  font: 400 15px/1.65 Arial, sans-serif;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #d8e5cd;
  border-radius: 50%;
  background: #f1f6eb;
  color: #638858;
}

.service-icon svg {
  width: 21px;
  height: 21px;
}

@media (max-width: 850px) {
  .services-section {
    padding: 88px 28px 104px;
    background: #f9faf6;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services-intro {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .services-intro {
    margin-inline: auto;
    text-align: center;
  }

  .services-intro h2 {
    font-size: clamp(44px, 11vw, 58px);
  }

  .services-intro p {
    margin: 24px auto 0;
  }

  .services-list {
    display: block;
    border-top: 0;
  }

  .service-row {
    position: sticky;
    top: calc(24px + env(safe-area-inset-top) + var(--service-stack-step, 0px));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 250px;
    margin-bottom: 7vh;
    padding: 27px 24px 30px;
    border: 1px solid #dce5d4;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(40, 64, 39, 0.14);
    text-align: center;
  }

  .service-row:last-child {
    margin-bottom: 0;
  }

  .service-row:nth-child(1) { z-index: 1; --service-stack-step: 0px; }
  .service-row:nth-child(2) { z-index: 2; --service-stack-step: 6px; }
  .service-row:nth-child(3) { z-index: 3; --service-stack-step: 12px; }
  .service-row:nth-child(4) { z-index: 4; --service-stack-step: 18px; }
  .service-row:nth-child(5) { z-index: 5; --service-stack-step: 24px; }
  .service-row:nth-child(6) { z-index: 6; --service-stack-step: 30px; }

  .service-number {
    order: 0;
    padding-top: 0;
  }

  .service-icon {
    order: 1;
    width: 40px;
    height: 40px;
  }

  .service-copy {
    order: 2;
  }

  .service-copy h3 {
    font-size: 24px;
  }

  .service-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .service-row {
    position: relative;
    top: auto;
    margin-bottom: 14px;
  }
}

.booking-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 11vw, 172px) clamp(28px, 7vw, 112px);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 14% 18%, rgba(132, 161, 124, 0.22), transparent 42%),
    radial-gradient(ellipse at 90% 85%, rgba(12, 38, 28, 0.36), transparent 45%),
    linear-gradient(125deg, #334d3d, #253d32 58%, #20372f);
  color: #f9f9f1;
}

.booking-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(74vw, 1050px);
  aspect-ratio: 1;
  left: -39%;
  bottom: -74%;
  border: 1px solid rgba(223, 236, 209, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(223, 236, 209, 0.025), 0 0 0 150px rgba(223, 236, 209, 0.018);
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 11vw, 170px);
  max-width: 1320px;
  margin: 0 auto;
}

.section-ribbons {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  --ribbon-color: rgba(168, 193, 147, 0.14);
  --ribbon-line: rgba(130, 160, 109, 0.18);
}

.booking-section .section-ribbons {
  --ribbon-color: rgba(214, 235, 195, 0.065);
  --ribbon-line: rgba(214, 235, 195, 0.15);
}

.therapies-section .section-ribbons {
  border-radius: inherit;
  --ribbon-color: rgba(216, 233, 195, 0.075);
  --ribbon-line: rgba(232, 241, 215, 0.2);
}

.section-ribbons span {
  position: absolute;
  display: block;
}

.section-ribbons span:nth-child(1) {
  width: min(62vw, 820px);
  height: min(43vw, 570px);
  top: -21%;
  left: -27%;
  border: clamp(42px, 6vw, 82px) solid var(--ribbon-color);
  border-radius: 42% 58% 61% 39% / 51% 35% 65% 49%;
  transform: rotate(-28deg);
  box-shadow: 0 0 0 30px var(--ribbon-color);
}

.section-ribbons span:nth-child(2) {
  width: min(57vw, 760px);
  height: min(38vw, 500px);
  bottom: -14%;
  right: -25%;
  border: clamp(35px, 5vw, 70px) solid var(--ribbon-color);
  border-radius: 60% 40% 35% 65% / 44% 59% 41% 56%;
  transform: rotate(32deg);
}

.section-ribbons span:nth-child(3) {
  width: min(49vw, 650px);
  height: min(32vw, 410px);
  bottom: -18%;
  left: 18%;
  border: 1px solid var(--ribbon-line);
  border-radius: 50%;
  transform: rotate(-22deg);
  box-shadow: 0 0 0 24px var(--ribbon-color);
}

.booking-section .section-ribbons span:nth-child(1) {
  left: auto;
  right: -25%;
  top: -39%;
  transform: rotate(28deg);
}

.booking-section .section-ribbons span:nth-child(2) {
  right: auto;
  left: -31%;
  bottom: -33%;
  transform: rotate(-25deg);
}

@media (max-width: 620px) {
  .section-ribbons span:nth-child(1) {
    width: 110vw;
    height: 80vw;
    left: -72%;
    top: -3%;
    border-width: 38px;
  }

  .section-ribbons span:nth-child(2) {
    width: 110vw;
    height: 80vw;
    right: -75%;
    bottom: 2%;
    border-width: 36px;
  }

  .section-ribbons span:nth-child(3) {
    width: 110vw;
    height: 70vw;
    left: -20%;
    bottom: -5%;
  }

  .booking-section .section-ribbons span:nth-child(1) {
    right: -70%;
    top: -7%;
  }

  .booking-section .section-ribbons span:nth-child(2) {
    left: -76%;
    bottom: -5%;
  }
}

.booking-copy {
  max-width: 640px;
}

.booking-eyebrow {
  margin: 0 0 35px;
  color: #bdcfaa;
  font: 500 12px/1.3 Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-copy h2 {
  margin: 0;
  font: 400 clamp(58px, 6.2vw, 96px)/1.02 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.booking-copy h2 span {
  display: block;
  color: #cadcb8;
}

.booking-lead {
  max-width: 570px;
  margin: clamp(30px, 4vw, 54px) 0 0;
  color: rgba(255, 255, 249, 0.9);
  font: 400 clamp(17px, 1.3vw, 20px)/1.72 Arial, sans-serif;
}

.booking-note {
  max-width: 500px;
  margin: 30px 0 0;
  padding-left: 19px;
  border-left: 2px solid #b4ca9d;
  color: rgba(249, 251, 240, 0.72);
  font: 400 15px/1.7 Arial, sans-serif;
}

.booking-panel {
  position: relative;
  padding: clamp(35px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: linear-gradient(145deg, #fffefa, #f3f6ee);
  box-shadow: 0 28px 70px rgba(7, 21, 15, 0.2);
  color: #2c412f;
}

.booking-panel::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 25px;
  width: 38px;
  height: 38px;
  border-top: 1px solid rgba(119, 152, 102, 0.32);
  border-right: 1px solid rgba(119, 152, 102, 0.32);
  border-radius: 0 19px 0 0;
}

.booking-panel-eyebrow {
  margin: 0 0 18px;
  color: #80976d;
  font: 600 10px/1.3 Arial, sans-serif;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.booking-panel h3 {
  max-width: 390px;
  margin: 0 0 25px;
  font: 400 clamp(30px, 2.7vw, 40px)/1.13 Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.booking-benefits {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid #dfe8d9;
  color: #465744;
  font: 500 14px/1.4 Arial, sans-serif;
}

.booking-benefits li:last-child {
  border-bottom: 1px solid #dfe8d9;
}

.booking-benefit-icon {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #e7efdf;
  color: #62815b;
  font: 22px/1 Georgia, serif;
}

.booking-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 59px;
  padding: 15px 22px;
  border: 0;
  border-radius: 16px;
  background: #436d43;
  color: #fff;
  font: 600 14px/1.3 Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.booking-button:hover,
.booking-button:focus-visible {
  background: #355e38;
  transform: translateY(-2px);
}

.booking-button svg {
  width: 21px;
  height: 21px;
}

.booking-button-arrow {
  margin-left: auto;
  font-size: 19px;
}

.booking-footnote {
  margin: 15px 0 0;
  color: #788675;
  font: 400 12px/1.5 Arial, sans-serif;
  text-align: center;
}

@media (max-width: 850px) {
  .booking-section {
    padding: 88px 28px 100px;
    border-radius: 24px;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .booking-copy {
    max-width: 650px;
  }

  .booking-panel {
    max-width: 570px;
  }
}

@media (max-width: 620px) {
  .booking-copy,
  .booking-panel {
    margin-inline: auto;
    text-align: center;
  }

  .booking-copy h2 {
    font-size: clamp(54px, 13vw, 72px);
  }

  .booking-lead {
    margin-inline: auto;
  }

  .booking-note {
    display: none;
  }

  .booking-panel {
    width: 100%;
    padding: 32px 22px 30px;
    border-radius: 26px;
  }

  .booking-panel h3 {
    margin-inline: auto;
    font-size: clamp(29px, 7.5vw, 36px);
  }

  .booking-benefits li {
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .booking-benefit-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .booking-button {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 18px;
    gap: 8px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .booking-button span:not(.booking-button-arrow) {
    white-space: nowrap;
  }

  .booking-button-arrow {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-button {
    transition: none;
  }

  .booking-button:hover,
  .booking-button:focus-visible {
    transform: none;
  }
}

.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(105px, 10vw, 155px) clamp(28px, 7vw, 112px) clamp(115px, 11vw, 165px);
  background: linear-gradient(140deg, #fcfdf9, #f5f8ef 100%);
  color: #2d3d2b;
}

.faq-section::before {
  content: "?";
  position: absolute;
  z-index: -1;
  top: -115px;
  left: -28px;
  color: rgba(139, 166, 119, 0.09);
  font: 400 clamp(260px, 28vw, 480px)/1 Georgia, "Times New Roman", serif;
  transform: rotate(-10deg);
}

.faq-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(32vw, 460px);
  height: 75%;
  right: -9%;
  bottom: -10%;
  border-radius: 58% 42% 0 0;
  background: linear-gradient(160deg, rgba(213, 228, 199, 0.47), rgba(213, 228, 199, 0));
  transform: rotate(18deg);
}

.faq-inner {
  max-width: 950px;
  margin: 0 auto;
}

.faq-header {
  max-width: 730px;
  margin: 0 auto clamp(54px, 6vw, 82px);
  text-align: center;
}

.faq-header h2 {
  margin: 0;
  font: 400 clamp(50px, 5.5vw, 78px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.faq-header h2 span {
  color: #819d71;
}

.faq-header p {
  max-width: 620px;
  margin: 20px auto 0;
  color: #657264;
  font: 400 clamp(16px, 1.2vw, 18px)/1.7 Arial, sans-serif;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  border: 1px solid #dce7d2;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(52, 73, 46, 0.055);
}

.faq-item[open] {
  border-color: #b6cda8;
  box-shadow: 0 18px 38px rgba(52, 73, 46, 0.09);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 15px 22px;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  color: #88a679;
  font: 600 12px/1.3 Arial, sans-serif;
  letter-spacing: 0.08em;
}

.faq-question {
  color: #324633;
  font: 600 clamp(15px, 1.08vw, 17px)/1.4 Arial, sans-serif;
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d9e7cf;
  border-radius: 50%;
  background: #f0f6e9;
  color: #648254;
  transition: transform 220ms ease, background-color 220ms ease;
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
  background: #e4efda;
}

.faq-answer {
  margin: 0 22px;
  padding: 19px 56px 25px;
  border-top: 1px solid #dfe8d9;
}

.faq-answer p {
  max-width: 690px;
  margin: 0;
  color: #687668;
  font: 400 15px/1.7 Arial, sans-serif;
}

@media (max-width: 620px) {
  .faq-section {
    padding: 88px 24px 100px;
  }

  .faq-header h2 {
    font-size: clamp(43px, 10.5vw, 60px);
  }

  .faq-item summary {
    grid-template-columns: 25px minmax(0, 1fr) 34px;
    gap: 11px;
    min-height: 72px;
    padding: 13px 15px;
  }

  .faq-toggle {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    margin: 0 15px;
    padding: 18px 36px 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-toggle {
    transition: none;
  }
}

.location-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(105px, 10vw, 150px) clamp(28px, 7vw, 112px) clamp(115px, 10vw, 150px);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 82% 8%, rgba(217, 231, 194, 0.17), transparent 36%),
    linear-gradient(130deg, #7c916d, #6f8663 52%, #637b59);
  color: #fffdf5;
}

.location-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(64vw, 850px);
  height: min(42vw, 540px);
  top: -28%;
  right: -23%;
  border: clamp(48px, 6vw, 86px) solid rgba(232, 242, 217, 0.075);
  border-radius: 42% 58% 65% 35% / 50% 39% 61% 50%;
  transform: rotate(-28deg);
  pointer-events: none;
}

.location-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(54vw, 720px);
  height: min(37vw, 490px);
  left: -24%;
  bottom: -25%;
  border: clamp(42px, 5vw, 72px) solid rgba(227, 240, 211, 0.065);
  border-radius: 61% 39% 44% 56% / 42% 58% 35% 65%;
  transform: rotate(24deg);
  pointer-events: none;
}

.location-inner {
  position: relative;
  z-index: 1;
  max-width: 1290px;
  margin: 0 auto;
}

.location-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 620px;
  top: 18%;
  left: -260px;
  border: 1px solid rgba(247, 250, 231, 0.19);
  border-radius: 50% 45% 55% 50%;
  transform: rotate(20deg);
  pointer-events: none;
}

.location-header {
  max-width: 730px;
  margin: 0 auto clamp(55px, 6vw, 82px);
  text-align: center;
}

.location-header h2 {
  margin: 0;
  font: 400 clamp(54px, 5.7vw, 80px)/1.07 Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
}

.location-header h2 span {
  color: #dce9c8;
}

.location-header p {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 248, 0.86);
  font: 400 clamp(16px, 1.2vw, 18px)/1.7 Arial, sans-serif;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(26px, 3vw, 42px);
  align-items: stretch;
}

.location-map {
  min-height: 540px;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: #f8f8f1;
  box-shadow: 0 24px 55px rgba(29, 48, 29, 0.18);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 526px;
  border: 0;
  border-radius: 21px;
}

.location-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(25px, 3vw, 43px);
  border: 1px solid rgba(230, 239, 216, 0.22);
  border-radius: 28px;
  background: rgba(29, 56, 38, 0.3);
  box-shadow: 0 24px 55px rgba(29, 48, 29, 0.1);
}

.location-detail {
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(234, 242, 218, 0.22);
}

.location-detail:first-child {
  padding-top: 0;
}

.location-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.location-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #eaf2df;
  color: #5d7e55;
}

.location-icon svg {
  width: 22px;
  height: 22px;
}

.location-detail h3 {
  margin: 0 0 6px;
  font: 400 clamp(20px, 1.55vw, 24px)/1.2 Georgia, "Times New Roman", serif;
}

.location-detail p {
  margin: 0;
  color: rgba(255, 255, 248, 0.83);
  font: 400 14px/1.6 Arial, sans-serif;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 450px;
  }

  .location-map iframe {
    min-height: 436px;
  }
}

@media (max-width: 620px) {
  .location-section {
    padding: 86px 24px 100px;
    border-radius: 24px;
  }

  .location-section::before {
    width: 110vw;
    height: 70vw;
    top: -6%;
    right: -60%;
    border-width: 42px;
  }

  .location-section::after {
    width: 105vw;
    height: 76vw;
    left: -62%;
    bottom: -7%;
    border-width: 38px;
  }

  .location-header h2 {
    font-size: clamp(47px, 11vw, 60px);
  }

  .location-map {
    min-height: 380px;
    border-radius: 22px;
  }

  .location-map iframe {
    min-height: 366px;
    border-radius: 15px;
  }

  .location-details {
    padding: 25px;
    border-radius: 22px;
  }

  .location-detail {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
  }

  .location-icon {
    width: 40px;
    height: 40px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 9vw, 130px) clamp(28px, 7vw, 112px) 26px;
  background:
    radial-gradient(ellipse at 90% 3%, rgba(211, 229, 193, 0.62), transparent 40%),
    radial-gradient(ellipse at 5% 95%, rgba(226, 238, 211, 0.54), transparent 35%),
    #fcfdf9;
  color: #304130;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: min(65vw, 900px);
  height: min(43vw, 570px);
  right: -22%;
  top: -54%;
  border: clamp(55px, 7vw, 100px) solid rgba(192, 215, 171, 0.2);
  border-radius: 43% 57% 62% 38% / 52% 36% 64% 48%;
  transform: rotate(-26deg);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  width: min(55vw, 730px);
  height: min(34vw, 450px);
  left: -28%;
  bottom: -42%;
  border: clamp(42px, 5vw, 72px) solid rgba(198, 213, 179, 0.17);
  border-radius: 59% 41% 44% 56% / 36% 64% 48% 52%;
  transform: rotate(18deg);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(46vw, 620px);
  height: 250px;
  top: -110px;
  left: 20%;
  border: 1px solid rgba(139, 169, 123, 0.2);
  border-radius: 50%;
  transform: rotate(-16deg);
  pointer-events: none;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(35px, 5vw, 75px);
  padding: clamp(42px, 4.5vw, 66px);
  border: 1px solid #e0e9d9;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(49, 70, 45, 0.07);
}

.footer-about,
.footer-nav {
  border-right: 1px solid #dfe8d8;
  padding-right: clamp(30px, 4vw, 60px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #344b36;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(24%) sepia(17%) saturate(650%) hue-rotate(75deg);
}

.footer-monogram {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border: 1px solid #a8bf9a;
  border-radius: 50%;
  color: #729166;
  font: italic 400 20px/1 Georgia, "Times New Roman", serif;
}

.footer-brand strong {
  display: block;
  font: 400 clamp(21px, 1.8vw, 28px)/1.1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.footer-brand small {
  display: block;
  margin-top: 3px;
  color: #82917d;
  font: 500 10px/1.3 Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-about p {
  max-width: 350px;
  margin: 25px 0 0;
  color: #687766;
  font: 400 15px/1.7 Arial, sans-serif;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 23px;
  font: 400 25px/1.2 Georgia, "Times New Roman", serif;
}

.footer-nav a {
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  color: #5b6c59;
  font: 400 15px/1.4 Arial, sans-serif;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #294e2d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: #5b6c59;
  font: 400 15px/1.5 Arial, sans-serif;
}

.footer-contact p span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  color: #729565;
  font: 19px/1 Georgia, serif;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 23px;
  border-top: 1px solid #dce6d4;
  color: #738270;
  font: 400 13px/1.5 Arial, sans-serif;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 850px) {
  .footer-panel {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #dfe8d8;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding: 80px 24px 28px;
  }

  .site-footer::before {
    width: 120vw;
    height: 80vw;
    top: -8%;
    right: -65%;
    border-width: 48px;
  }

  .site-footer::after {
    width: 110vw;
    height: 75vw;
    left: -67%;
    bottom: -10%;
    border-width: 42px;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 32px 26px;
    border-radius: 24px;
  }

  .footer-about,
  .footer-nav {
    grid-column: auto;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #dfe8d8;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-nav a {
    transition: none;
  }
}
