:root {
  --bg: #f6eee2;
  --surface: #fff8ec;
  --surface-warm: #f0e2cf;
  --ink: #2b1b0e;
  --hero-ink: #fff7ea;
  --muted: #786650;
  --gold: #d6a94f;
  --gold-soft: #e2bd68;
  --brown: #2b1b0e;
  --brown-soft: #503012;
  --green: #283c32;
  --green-dark: #1f332b;
  --line: rgba(74, 47, 24, 0.16);
  --shadow: 0 24px 70px rgba(43, 27, 14, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC",
    "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

img {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--hero-ink);
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(43, 27, 14, 0.9);
  box-shadow: 0 14px 40px rgba(43, 27, 14, 0.24);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.72);
  border-radius: 999px;
  background-color: rgba(255, 246, 231, 0.92);
  background-image: url("../../reference_assets/ChatGPT Image May 24, 2026, 05_54_43 PM.png");
  background-repeat: no-repeat;
  background-position: center -5px;
  background-size: 88px auto;
  box-shadow: 0 10px 28px rgba(43, 27, 14, 0.2);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 246, 231, 0.76);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 246, 231, 0.78);
  font-size: 0.9rem;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff2c2;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
}

.header-cta {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(214, 169, 79, 0.9);
  background: rgba(80, 48, 18, 0.28);
  color: #f4d88b;
}

.header-cta:hover {
  background: rgba(214, 169, 79, 0.18);
  color: #fff2c2;
}

.button {
  min-width: 204px;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
}

.button.primary {
  border: 1px solid rgba(255, 230, 160, 0.45);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(43, 27, 14, 0.22);
}

.button.primary:hover {
  background: var(--gold-soft);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--hero-ink);
  background-image: url("../../reference_assets/ChatGPT Image May 24, 2026, 05_11_34 PM.png");
  background-size: cover;
  background-position: center center;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 10, 7, 0.82) 0%, rgba(22, 16, 11, 0.58) 38%, rgba(22, 16, 11, 0.16) 70%, rgba(12, 9, 7, 0.14) 100%),
    linear-gradient(0deg, rgba(11, 8, 6, 0.36), transparent 48%);
}

.hero-practitioner-light {
  position: absolute;
  z-index: 1;
  top: 18%;
  right: 10%;
  width: 32%;
  height: 52%;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 232, 185, 0.16),
      rgba(255, 232, 185, 0.07) 38%,
      transparent 72%
    );
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 78px;
}

.hero-panel {
  max-width: 690px;
  padding: clamp(18px, 4vw, 34px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: var(--hero-ink);
  font-size: clamp(2.45rem, 8vw, 5.7rem);
  font-weight: 920;
  line-height: 1.12;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

h2 {
  color: var(--brown);
  font-size: clamp(1.78rem, 4.8vw, 3.35rem);
  font-weight: 880;
}

h3 {
  color: var(--brown);
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 247, 234, 0.9);
  font-size: clamp(1rem, 2.3vw, 1.26rem);
  line-height: 1.68;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

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

.hero-note {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.95rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.section {
  padding: clamp(70px, 10vw, 126px) 0;
}

.concerns {
  padding-top: clamp(56px, 7vw, 86px);
  background:
    linear-gradient(180deg, #f8f0e4 0%, #f3e6d4 100%);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.spotlight-panel p,
.final-inner p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.concern-card {
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(94, 61, 30, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.84);
  box-shadow: 0 16px 44px rgba(72, 45, 19, 0.08);
}

.dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(214, 169, 79, 0.18);
}

.concern-card:nth-child(2n) .dot {
  background: #7c5941;
  box-shadow: 0 0 0 8px rgba(124, 89, 65, 0.16);
}

.concern-card:nth-child(3n) .dot {
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(40, 60, 50, 0.14);
}

.concern-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
  min-height: 530px;
  background:
    linear-gradient(110deg, rgba(43, 27, 14, 0.97), rgba(80, 48, 18, 0.92)),
    var(--brown);
  color: var(--hero-ink);
}

.spotlight-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px);
}

.spotlight-panel h2 {
  color: var(--hero-ink);
}

.spotlight-panel p {
  color: rgba(255, 247, 234, 0.78);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 1px;
  background: rgba(255, 232, 185, 0.18);
}

.service-list span {
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 20px;
  background: rgba(214, 169, 79, 0.1);
  color: var(--hero-ink);
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  font-weight: 900;
}

.whatsapp {
  background: #f8f0e4;
}

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

.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.82);
  box-shadow: 0 14px 38px rgba(72, 45, 19, 0.07);
}

.steps span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing {
  background:
    linear-gradient(180deg, #efe0ca 0%, #f7efe4 100%);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.price-board {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.38fr) minmax(0, 0.62fr);
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--muted);
  font-weight: 800;
}

.price-row strong {
  color: var(--ink);
}

.price-row.highlight {
  background: #f3dfbd;
}

.final-cta {
  padding: clamp(68px, 10vw, 118px) 18px;
  background:
    linear-gradient(135deg, rgba(43, 27, 14, 0.97), rgba(40, 60, 50, 0.88)),
    var(--brown);
  color: var(--hero-ink);
  text-align: center;
}

.final-inner {
  width: min(780px, 100%);
  margin: 0 auto;
}

.final-inner h2 {
  color: var(--hero-ink);
}

.final-inner p {
  color: rgba(255, 247, 234, 0.82);
}

.final-inner .button {
  margin-top: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #20150d;
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .concern-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight,
  .two-column {
    grid-template-columns: 1fr;
  }

  .spotlight {
    min-height: 0;
  }

  .service-list span {
    min-height: 132px;
  }
}

@media (max-width: 768px) {
  .hero {
    background-position: 76% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 10, 7, 0.9) 0%, rgba(18, 13, 9, 0.78) 46%, rgba(18, 13, 9, 0.08) 100%),
      linear-gradient(0deg, rgba(11, 8, 6, 0.44), transparent 52%);
  }

  .hero-content {
    width: min(100% - 30px, 1040px);
    padding-top: 11rem;
  }

  h1 {
    max-width: 82vw;
    font-size: clamp(2.55rem, 11vw, 3.75rem);
    line-height: 1.02;
    word-break: keep-all;
    white-space: normal;
  }

  h1 span {
    white-space: nowrap;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-practitioner-light {
    top: 22%;
    right: 2%;
    width: 50%;
    height: 44%;
    background:
      radial-gradient(
        ellipse at center,
        rgba(255, 232, 185, 0.16),
        rgba(255, 232, 185, 0.07) 36%,
        transparent 70%
      );
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    background-position: center -4px;
    background-size: 72px auto;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-width: 96px;
    min-height: 42px;
    padding: 0 14px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .concern-grid,
  .steps,
  .service-list {
    grid-template-columns: 1fr;
  }

  .concern-card,
  .steps article {
    min-height: auto;
    padding: 20px;
  }

  .spotlight-panel {
    padding: 56px 20px 42px;
  }

  .service-list span {
    min-height: 92px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 360px) {
  .hero {
    background-position: 80% center;
  }
}

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