﻿:root {
  --bg: #fff3f0;
  --bg-2: #edd4ce;
  --panel: rgba(255, 255, 255, 0.48);
  --line: rgba(87, 67, 62, 0.18);
  --text: #57433e;
  --muted: rgba(87, 67, 62, 0.78);
  --soft: #edd4ce;
  --soft-2: #57433e;
  --button: #57433e;
  --button-deep: #765c55;
  --shadow: rgba(87, 67, 62, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 52% 28%, rgba(237, 212, 206, 0.74), transparent 28rem),
    radial-gradient(circle at 14% 58%, rgba(87, 67, 62, 0.08), transparent 26rem),
    var(--bg);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 32px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 222px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: var(--soft-2);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 4rem);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta,
.main-cta {
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.desktop-nav a:hover,
.header-cta:hover,
.main-cta:hover {
  transform: translateY(-2px);
}

.header-cta,
.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--button), var(--button-deep));
  box-shadow: 0 16px 32px rgba(87, 67, 62, 0.24);
  color: white;
  font-weight: 850;
  text-transform: uppercase;
}

.header-cta {
  min-height: 64px;
  padding: 0 28px;
  font-size: 0.92rem;
}

.main-cta {
  min-height: 76px;
  padding: 0 46px;
  font-size: 1.35rem;
}

.whatsapp-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.whatsapp-icon::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 8px;
  height: 11px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
  transform: rotate(-35deg);
}

.whatsapp-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-15deg);
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 243, 240, 1) 0%, rgba(255, 243, 240, 0.94) 37%, rgba(255, 243, 240, 0.56) 72%),
    radial-gradient(circle at 92% 45%, rgba(237, 212, 206, 0.72), transparent 13rem),
    var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 243, 240, 0.38), rgba(255, 243, 240, 0.08)),
    radial-gradient(ellipse at 89% 52%, rgba(237, 212, 206, 0.36), transparent 11rem),
    radial-gradient(ellipse at 90% 27%, rgba(87, 67, 62, 0.08), transparent 6rem);
}

.hero-bg::before {
  content: "";
  position: absolute;
  right: -3rem;
  top: 11rem;
  width: 260px;
  height: 190px;
  border-radius: 50%;
  background:
    linear-gradient(75deg, transparent 43%, rgba(87, 67, 62, 0.18) 44% 49%, transparent 50%),
    linear-gradient(115deg, transparent 43%, rgba(87, 67, 62, 0.14) 44% 49%, transparent 50%),
    linear-gradient(155deg, transparent 43%, rgba(87, 67, 62, 0.1) 44% 49%, transparent 50%);
  filter: blur(4px);
  opacity: 0.75;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 570px) minmax(360px, 1fr);
  align-items: end;
  gap: 2rem;
  width: min(1240px, calc(100% - 64px));
  min-height: 880px;
  margin: 0 auto;
  padding-top: 150px;
}

.hero-copy {
  align-self: center;
  padding-bottom: 48px;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 560px;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
}

h1 span,
h2 span,
.about-copy h2 {
  color: var(--soft-2);
}

.accent-line {
  width: 82px;
  height: 3px;
  margin: 35px 0 28px;
  background: var(--soft-2);
}

