:root {
  --ink: #0b0703;
  --ink-soft: #171007;
  --stone: #d9c39a;
  --papyrus: #ead7a9;
  --gold: #d8aa51;
  --gold-bright: #f1cf7a;
  --rust: #7d3d1c;
  --line: rgba(216, 170, 81, .28);
  --muted: #b9a98b;
  --wrap: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  color: #f5ead2;
  background:
    radial-gradient(circle at 50% -10%, rgba(145, 82, 27, .16), transparent 34rem),
    var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .14;
  background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.04) 50%, transparent 50.2%);
  background-size: 180px 100%;
}

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

.wrap { width: var(--wrap); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  padding: 20px clamp(20px, 4vw, 64px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(216, 170, 81, .18);
  background: linear-gradient(#080502cc, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__eye { font-size: 1.55rem; line-height: 1; }

.site-header nav,
footer nav {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
}

.site-header nav a,
footer nav a {
  color: #ded0b5;
  font-size: .72rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover,
footer nav a:hover,
.text-link:hover { color: var(--gold-bright); }

.header-play {
  justify-self: end;
  padding: 9px 18px;
  border: 1px solid rgba(216, 170, 81, .7);
  color: var(--gold-bright);
  font-size: .72rem;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__art,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__art { z-index: -2; object-fit: cover; object-position: center; }

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,2,1,.74), rgba(4,2,1,.15) 50%, rgba(4,2,1,.74)),
    linear-gradient(0deg, var(--ink) 0, transparent 28%, rgba(4,2,1,.32) 68%, rgba(4,2,1,.75) 100%);
}

.hero__content {
  max-width: 900px;
  padding-top: 94px;
  text-align: center;
}

.hero__logo {
  width: min(610px, 82vw);
  height: auto;
  margin: 0 auto -24px;
  filter: drop-shadow(0 12px 28px #000c);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .27em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin: 0 auto 20px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  text-shadow: 0 4px 24px #000;
}

h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 4.6vw, 4.4rem); }

h3 { margin-bottom: 12px; font-size: 1.35rem; font-weight: 400; }

.hero__lead {
  max-width: 670px;
  margin: 0 auto 28px;
  color: #dfd0b4;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  text-shadow: 0 2px 12px #000;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 24px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: #1d1005; background: linear-gradient(135deg, #f0d17f, #bd802e); box-shadow: 0 9px 30px #0008; }
.button--primary:hover { background: linear-gradient(135deg, #ffe49c, #d69b42); }
.button--ghost { border-color: rgba(234,215,169,.45); background: rgba(7,4,1,.44); backdrop-filter: blur(6px); }

.trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 22px 0 0;
  padding: 0;
  color: #cbbd9f;
  font-size: .7rem;
  letter-spacing: .12em;
  list-style: none;
  text-transform: uppercase;
}

.trust li::before { margin-right: 8px; color: var(--gold); content: "◆"; font-size: .55rem; }

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  color: #9f8b68;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll::after {
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: linear-gradient(var(--gold), transparent);
  content: "";
}

.proof {
  display: grid;
  border-block: 1px solid var(--line);
  background: #100b05;
  grid-template-columns: repeat(4, 1fr);
}

.proof__item {
  display: grid;
  min-height: 100px;
  padding: 22px;
  place-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof__item:last-child { border-right: 0; }
.proof__item span { color: #84775e; font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; }
.proof__item strong { color: var(--papyrus); font-size: 1.03rem; font-weight: 400; letter-spacing: .08em; }

.section { padding-block: clamp(76px, 10vw, 140px); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 6vw, 70px);
  align-items: center;
}

.section-copy {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { margin-left: 8px; }

.stone-frame { position: relative; width: min(1100px, 100%); margin: 0 auto; padding: 10px; border: 1px solid var(--line); background: #181006; box-shadow: 0 30px 80px #0008; }
.stone-frame::before, .stone-frame::after { position: absolute; width: 32px; height: 32px; border-color: var(--gold); content: ""; }
.stone-frame::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.stone-frame::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.stone-frame img { width: 100%; height: auto; }
.stone-frame figcaption { padding: 10px 8px 2px; color: #8f8066; font-size: .66rem; letter-spacing: .15em; text-align: center; text-transform: uppercase; }

.section--dark { border-block: 1px solid var(--line); background: linear-gradient(135deg, #130c05, #090602); }

.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-heading--left { margin-inline: 0; text-align: left; }

.rite-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.rite-card {
  position: relative;
  min-height: 290px;
  padding: 76px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(216,170,81,.08), transparent 55%),
    #0c0804;
}

.rite-card::after { position: absolute; right: 18px; bottom: -26px; color: rgba(216,170,81,.05); content: "𓂀"; font-size: 9rem; }
.rite-card__number { position: absolute; top: 24px; left: 30px; color: var(--gold); font-size: .7rem; letter-spacing: .22em; }
.rite-card h3 { color: var(--papyrus); }
.rite-card p, .feature-grid p { position: relative; z-index: 1; color: var(--muted); font-size: .92rem; }

.showcase { position: relative; display: grid; min-height: min(76vw, 820px); place-items: end start; overflow: hidden; }
.showcase > img, .showcase__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.showcase > img { object-fit: cover; object-position: center; }
.showcase__shade { background: linear-gradient(0deg, #090502 1%, rgba(9,5,2,.3) 55%, rgba(9,5,2,.2)), linear-gradient(90deg, rgba(9,5,2,.8), transparent 70%); }
.showcase__content { position: relative; z-index: 1; padding-bottom: clamp(54px, 8vw, 100px); }
.showcase__content h2 { max-width: 680px; margin-bottom: 18px; }
.showcase__content p:last-child { max-width: 590px; color: #d7c7a7; font-size: 1.06rem; }

.feature-grid article { padding: 28px 28px 18px; border-top: 1px solid var(--gold); background: rgba(216,170,81,.035); }
.feature-grid article > span { display: block; margin-bottom: 18px; color: var(--gold); font-size: 1.6rem; }

.ritual-path { border-block: 1px solid var(--line); background: #100a04; }
.path-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; }
.path-list li { position: relative; padding: 20px 42px; text-align: center; }
.path-list li:not(:last-child)::after { position: absolute; top: 43px; right: -7px; color: var(--gold); content: "→"; }
.path-list span { display: grid; width: 48px; height: 48px; margin: 0 auto 20px; place-content: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); }
.path-list strong { display: block; margin-bottom: 8px; color: var(--papyrus); font-size: 1.1rem; font-weight: 400; }
.path-list p { color: var(--muted); font-size: .9rem; }

.faq__list { max-width: 850px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 42px 22px 0; color: var(--papyrus); font-size: 1.05rem; cursor: pointer; }
.faq details p { max-width: 700px; padding: 0 0 24px; color: var(--muted); }
.faq summary::marker { color: var(--gold); }

.final-cta {
  padding: clamp(90px, 13vw, 170px) 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(138,70,17,.25), transparent 43%),
    linear-gradient(#0c0703d9, #0c0703f5),
    url("assets/farao-hero.webp") center/cover;
}

.final-cta__wing { color: var(--gold); font-size: 2.3rem; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

footer {
  display: grid;
  padding: 30px clamp(20px, 4vw, 64px);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #82745d;
  background: #070401;
}

footer p { margin: 0; font-size: .7rem; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
footer nav { justify-self: end; }
.brand--footer { font-size: .78rem; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero__content { padding-top: 82px; }
  .hero__logo { margin-bottom: -12px; }
  .hero__scroll { display: none; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(2) { border-right: 0; }
  .proof__item:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .rite-grid, .feature-grid, .path-list { grid-template-columns: 1fr; }
  .rite-card { min-height: 240px; }
  .path-list li:not(:last-child)::after { display: none; }
  .showcase { min-height: 680px; }
  footer { gap: 18px; grid-template-columns: 1fr; text-align: center; }
  footer .brand, footer nav { justify-self: center; }
}

@media (max-width: 520px) {
  :root { --wrap: min(100% - 28px, 1160px); }
  .site-header { padding: 14px; }
  .brand { font-size: .82rem; }
  .header-play { padding: 8px 12px; }
  .hero { min-height: 860px; }
  .hero__art { object-position: 50% center; }
  .hero__content { padding-top: 58px; }
  .hero__logo { width: 94vw; margin-bottom: -4px; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .trust { gap: 10px; font-size: .58rem; }
  .trust li::before { margin-right: 4px; }
  .proof__item { min-height: 88px; padding: 14px 8px; }
  .section { padding-block: 76px; }
  .rite-card { padding-inline: 22px; }
  .showcase { min-height: 620px; }
  .showcase > img { object-position: 48% center; }
  footer nav { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
