:root {
  --green: #809b57;
  --green-dark: #52683c;
  --ink: #302b27;
  --muted: #6f665f;
  --paper: #fffdf8;
  --soft: #f0eadf;
  --line: #ded5c7;
  --white: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  --logo-progress: 0;
  --logo-morph: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 76px clamp(34px, 5vw, 66px) 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  pointer-events: none;
}

.brand img {
  display: none;
}

.site-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: clamp(34px, 5vw, 66px);
  display: grid;
  min-width: 220px;
  gap: 4px;
  padding: 12px;
  font-weight: 700;
  color: #243320;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(82, 104, 60, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 49, 29, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
  pointer-events: none;
}

.site-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(128, 155, 87, 0.14);
  color: var(--green-dark);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 13px;
  color: #1f311d;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(31, 49, 29, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 49, 29, 0.18);
  cursor: pointer;
  pointer-events: auto;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 16px 34px rgba(31, 49, 29, 0.24);
  transform: translateY(-1px);
}

.nav-toggle-lines {
  display: grid;
  gap: 5px;
}

.nav-toggle-lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  padding: clamp(112px, 20vw, 220px) clamp(20px, 3vw, 34px) 32px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0) 100%),
    url("images/hero-background-clean.png") center top / cover no-repeat;
  background-color: #edf3de;
  overflow: hidden;
}

.hero h1,
.section h2,
.split-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-logo {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 2;
  display: block;
  width: var(--logo-size, min(250px, 32vw));
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 0;
  transform: translateX(-50%);
  transform-origin: top center;
  transition: filter 180ms ease, background 180ms ease, box-shadow 180ms ease;
  will-change: transform, width;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  background: rgba(255, 253, 248, calc(var(--logo-morph) * 0.5));
  border: 1px solid rgba(255, 255, 255, calc(var(--logo-morph) * 0.42));
  border-radius: 0;
  box-shadow: 0 18px 46px rgba(31, 49, 29, calc(var(--logo-morph) * 0.18));
  backdrop-filter: blur(calc(var(--logo-morph) * 14px));
  opacity: var(--logo-morph);
}

.hero-logo:focus-visible {
  outline: 2px solid rgba(82, 104, 60, 0.7);
  outline-offset: 4px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-full,
.logo-symbol,
.logo-mark-bg,
.logo-scroll-symbol {
  transition: none;
}

.logo-symbol,
.logo-mark-bg,
.logo-scroll-symbol {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9);
}

.logo-full {
  opacity: calc(1 - var(--logo-morph));
  transform: scale(calc(1 - var(--logo-morph) * 0.18));
}

.logo-scroll-symbol {
  opacity: var(--logo-morph);
  transform: scale(calc(0.74 + var(--logo-morph) * 0.16));
  filter: drop-shadow(0 8px 18px rgba(31, 49, 29, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  max-width: 1280px;
  min-height: 500px;
  margin: -36px auto 0;
  padding: clamp(40px, 5.2vw, 82px) clamp(44px, 7.5vw, 104px) 50px;
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.92) 0%, rgba(250, 245, 232, 0.82) 58%, rgba(247, 239, 219, 0.58) 100%),
    url("images/hero-panel-background.png") center / cover no-repeat;
}

.hero-content h1 {
  max-width: 900px;
  color: #34485d;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: #52683c;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p,
.split-copy p,
.contact-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-content > p {
  max-width: 780px;
  margin-top: 26px;
  color: #34485d;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

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

.split-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(48, 43, 39, 0.16);
}

.section {
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 42px;
}

.section-heading h2,
.split-copy h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.methods-section {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.88fr);
  gap: clamp(34px, 6vw, 64px);
  align-items: start;
  padding: 76px clamp(20px, 5vw, 72px) 84px;
  background:
    linear-gradient(90deg, rgba(241, 233, 212, 0.96) 0%, rgba(232, 222, 198, 0.9) 58%, rgba(220, 211, 184, 0.82) 100%),
    url("images/hero-panel-background.png") center / cover no-repeat;
  border-top: 1px solid rgba(82, 104, 60, 0.16);
  border-bottom: 1px solid rgba(82, 104, 60, 0.16);
  box-shadow:
    inset 0 18px 46px rgba(82, 104, 60, 0.08),
    inset 0 -20px 48px rgba(48, 43, 39, 0.06);
}

.methods-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid #31475a;
}

