:root {
  --ivory: #f7f1e6;
  --parchment: #ebe0cf;
  --sand: #c7aa7e;
  --bronze: #9a7a45;
  --forest: #213d2d;
  --forest-2: #315a43;
  --graphite: #242520;
  --muted: #6a6257;
  --line: rgba(52, 57, 43, 0.16);
  --white-soft: rgba(255, 252, 245, 0.82);
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background:
    linear-gradient(90deg, rgba(33, 61, 45, 0.035) 1px, transparent 1px),
    linear-gradient(var(--ivory), #f3eadc);
  background-size: 72px 72px, auto;
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.9), rgba(247, 241, 230, 0.62));
  border-bottom: 1px solid rgba(41, 46, 35, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand__mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
}

.brand__mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.brand strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(36, 37, 32, 0.76);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 132px clamp(20px, 5vw, 72px) 76px;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.98) 0%, rgba(247, 241, 230, 0.92) 39%, rgba(247, 241, 230, 0.36) 65%, rgba(33, 61, 45, 0.08) 100%),
    url("assets/hero-natasha-bowl.jpg") right center / auto 100% no-repeat,
    var(--parchment);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(33, 61, 45, 0.28), transparent);
  z-index: -1;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background:
    repeating-linear-gradient(0deg, rgba(154, 122, 69, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, transparent 0 47%, rgba(154, 122, 69, 0.12) 48%, transparent 49% 100%);
  pointer-events: none;
}

.hero__content {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker,
.offer-label {
  margin: 0 0 12px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__system {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  font-size: 86px;
}

h2 {
  font-size: 53px;
}

h3 {
  font-size: 42px;
}

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #4c473f;
  font-size: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--dark {
  color: #fff8ea;
  background: var(--forest);
}

.button--primary:hover,
.button--dark:hover {
  background: #172b20;
}

.button--ghost {
  color: var(--forest);
  border-color: rgba(33, 61, 45, 0.28);
  background: rgba(255, 252, 245, 0.46);
}

.button--light {
  color: var(--forest);
  background: var(--ivory);
}

.hero-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 16px;
  max-width: 760px;
  padding: 0;
  margin: 56px 0 0;
  list-style: none;
}

.hero-icons li {
  display: grid;
  gap: 9px;
  align-content: start;
  color: rgba(36, 37, 32, 0.78);
  font-size: 12px;
  line-height: 1.25;
}

.line-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(33, 61, 45, 0.24);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(255, 252, 245, 0.42);
}

.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.section {
  padding: clamp(84px, 10vw, 136px) 0;
}

.manifest {
  background:
    linear-gradient(rgba(255, 252, 245, 0.78), rgba(255, 252, 245, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(154, 122, 69, 0.04) 39px 40px),
    var(--ivory);
}

.manifest__grid,
.stimulation__grid,
.split,
.audit__wrap,
.access-grid {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
}

.manifest__grid,
.stimulation__grid,
.split,
.audit__wrap {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.manifest__body {
  font-size: 18px;
}

.dash-list,
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.dash-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
}

.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--bronze);
  transform: rotate(45deg);
}

.large-line {
  margin-top: 28px;
  font-family: var(--heading-font);
  font-size: 42px;
  line-height: 1.06;
}

.section--image {
  background: #f4eadc;
}

.split--reverse .visual-panel {
  order: 2;
}

.copy-block > * + * {
  margin-top: 20px;
}

.copy-block p {
  margin-bottom: 0;
}

.statement-list {
  display: grid;
  gap: 6px;
  margin: 22px 0;
  font-family: var(--heading-font);
  font-size: 34px;
  line-height: 1.14;
}

.statement-list p {
  margin: 0;
}

.visual-panel,
.portrait-panel {
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(45, 48, 38, 0.13);
  background: var(--parchment);
  box-shadow: 0 24px 70px rgba(45, 48, 38, 0.12);
}

.visual-panel--path {
  background: url("assets/nature-path.jpg") center / cover no-repeat;
}

