:root {
  --ink: #1c1917;
  --muted: #5e5850;
  --bg: #f3efe7;
  --glass: rgba(255, 251, 245, 0.64);
  --glass-strong: rgba(255, 251, 245, 0.86);
  --line: rgba(30, 24, 18, 0.08);
  --forest: #1e4d3a;
  --leaf: #2f6f4e;
  --sage: #7ea58a;
  --clay: #c45c3e;
  --sand: #e9e0d2;
  --gold: #b0894d;
  --dark: #1d1d1f;
  --shadow: 0 18px 50px rgba(40, 28, 18, 0.1);
  --radius: 28px;
  --font: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --max: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0 0 0.55em;
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--dark);
  color: #fff;
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus {
  top: 12px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
  animation: drift 18s var(--ease) infinite alternate;
}

.orb-a {
  width: 48vw;
  height: 48vw;
  left: -12vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(126, 165, 138, 0.55) 0%, transparent 70%);
}

.orb-b {
  width: 42vw;
  height: 42vw;
  right: -10vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(196, 92, 62, 0.22) 0%, transparent 70%);
  animation-duration: 22s;
  animation-delay: -4s;
}

.orb-c {
  width: 38vw;
  height: 38vw;
  left: 30vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(176, 137, 77, 0.28) 0%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -8s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 6%, 0) scale(1.12);
  }
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 70;
  background: linear-gradient(90deg, var(--forest), var(--clay));
  transform-origin: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  background: rgba(47, 111, 78, 0.1);
  border: 1px solid rgba(47, 111, 78, 0.16);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38rem;
  font-weight: 400;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 16px 0 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  position: relative;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(20, 40, 80, 0.08);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 50px rgba(20, 40, 80, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-track {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.nav-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: 36px;
  width: 72px;
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 10px 24px rgba(30, 77, 58, 0.28);
  transition: transform 0.48s var(--ease), width 0.48s var(--ease);
  z-index: 0;
  pointer-events: none;
}

.nav-track a {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 15px;
  border-radius: 999px;
  opacity: 1;
  transition: color 0.28s ease;
}

.nav-track a.is-hot {
  color: #fff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
}

.socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-1px) scale(1.03);
}

.btn:hover::after {
  transform: translateX(130%);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 77, 58, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #16382b;
  color: #fff;
}

.btn-gold {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 12px 28px rgba(196, 92, 62, 0.28);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: #a84b32;
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 28px 0 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.35rem);
  line-height: 1.12;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(120deg, #1e4d3a 8%, #2f6f4e 38%, #c45c3e 78%, #b0894d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.pill {
  display: inline-flex;
  align-items: center;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
}

.glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 78, 0.35), rgba(196, 92, 62, 0.16) 45%, transparent 70%);
  filter: blur(18px);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 36px;
  background: var(--sand);
  box-shadow: 0 30px 70px rgba(30, 77, 58, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transform: none;
}

.portrait-lg {
  width: min(100%, 480px);
  border-radius: 42px;
  animation: floaty 5.5s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.glass-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  animation: floaty 6s ease-in-out infinite;
}

.chip-1 {
  left: 0;
  top: 16%;
}

.chip-2 {
  right: 0;
  bottom: 18%;
  animation-delay: -2s;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.trust article,
.card,
.step,
.mode,
.form {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(20, 40, 80, 0.05);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.trust article {
  padding: 26px 22px;
}

.trust strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--forest), var(--clay));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.trust span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.16;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
  max-width: 40rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-weight: 500;
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--leaf);
  border-bottom: 2.5px solid var(--leaf);
  transform: rotate(-45deg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  padding: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card:nth-child(1) {
  background: linear-gradient(180deg, rgba(47, 111, 78, 0.14), var(--glass));
}

.card:nth-child(2) {
  background: linear-gradient(180deg, rgba(176, 137, 77, 0.16), var(--glass));
}

.card:nth-child(3) {
  background: linear-gradient(180deg, rgba(196, 92, 62, 0.14), var(--glass));
}

.card:nth-child(4) {
  background: linear-gradient(180deg, rgba(30, 77, 58, 0.1), var(--glass));
}

@media (hover: hover) {
  .card:hover,
  .step:hover,
  .mode:hover,
  .trust article:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(20, 40, 80, 0.12);
  }
}

.card h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.card .tag {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 12px;
}

.card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--forest);
}

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

.step {
  padding: 32px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--muted);
  line-height: 1.65;
}