.methods-heading h2 {
  margin: 0 0 4px;
  color: #34485d;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.methods-heading p {
  margin: 0;
  color: #34485d;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.accordion-item {
  border-bottom: 1px solid #31475a;
}

.accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 32px 4px 31px 0;
  border: 0;
  color: #34485d;
  background: transparent;
  font: inherit;
  font-size: clamp(1.03rem, 1.5vw, 1.34rem);
  line-height: 1.38;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger strong {
  font-weight: 800;
}

.accordion-icon {
  width: 16px;
  height: 16px;
  border-right: 2px solid #006b5c;
  border-bottom: 2px solid #006b5c;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: translateY(5px) rotate(225deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel > div {
  min-height: 0;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  margin: 0 44px 18px 0;
  color: #34485d;
  font-size: 1.03rem;
}

.methods-image {
  padding-top: 80px;
}

.methods-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--soft);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(360px, 520px);
  justify-content: center;
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(24px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(48, 43, 39, 0.2) 0%, rgba(48, 43, 39, 0.48) 54%, rgba(48, 43, 39, 0.74) 100%),
    url("images/about-ripples.png") center 58% / cover no-repeat;
}

.about-portrait {
  justify-self: center;
  width: min(390px, 72vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #d5aa1f;
  box-shadow: 0 28px 80px rgba(31, 49, 29, 0.24);
}

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

.about-copy {
  max-width: 520px;
  color: #f5fbff;
}

.about-copy .eyebrow {
  color: #f5fbff;
}

.about-copy h2 {
  margin: 0 0 32px;
  color: #f5fbff;
  font-size: clamp(1.55rem, 2.7vw, 2.5rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.about-copy p {
  margin: 0 0 24px;
  color: #f5fbff;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.46;
}

.quote-section {
  display: grid;
  min-height: clamp(220px, 26vw, 360px);
  align-content: center;
  justify-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(24px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(236, 246, 247, 0.88), rgba(236, 246, 247, 0.62)),
    linear-gradient(180deg, rgba(31, 49, 29, 0.08), rgba(31, 49, 29, 0.2)),
    url("images/about-ripples.png") center 46% / cover no-repeat;
}

.quote-section blockquote {
  max-width: 1050px;
  margin: 0;
  color: #34485d;
  font-size: clamp(1.85rem, 3.3vw, 3.4rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.quote-section cite {
  display: block;
  margin-top: 18px;
  color: rgba(52, 72, 93, 0.78);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.balance-section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: #fffdf8;
}

.balance-heading {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.balance-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #34485d;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  line-height: 1.1;
}

.balance-heading > p:last-child {
  max-width: 780px;
  margin: 18px 0 0;
  color: #514b45;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}

.balance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.balance-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0;
  border-radius: 8px;
}

.balance-card.featured {
  padding: 0 18px 18px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(128, 155, 87, 0.38);
  box-shadow: 0 26px 70px rgba(48, 43, 39, 0.12);
}

.balance-card.featured .balance-image {
  margin-right: -18px;
  margin-left: -18px;
  border-radius: 8px 8px 0 0;
}

.balance-card.featured h3,
.balance-card.featured p:not(.balance-tag) {
  padding: 0 4px;
}

.balance-card h3 {
  margin: 0;
  color: #302b27;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.balance-card p {
  margin: 0;
  color: #514b45;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.balance-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 0;
  padding: 12px 18px;
  color: #fffaf1;
  background: #52683c;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(31, 49, 29, 0.24);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.balance-image {
  position: relative;
  min-height: clamp(260px, 28vw, 420px);
  border-radius: 8px;
  background-color: #e8ded0;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 60px rgba(48, 43, 39, 0.14);
}

.soul-image {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(31, 49, 29, 0.14)),
    url("images/balance-soul.png");
  background-position: center;
}

.mind-image {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(31, 49, 29, 0.16)),
    url("images/balance-mind.png");
  background-position: center;
}

.body-image {
  background-image:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(31, 49, 29, 0.12)),
    url("images/balance-body.png");
  background-position: center;
}

.muted {
  background: #f8f5ed;
}

.aura-section {
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 32%, rgba(244, 222, 116, 0.16), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(128, 155, 87, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf1 0%, #f7f1e6 100%);
}

.aura-heading {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.aura-heading h2 {
  margin: 0;
  color: #34485d;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.aura-heading > p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.aura-explorer {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.aura-visual {
  position: relative;
  overflow: hidden;
  margin-left: 0;
  border-radius: 0;
  aspect-ratio: 782 / 664;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 235, 139, 0.18), transparent 38%),
    #fffaf1;
  box-shadow: none;
}

.aura-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.aura-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(26px, 4vw, 38px);
  height: clamp(26px, 4vw, 38px);
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease, box-shadow 160ms ease, outline-color 160ms ease;
}

.aura-dot:hover,
.aura-dot.is-active {
  outline: 4px solid rgba(255, 250, 241, 0.82);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 3px rgba(0, 107, 92, 0.38), 0 8px 22px rgba(31, 49, 29, 0.28);
}

.aura-dot.is-active {
  border-color: #fffaf1;
  background: rgba(255, 250, 241, 0.18);
  outline: 5px solid rgba(0, 107, 92, 0.32);
  box-shadow: 0 0 0 3px rgba(255, 250, 241, 0.86), 0 10px 26px rgba(31, 49, 29, 0.35);
}

.aura-info {
  min-height: clamp(340px, 39vw, 500px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(128, 155, 87, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.aura-layer {
  margin: 0 0 14px;
  color: #d99b00;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aura-info h3 {
  margin: 0 0 16px;
  color: #34485d;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.15;
}

.aura-info p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.aura-explanation {
  width: 100%;
  max-width: 1180px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(22px, 3vw, 34px);
  border-left: 4px solid var(--green);
  background: rgba(255, 253, 248, 0.78);
}

.aura-explanation p {
  max-width: 940px;
  margin: 0;
  color: #34485d;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.58;
}

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

.benefit-list div {
  min-height: 96px;
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--white);
  font-weight: 650;
}

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

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card,
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 18px 48px rgba(128, 155, 87, 0.12);
}

.price {
  margin: 12px 0 10px;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--green-dark);
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.price:not(.price-text) span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.price-text {
  max-width: 360px;
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  line-height: 1.16;
}

.price-text span {
  display: block;
  margin-top: 6px;
}

.price-meta {
  max-width: 420px;
  margin: -2px 0 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.price-card li {
  margin: 8px 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-underline-offset: 5px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(60px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.contact-section p {
  color: #ddd6cc;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.form-check {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-note.is-success {
  color: #d7f0c2;
}

.form-note.is-error {
  color: #ffd0c4;
}


.disclaimer {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 42px clamp(20px, 5vw, 72px);
  background: #e8efdd;
}

.disclaimer img {
  width: 96px;
}

.disclaimer h2 {
  margin: 0 0 8px;
}

.disclaimer p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #f5fbff;
  background:
    radial-gradient(circle at 50% 35%, rgba(128, 155, 87, 0.18), transparent 32%),
    linear-gradient(90deg, #302b27 0%, #25211e 100%);
}

.site-footer p {
  margin: 0;
}

.footer-mandala {
  width: clamp(72px, 9vw, 108px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  justify-self: center;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.cookie-consent {
  position: fixed;
  inset: auto clamp(16px, 3vw, 34px) clamp(16px, 3vw, 34px) auto;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent.is-collapsed .cookie-consent-card {
  display: none;
}

.cookie-consent.is-collapsed .cookie-mini {
  display: inline-flex;
}

.cookie-consent-card {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 76px 18px 18px;
  color: #233b31;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.62), rgba(239, 246, 232, 0.42)),
    rgba(255, 253, 248, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 50px rgba(31, 49, 29, 0.18);
  backdrop-filter: blur(18px) saturate(1.1);
  pointer-events: auto;
}

.cookie-mini {
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  color: #233b31;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.68), rgba(239, 246, 232, 0.46)),
    rgba(255, 253, 248, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 36px rgba(31, 49, 29, 0.16);
  backdrop-filter: blur(16px) saturate(1.08);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: auto;
}

.cookie-mini[hidden] {
  display: none;
}

.cookie-collapse {
  position: absolute;
  top: 16px;
  right: 68px;
  padding: 6px 8px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.52);
  border: 1px solid rgba(82, 104, 60, 0.18);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-collapse:hover,
.cookie-mini:hover {
  background: rgba(255, 253, 248, 0.78);
}

.cookie-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  opacity: 0.9;
}

.cookie-consent-copy h2 {
  margin: 2px 0 8px;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.05;
}

.cookie-consent-copy p {
  max-width: 500px;
  margin: 0;
  color: #5f665b;
  font-size: 0.94rem;
}

.cookie-consent-copy a {
  display: inline-flex;
  margin-top: 10px;
  color: #52683c;
  font-weight: 800;
  text-underline-offset: 4px;
  font-size: 0.92rem;
}

.cookie-kicker {
  margin: 0;
  color: #52683c;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px 11px;
  border: 1px solid rgba(82, 104, 60, 0.16);
  background: rgba(255, 253, 248, 0.38);
}

.cookie-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-dark);
  margin-top: 3px;
}

.cookie-option strong {
  display: block;
  color: #2f4731;
}

.cookie-option small {
  display: block;
  color: #69635c;
  font-size: 0.78rem;
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--green);
  cursor: pointer;
  font-size: 0.88rem;
}

.cookie-actions .button-secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.72);
}

.legal-page {
  color: #34485d;
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 222, 116, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f7f1e6 100%);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
}

.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #1f311d;
  font-weight: 900;
  text-decoration: none;
}

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

.legal-header nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

.legal-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

.legal-main h1 {
  margin: 0 0 22px;
  color: #34485d;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.legal-main h2 {
  margin: 46px 0 12px;
  color: #34485d;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.2;
}

.legal-main h3 {
  margin: 26px 0 8px;
  color: #302b27;
  font-size: 1.16rem;
}

.legal-main p,
.legal-main li {
  color: #514b45;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.68;
}

.legal-main a {
  color: #006b5c;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(128, 155, 87, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(48, 43, 39, 0.08);
}

.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: rgba(232, 239, 221, 0.78);
}

@media (max-width: 820px) {
  .site-header {
    padding: max(24px, calc((min(250px, 32vw) - 46px) / 2)) 28px 0;
  }

  .nav-toggle {
    justify-content: center;
    width: 46px;
    min-width: 46px;
    min-height: 46px;
    padding: 0;
    background: rgba(255, 253, 248, 0.96);
    transform: translateY(calc(var(--logo-progress) * -16px));
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    transform: translateY(calc(var(--logo-progress) * -16px));
  }

  .nav-toggle-label {
    display: none;
  }

  .site-nav {
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    min-width: 0;
    padding: 10px;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero,
  .split-section,
  .contact-section,
  .methods-section,
  .about-section,
  .balance-grid,
  .aura-explorer,
  .benefit-list,
  .pricing,
  .disclaimer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(112px, 34vw, 150px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.12) 100%),
      url("images/hero-background-clean.png") center top / auto 520px no-repeat;
    background-color: #edf3de;
  }

  .hero-content {
    margin-top: -28px;
  }

  .hero-media {
    order: -1;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .methods-section {
    padding-top: 48px;
  }

  .methods-image {
    order: -1;
    padding-top: 0;
  }

  .about-section {
    gap: 32px;
    background:
      linear-gradient(180deg, rgba(48, 43, 39, 0.3) 0%, rgba(48, 43, 39, 0.72) 100%),
      url("images/about-ripples.png") center center / cover no-repeat;
  }

  .about-portrait {
    justify-self: center;
    width: min(300px, 78vw);
  }

  .about-copy {
    max-width: none;
  }

  .accordion-trigger {
    padding: 24px 2px 23px 0;
  }

  .aura-info {
    min-height: 0;
  }

  .aura-visual {
    margin-left: 0;
    max-width: 620px;
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }

  .cookie-consent {
    inset: auto 12px 12px;
    justify-content: center;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    gap: 13px;
    width: min(356px, calc(100vw - 24px));
    padding: 16px 66px 16px 16px;
    max-height: calc(100vh - 24px);
    overflow: auto;
  }

  .cookie-logo {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .cookie-collapse {
    top: 14px;
    right: 58px;
  }

  .cookie-options {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 100%;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .hero {
    padding-top: clamp(190px, 25vw, 240px);
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0) 100%),
      url("images/hero-background-clean.png") center top / 100% auto no-repeat;
    background-color: #edf3de;
  }

  .hero-content {
    margin-top: clamp(-36px, -3vw, -20px);
    padding-top: clamp(136px, 15vw, 168px);
  }
}

@media (min-width: 821px) and (max-width: 1180px) and (max-height: 560px) {
  .hero {
    padding-top: clamp(205px, 24vw, 235px);
  }

  .hero-content {
    margin-top: -24px;
    padding-top: clamp(124px, 16vw, 156px);
  }
}