.visual-panel--book {
  background:
    linear-gradient(180deg, rgba(33, 61, 45, 0.1), rgba(33, 61, 45, 0.18)),
    url("assets/ritual-book-candle.jpg") center / cover no-repeat;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section--dark {
  color: #f6eddd;
  background:
    linear-gradient(rgba(33, 61, 45, 0.94), rgba(25, 35, 30, 0.96)),
    url("assets/offer-still-life.jpg") center / cover no-repeat;
}

.section--dark .section-kicker,
.section--final .section-kicker {
  color: #d3b783;
}

.word-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.word-stack span {
  padding: 8px 12px;
  border: 1px solid rgba(247, 241, 230, 0.18);
  border-radius: 999px;
  color: rgba(255, 252, 245, 0.88);
  font-size: 14px;
}

.dash-list--light li::before {
  color: #d3b783;
}

.accent-box {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(247, 241, 230, 0.2);
  border-radius: 8px;
  color: #fff7e8;
  background: rgba(255, 252, 245, 0.08);
  font-family: var(--heading-font);
  font-size: 40px;
  line-height: 1.06;
}

.study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.study-list span {
  padding: 8px 10px;
  border: 1px solid rgba(33, 61, 45, 0.16);
  border-radius: 6px;
  color: var(--forest);
  background: rgba(255, 252, 245, 0.5);
  font-size: 13px;
}

.audit {
  background:
    linear-gradient(rgba(235, 224, 207, 0.76), rgba(247, 241, 230, 0.82)),
    var(--parchment);
}

.audit-card {
  display: grid;
  gap: 13px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(33, 61, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.78);
  box-shadow: 0 24px 70px rgba(45, 48, 38, 0.1);
}

.audit-card label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.audit-card input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--forest);
}

.audit-result {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 61, 45, 0.14);
}

.audit-result strong {
  color: var(--forest);
  font-family: var(--heading-font);
  font-size: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(33, 61, 45, 0.13);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.56);
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-card span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.feature-card h3 {
  margin-top: 16px;
  font-size: 31px;
}

.feature-card p {
  margin: 18px 0 0;
  color: #59534a;
}

.access {
  background: #f3eadc;
}

.access-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
}

.offer-card {
  overflow: hidden;
  border: 1px solid rgba(33, 61, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.78);
  box-shadow: 0 24px 70px rgba(45, 48, 38, 0.1);
}

.offer-card--residence {
  background:
    linear-gradient(rgba(255, 252, 245, 0.86), rgba(255, 252, 245, 0.92)),
    url("assets/offer-still-life.jpg") right bottom / 54% auto no-repeat;
}

.offer-card__media {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.9), rgba(247, 241, 230, 0.18)),
    url("assets/nature-path.jpg") center / cover no-repeat;
}

.offer-card__body {
  padding: clamp(24px, 4vw, 38px);
}

.offer-card h3 {
  line-height: 1.05;
}

.offer-card h4 {
  margin: 24px 0 0;
  color: var(--forest);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  display: grid;
  gap: 2px;
  width: fit-content;
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 3px solid var(--bronze);
  background: rgba(255, 252, 245, 0.72);
}

.price strong {
  font-size: 24px;
}

.price span {
  color: var(--muted);
}

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

.offer-card .button {
  width: 100%;
  margin-top: 28px;
}

.navigation-note {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(33, 61, 45, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.72);
}

.navigation-note h4 {
  margin-top: 0;
}

.section--final {
  color: #fff8ea;
  text-align: center;
  background:
    linear-gradient(rgba(25, 35, 30, 0.94), rgba(25, 35, 30, 0.96)),
    url("assets/ritual-book-candle.jpg") center / cover no-repeat;
}

.final__content {
  max-width: 860px;
}

.final h2 {
  margin: 0 auto;
}

.final p {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255, 248, 234, 0.82);
  font-size: 20px;
}

blockquote {
  margin: 42px auto 0;
  color: #fff8ea;
  font-family: var(--heading-font);
  font-size: 64px;
  line-height: 1.02;
}

.final .button {
  margin-top: 36px;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 248, 234, 0.72);
  background: #19231e;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .hero {
    min-height: auto;
    padding-top: 118px;
    background:
      linear-gradient(180deg, rgba(247, 241, 230, 0.95) 0%, rgba(247, 241, 230, 0.86) 44%, rgba(33, 61, 45, 0.26) 100%),
      url("assets/hero-natasha-bowl.jpg") center bottom / cover no-repeat;
  }

  .hero__content {
    padding-bottom: 300px;
  }

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

  .manifest__grid,
  .stimulation__grid,
  .split,
  .audit__wrap,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .visual-panel {
    order: initial;
  }

  .visual-panel,
  .portrait-panel,
  .portrait-panel img {
    min-height: 420px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 21px;
  }

  .statement-list {
    font-size: 32px;
  }

  .large-line,
  .accent-box {
    font-size: 34px;
  }

  blockquote {
    font-size: 48px;
  }

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

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand__mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .brand__mark svg {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 22px;
  }

  .brand small {
    max-width: 190px;
  }

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

  .hero {
    padding: 104px 18px 44px;
  }

  .hero__content {
    padding-bottom: 260px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero-icons {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-icons li {
    grid-template-columns: 46px 1fr;
    align-items: center;
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 49px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 31px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .statement-list,
  .large-line,
  .accent-box {
    font-size: 30px;
  }

  blockquote {
    font-size: 38px;
  }

  .visual-panel,
  .portrait-panel,
  .portrait-panel img {
    min-height: 350px;
  }

  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    flex-direction: column;
  }
}