.step b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--forest);
  font-size: 0.92rem;
}

.band {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #16382b 0%, #1e4d3a 48%, #8a3f2b 100%);
  box-shadow: var(--shadow);
}

.band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -40px;
  top: -80px;
  background: radial-gradient(circle, rgba(196, 92, 62, 0.4), transparent 70%);
  pointer-events: none;
}

.band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.18;
  position: relative;
}

.band p,
.band .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mode {
  padding: 36px;
}

.mode h2,
.mode h3 {
  font-size: 1.85rem;
  line-height: 1.2;
}

.mode p {
  line-height: 1.65;
}

.form {
  display: grid;
  gap: 16px;
  padding: 32px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  color: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 111, 78, 0.35);
  border-color: transparent;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.timeline {
  display: grid;
  border-left: 2px solid rgba(47, 111, 78, 0.25);
  padding-left: 24px;
}

.timeline article {
  position: relative;
  padding: 0 0 36px;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
}

.timeline h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.timeline .when {
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq [data-accordion-item] {
  border-bottom: 1px solid var(--line);
}

.faq button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq .answer {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.faq .is-open .answer {
  display: block;
}

.map-wrap {
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.site-footer {
  background: #16382b;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 128px;
  margin-top: 40px;
  border-radius: 36px 36px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.site-footer p {
  line-height: 1.65;
  max-width: 28rem;
}

.site-footer a {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer .socials a {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.site-footer .socials a:hover {
  background: #fff;
  color: var(--forest);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.88rem;
}

.sticky-cta {
  display: none;
}

.page-hero {
  padding: 56px 0 12px;
}

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 16px 40px rgba(18, 140, 126, 0.4);
  transition: transform 0.25s var(--ease);
}

.wa-fab:hover {
  transform: scale(1.06);
}

.wa-fab svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}
.reveal-delay-2 {
  animation-delay: 0.16s;
}
.reveal-delay-3 {
  animation-delay: 0.24s;
}
.reveal-delay-4 {
  animation-delay: 0.32s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1240px) and (min-width: 981px) {
  .header-inner .socials {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .trust,
  .cards,
  .steps,
  .two-col,
  .three-col,
  .band,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .header-inner {
    border-radius: 20px;
    min-height: 56px;
    gap: 12px;
    padding: 6px 8px 6px 12px;
  }

  .site-header {
    padding: 10px 0 6px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 70px 16px auto;
    background: rgba(255, 251, 245, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-track {
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    padding: 0;
  }

  .nav-indicator {
    display: none;
  }

  .nav-track a {
    padding: 12px 14px;
  }

  .nav-track a[aria-current="page"],
  .nav-track a.is-hot {
    background: var(--forest);
    color: #fff;
  }

  .nav .btn {
    width: 100%;
  }

  .socials {
    justify-content: center;
    padding: 6px 0 10px;
  }

  .glass-chip,
  .glow {
    display: none;
  }

  .hero {
    padding: 8px 0 0;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    margin-bottom: 12px;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin: 18px 0 14px;
  }

  .portrait-lg {
    width: min(70vw, 260px);
    animation: none;
  }

  .split {
    gap: 20px;
  }

  .hide-mobile {
    display: none;
  }

  .split > .portrait {
    width: min(58vw, 220px);
  }

  .trust {
    margin-top: 16px;
    gap: 10px;
  }

  .trust article,
  .card,
  .step,
  .mode {
    padding: 18px 16px;
  }

  .section {
    padding: 36px 0;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .cards,
  .steps,
  .two-col,
  .three-col {
    gap: 12px;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .band {
    padding: 28px 20px;
    gap: 16px;
    border-radius: 24px;
  }

  .page-hero {
    padding: 20px 0 4px;
  }

  .mode h2,
  .mode h3 {
    font-size: 1.45rem;
  }

  .form {
    padding: 20px 16px;
  }

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

  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  }

  .sticky-cta a {
    min-height: 44px;
    font-size: 0.85rem;
    padding: 0 8px;
  }

  .wa-fab {
    display: none;
  }

  main {
    padding-bottom: 8px;
  }

  .site-footer {
    padding: 40px 0 108px;
    border-radius: 24px 24px 0 0;
  }

  .footer-grid {
    gap: 20px;
  }

  .orb {
    opacity: 0.4;
    filter: blur(50px);
  }
}

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

  .orb,
  .portrait-lg,
  .glass-chip,
  .glow,
  .reveal {
    animation: none !important;
  }

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