.hero-copy p {
  max-width: 430px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-copy .main-cta {
  margin-top: 18px;
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1rem !important;
}

.trust-note span {
  color: var(--soft-2);
}

.tiny-lock,
.tiny-pin,
.tiny-wave {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  color: var(--soft-2);
}

.tiny-lock::before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.tiny-lock::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 6px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.tiny-pin::before {
  content: "";
  position: absolute;
  inset: 1px 3px 4px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.tiny-wave::before,
.tiny-wave::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.tiny-wave::before {
  inset: 5px 4px 4px 5px;
}

.tiny-wave::after {
  inset: 1px 0 0 1px;
}

.portrait {
  position: relative;
  overflow: hidden;
}

.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-hero {
  align-self: stretch;
  min-height: 700px;
  overflow: visible;
}

.portrait-hero img {
  position: absolute;
  right: -24px;
  top: -10px;
  width: min(680px, 58vw);
  height: auto;
  --portrait-center-x: 0px;
  transform: translateX(var(--portrait-center-x));
  border-radius: 0;
  filter: drop-shadow(0 28px 54px var(--shadow));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 13%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 8%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 13%, #000 90%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 8%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.portrait-hero::after {
  content: "";
  position: absolute;
  inset: auto -28px 0 auto;
  width: min(680px, 58vw);
  height: 34%;
  background: linear-gradient(0deg, var(--bg) 10%, transparent);
}

.section-band,
.split-band,
.final-cta {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.42), transparent 25rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

.section-heading {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.3rem);
}

.section-heading p,
.final-cta p {
  color: var(--muted);
  font-size: 1.1rem;
}

.signals {
  padding: 38px 0 44px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: min(1240px, calc(100% - 64px));
  margin: 34px auto 28px;
}

.signal-grid article {
  min-height: 188px;
  padding: 30px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  text-align: center;
}

.signal-grid p {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.line-icon,
.mini-icon {
  display: inline-block;
  color: var(--soft-2);
}

.line-icon {
  width: 64px;
  height: 64px;
  border: 3px solid currentColor;
}

.line-icon.anxiety { border-radius: 45% 55% 42% 58%; box-shadow: inset 10px 0 0 transparent; }
.line-icon.panic { border-radius: 50%; border-bottom-color: transparent; position: relative; }
.line-icon.panic::after { content: ""; position: absolute; left: 18px; bottom: -18px; width: 24px; height: 28px; border: 3px solid currentColor; border-top: 0; border-radius: 0 0 16px 16px; }
.line-icon.sleep { border-top: 0; border-left: 0; border-radius: 50%; transform: rotate(-25deg); }
.line-icon.energy { border-radius: 8px; width: 38px; position: relative; }
.line-icon.energy::before { content: ""; position: absolute; inset: 12px 9px; border-top: 3px solid currentColor; border-bottom: 3px solid currentColor; }
.line-icon.heart { border: 0; position: relative; transform: rotate(-45deg); }
.line-icon.heart::before { content: ""; position: absolute; inset: 12px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; border-radius: 0 0 0 8px; }
.line-icon.mind { border-radius: 50%; position: relative; border-left-color: transparent; }
.line-icon.mind::after { content: ""; position: absolute; right: -21px; top: 18px; width: 21px; height: 30px; border-top: 3px solid currentColor; border-right: 3px solid currentColor; }

.down-mark {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto;
  border-right: 3px solid var(--soft-2);
  border-bottom: 3px solid var(--soft-2);
  transform: rotate(45deg);
}

.split-band {
  display: block;
  min-height: 0;
  padding: 56px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(87, 67, 62, 0.07), transparent 24rem),
    radial-gradient(circle at 80% 65%, rgba(255, 255, 255, 0.46), transparent 20rem),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}

.about-copy {
  width: min(980px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.eyebrow {
  color: var(--soft-2);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-top: 12px;
  font-size: 2.8rem;
}

.about-copy p {
  max-width: 900px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.about-copy .role span {
  color: var(--soft-2);
}

.credentials,
.areas-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.credentials {
  margin-top: 28px;
}

.credentials span,
.areas-row span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.35;
}

.mini-icon {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border: 2px solid currentColor;
}

.mini-icon.degree { transform: skewY(-18deg); border-radius: 3px; }
.mini-icon.brain { border-radius: 50% 45% 45% 50%; }
.mini-icon.person { border-radius: 50% 50% 18% 18%; }
.mini-icon.shield { border-radius: 5px 5px 18px 18px; }
.mini-icon.anxiety-small { border-radius: 45% 55% 42% 58%; }
.mini-icon.stress { border-radius: 0 0 16px 16px; border-top: 0; }
.mini-icon.heart-small { transform: rotate(-45deg); border-top: 0; border-right: 0; }
.mini-icon.sprout { border-radius: 0 50% 0 50%; }

.process {
  padding: 58px 0 70px;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 64px));
  margin: 44px auto 0;
}

.process-row article {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 22px;
}

.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft-2);
}

.step-icon b {
  position: absolute;
  right: -6px;
  top: -10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--button);
  color: white;
  font-size: 0.92rem;
}

.step-icon.chair::before,
.step-icon.plant::before {
  content: "";
  width: 38px;
  height: 42px;
  border: 3px solid currentColor;
}

.step-icon.chair::before {
  border-radius: 5px 5px 12px 12px;
  border-bottom-width: 7px;
}

.step-icon.plant::before {
  border-top: 0;
  border-left: 0;
  border-radius: 0 50% 0 50%;
  transform: rotate(-45deg);
}

.process-row h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.process-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.arrow {
  width: 38px;
  height: 2px;
  background: rgba(87, 67, 62, 0.42);
}

.arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-right: 2px solid rgba(87, 67, 62, 0.42);
  border-bottom: 2px solid rgba(87, 67, 62, 0.42);
  transform: translateY(-4px) rotate(-45deg);
}

.areas {
  padding: 46px 0 54px;
}

.areas-row {
  justify-content: center;
  width: min(1240px, calc(100% - 64px));
  margin: 44px auto 0;
}

.areas-row span {
  min-height: 54px;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.areas-row span:last-child {
  border-right: 0;
  padding-right: 0;
}

.final-cta {
  padding: 50px 0 30px;
  text-align: center;
}

.final-cta .main-cta {
  min-width: min(560px, calc(100% - 48px));
  min-height: 64px;
  margin-top: 12px;
  font-size: 1.15rem;
}

.whatsapp-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-strip {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 28px;
  color: var(--text);
  font-size: 0.86rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 18px max(32px, calc((100vw - 1240px) / 2));
  background: var(--bg-2);
  color: var(--text);
}

footer p {
  text-align: center;
  line-height: 1.45;
}

.footer-contact {
  display: flex;
  gap: 28px;
}

@media (max-width: 1020px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    width: min(100% - 32px, 720px);
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1.2rem;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
    padding: 28px 0 0;
  }

  .portrait-hero {
    min-height: 520px;
  }

  .portrait-hero img,
  .portrait-hero::after {
    right: 50%;
    width: min(560px, 100%);
  }

  .portrait-hero img {
    --portrait-center-x: 50%;
  }

  .portrait-hero::after {
    transform: translateX(50%);
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 32px, 720px);
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .about-copy {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
  }

  .credentials,
  .areas-row,
  .contact-strip,
  footer,
  .footer-contact {
    flex-wrap: wrap;
  }

  .process-row {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 720px);
  }

  .arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .areas-row {
    justify-content: flex-start;
    width: min(100% - 32px, 720px);
  }
}

@media (max-width: 620px) {
  .site-header {
    justify-content: center;
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 1.95rem;
    line-height: 1.13;
  }

  .hero-content,
  .hero-copy,
  .section-heading,
  .signal-grid,
  .process-row,
  .areas-row,
  .about-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .hero-copy p {
    width: 100%;
    max-width: 340px;
    font-size: 0.98rem;
  }

  .section-heading p {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.45;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 1.35rem;
    overflow-wrap: break-word;
  }

  .main-cta {
    width: 100%;
    padding: 0 18px;
    font-size: 1.08rem;
  }

  .portrait-hero {
    min-height: 420px;
  }

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

  .signal-grid p {
    font-size: 0.82rem;
    overflow-wrap: break-word;
  }

  .process-row article {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .areas-row span {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 16px;
  }

  footer {
    justify-content: center;
    text-align: center;
  }
}


.motion-loaded .site-header,
.motion-loaded .hero-copy h1,
.motion-loaded .accent-line,
.motion-loaded .hero-copy p,
.motion-loaded .hero-copy .main-cta,
.motion-loaded .trust-note,
.motion-loaded .portrait-hero {
  opacity: 1;
}
/* Motion layer */
.desktop-nav a,
.header-cta,
.main-cta {
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a:hover,
.header-cta:hover,
.main-cta:hover {
  transform: translateY(-3px);
}

.header-cta:hover,
.main-cta:hover {
  box-shadow: 0 22px 38px rgba(87, 67, 62, 0.3);
}

.site-header,
.hero-copy h1,
.hero-copy p,
.hero-copy .main-cta,
.trust-note,
.portrait-hero {
  animation: fadeSlideUp 850ms ease both;
}

.site-header { animation-delay: 80ms; }
.hero-copy h1 { animation-delay: 160ms; }
.hero-copy p { animation-delay: 360ms; }
.hero-copy .main-cta { animation-delay: 460ms; }
.trust-note { animation-delay: 560ms; }
.portrait-hero { animation-delay: 620ms; }

.accent-line {
  transform-origin: left center;
  animation: lineGrow 700ms ease both 520ms;
}

.portrait-hero img {
  animation: portraitFloat 7s ease-in-out infinite, portraitFade 900ms ease both 260ms;
}

.signal-grid article {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.signal-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(87, 67, 62, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.line-icon,
.mini-icon {
  transition: transform 220ms ease;
}

.signal-grid article:hover .line-icon,
.areas-row span:hover .mini-icon,
.credentials span:hover .mini-icon {
  transform: translateY(-3px) scale(1.05);
}

.down-mark {
  animation: softBounce 1.9s ease-in-out infinite;
}

.credentials span,
.areas-row span,
.process-row article,
.contact-strip span {
  transition: transform 220ms ease, opacity 220ms ease;
}

.credentials span:hover,
.areas-row span:hover,
.process-row article:hover,
.contact-strip span:hover {
  transform: translateY(-3px);
}

.step-icon {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.process-row article:hover .step-icon {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 35px rgba(87, 67, 62, 0.12);
}

.main-cta:hover .whatsapp-logo,
.header-cta:hover .whatsapp-logo {
  animation: iconWiggle 500ms ease;
}

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes portraitFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes portraitFloat {
  0%, 100% { transform: translateX(var(--portrait-center-x, 0px)) translateY(0); }
  50% { transform: translateX(var(--portrait-center-x, 0px)) translateY(-10px); }
}

@keyframes softBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  35% { transform: rotate(-10deg) scale(1.08); }
  70% { transform: rotate(8deg) scale(1.08); }
}

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

/* JavaScript motion helpers */
.hero-content {
  transform: translateY(var(--hero-scroll-lift, 0px));
  will-change: transform;
}

.hero-bg {
  transform: translate3d(var(--hero-parallax-x, 0px), var(--hero-parallax-y, 0px), 0) scale(1.03);
  transition: transform 140ms ease-out;
  will-change: transform;
}

.portrait-hero {
  transform: translate3d(var(--portrait-parallax-x, 0px), var(--portrait-parallax-y, 0px), 0);
  transition: transform 160ms ease-out;
  will-change: transform;
}

.header-cta,
.main-cta {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.cta-ripple {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripplePop 640ms ease-out forwards;
}

@keyframes ripplePop {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}


