@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --forest-950: #0b1710;
  --forest-900: #12251a;
  --forest-800: #1b3425;
  --forest-700: #31503b;
  --wine: #6b2836;
  --wine-dark: #461923;
  --bronze: #b0874e;
  --bronze-light: #d4b071;
  --parchment: #eee4d2;
  --paper: #f8f3e9;
  --linen: #e4dac7;
  --ink: #20231e;
  --ink-soft: #62655d;
  --line: rgba(32, 35, 30, .16);
  --line-light: rgba(255, 255, 255, .16);
  --serif: 'Libre Caslon Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--bronze-light); color: var(--forest-950); }

.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -6rem; left: 1rem; z-index: 999; padding: .7rem 1rem; background: var(--paper); border: 1px solid var(--bronze); }
.skip-link:focus { top: 1rem; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; text-wrap: balance; }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.8rem, 7.6vw, 7.7rem); letter-spacing: -.055em; line-height: .86; }
h2 { margin-bottom: 1.1rem; font-size: clamp(2.8rem, 5.5vw, 5.3rem); letter-spacing: -.045em; line-height: .95; }
h3 { margin-bottom: .6rem; font-size: 1.65rem; line-height: 1.08; }
.kicker { display: inline-flex; align-items: center; gap: .8rem; color: var(--wine); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kicker::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.kicker.light { color: var(--bronze-light); }
.lede { max-width: 670px; color: var(--ink-soft); font-size: clamp(1rem, 2vw, 1.2rem); }
.italic { font-style: italic; }
.bronze { color: var(--bronze); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 40; color: #fff; }
.header-inner { min-height: 88px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; border-bottom: 1px solid var(--line-light); }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: inherit; text-decoration: none; }
.brand-seal { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(212,176,113,.62); border-radius: 50%; color: var(--bronze-light); font-family: var(--serif); font-size: 1.2rem; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.brand-copy small { margin-top: .28rem; color: rgba(255,255,255,.6); font-size: .56rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.nav { display: flex; justify-content: center; gap: 2.1rem; }
.nav a { color: rgba(255,255,255,.76); font-size: .77rem; font-weight: 600; text-decoration: none; }
.nav a:hover { color: var(--bronze-light); }
.menu-button { display: none; width: 46px; height: 40px; border: 1px solid var(--line-light); background: transparent; color: #fff; font-size: .72rem; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .85rem 1.35rem; border: 1px solid transparent; background: none; color: inherit; font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-align: center; text-decoration: none; text-transform: uppercase; transition: transform .16s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.97); }
.button.bronze-button { background: var(--bronze-light); color: var(--forest-950); box-shadow: 0 16px 40px rgba(176,135,78,.22); }
.button.bronze-button:hover { background: #e0c28c; box-shadow: 0 19px 48px rgba(176,135,78,.3); }
.button.outline-light { border-color: rgba(255,255,255,.38); color: #fff; }
.button.outline-light:hover { background: rgba(255,255,255,.08); }
.button.forest-button { background: var(--forest-900); color: #fff; }
.button.link-button { min-height: auto; padding: 0 0 .25rem; border-bottom: 1px solid var(--wine); color: var(--wine-dark); }

.hero { position: relative; min-height: 930px; overflow: hidden; background: var(--forest-950); color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.23) 50%, transparent 51%), linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 72px 100%, 100% 72px; mask-image: linear-gradient(to right, #000, transparent 65%); }
.hero::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 90px; background: var(--parchment); clip-path: polygon(0 100%, 100% 100%, 100% 35%, 68% 52%, 38% 20%, 0 48%); }
.hero-grid { position: relative; z-index: 2; min-height: 930px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(3rem, 6vw, 7rem); padding-block: 155px 145px; }
.hero-copy h1 span { display: block; color: var(--bronze-light); font-size: .72em; }
.hero-copy .lede { color: rgba(255,255,255,.72); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { margin-top: 1rem; color: rgba(255,255,255,.48); font-size: .75rem; }
.hero-portrait { position: relative; min-height: 650px; }
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(212,176,113,.35); border-radius: 48% 48% 4px 4px / 24% 24% 4px 4px; box-shadow: 0 50px 120px rgba(0,0,0,.48); }
.hero-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,23,16,.75), transparent 45%); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-emblem { position: absolute; z-index: 3; left: -58px; bottom: 58px; width: 132px; height: 132px; display: grid; place-items: center; border: 1px solid var(--bronze-light); border-radius: 50%; background: var(--wine-dark); color: var(--bronze-light); box-shadow: 0 20px 50px rgba(0,0,0,.35); font-family: var(--serif); font-size: 2.3rem; }
.hero-emblem::after { content: 'ORA · LABORA · CAMINA'; position: absolute; width: 118px; height: 118px; display: grid; place-items: start center; border: 1px solid rgba(212,176,113,.35); border-radius: 50%; color: rgba(212,176,113,.78); font-family: var(--sans); font-size: .48rem; letter-spacing: .09em; line-height: 1.1; padding-top: 9px; }

.value-strip { position: relative; z-index: 5; margin-top: -30px; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); background: var(--paper); border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(37,33,24,.13); }
.value-item { padding: 1.6rem 1.45rem; border-right: 1px solid var(--line); }
.value-item:last-child { border: 0; }
.value-item b { display: block; margin-bottom: .25rem; color: var(--wine); font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.value-item span { color: var(--ink-soft); font-size: .77rem; }

.section { padding: clamp(90px, 11vw, 150px) 0; }
.section.paper { background: var(--paper); }
.section.forest { position: relative; overflow: hidden; background: var(--forest-950); color: #fff; }
.section.forest h2, .section.forest h3 { color: #fff; }
.section.forest .lede { color: rgba(255,255,255,.63); }
.section.forest::before { content: 'PAX'; position: absolute; right: -1vw; bottom: -10vw; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: clamp(16rem, 36vw, 38rem); line-height: .7; }
.section.wine { background: var(--wine-dark); color: #fff; }
.section.wine h2 { color: #fff; }
.section.wine .lede { color: rgba(255,255,255,.7); }

.intro-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(3rem, 9vw, 10rem); }
.roman { color: var(--bronze); font-family: var(--serif); font-size: clamp(5rem, 10vw, 9rem); line-height: .8; }
.intro-copy .statement { color: var(--forest-900); font-family: var(--serif); font-size: clamp(1.7rem, 3.2vw, 2.7rem); line-height: 1.2; }
.rule { margin-top: 2.5rem; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 2px solid var(--wine); color: var(--ink-soft); }

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 4rem; border: 1px solid var(--line); background: var(--line); }
.step { min-height: 340px; display: flex; flex-direction: column; padding: 2rem; background: var(--parchment); }
.step span { color: var(--wine); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.step h3 { margin-top: auto; font-size: 2.25rem; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }

.module-head { display: grid; grid-template-columns: 1fr .75fr; gap: 5rem; align-items: end; }
.modules { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 4rem; border: 1px solid var(--line-light); }
.module { min-height: 245px; padding: 2rem; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.module:nth-child(even) { border-right: 0; }
.module:nth-last-child(-n+2) { border-bottom: 0; }
.module-no { display: flex; justify-content: space-between; color: var(--bronze-light); font-family: var(--serif); }
.module h3 { margin-top: 3rem; font-size: 1.8rem; }
.module p { margin: 0; color: rgba(255,255,255,.58); font-size: .85rem; }

.ritual-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.ritual-media { position: relative; }
.ritual-media img { width: 100%; min-height: 560px; object-fit: cover; box-shadow: 0 28px 70px rgba(37,33,24,.2); }
.ritual-media::after { content: 'BENEDICTUS'; position: absolute; right: -25px; bottom: -25px; padding: .8rem 1rem; background: var(--wine); color: #fff; font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.practice-list { display: grid; gap: .9rem; margin-top: 2rem; }
.practice { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.practice b { color: var(--wine); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.practice strong { display: block; }
.practice small { color: var(--ink-soft); }

.journey { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.days { display: grid; grid-template-columns: repeat(5,1fr); gap: .55rem; }
.day { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(212,176,113,.24); color: var(--bronze-light); font-family: var(--serif); font-size: 1.25rem; }
.day:nth-child(7n), .day:nth-child(11n) { background: rgba(212,176,113,.08); }
.quote { margin-top: 2.2rem; padding-left: 1.3rem; border-left: 1px solid var(--bronze); color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.28rem; }

.progress-grid { display: grid; grid-template-columns: 1fr .92fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.mission-card { padding: 2.6rem; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 22px 60px rgba(37,33,24,.1); }
.mission-top { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.mission-top span { color: var(--wine); font-family: var(--serif); font-size: 1.25rem; }
.missions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.2rem; }
.missions p { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.missions p::before { content: '✦'; margin-right: .55rem; color: var(--bronze); }
.progress-copy .lede { margin-bottom: 2rem; }
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 1.2rem .6rem; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat b { display: block; color: var(--wine); font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.stat span { color: var(--ink-soft); font-size: .7rem; text-transform: uppercase; }

.gift-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid rgba(212,176,113,.28); background: rgba(255,255,255,.04); }
.gift-label { display: grid; place-items: center; min-height: 390px; background: var(--wine-dark); color: var(--bronze-light); text-align: center; }
.medal { width: 190px; height: 190px; display: grid; place-items: center; border: 2px solid var(--bronze); border-radius: 50%; box-shadow: inset 0 0 0 9px var(--wine-dark), inset 0 0 0 11px rgba(212,176,113,.4); font-family: var(--serif); font-size: 3rem; }
.gift-content { padding: clamp(2rem, 6vw, 5rem); }
.gift-content h3 { margin: 1rem 0 1.1rem; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.gift-content p { color: rgba(255,255,255,.65); }
.laws { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.laws span { padding: .45rem .65rem; border: 1px solid rgba(212,176,113,.23); color: var(--bronze-light); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }

.offer { display: grid; grid-template-columns: 1fr .88fr; gap: 5rem; align-items: center; }
.offer-box { padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(212,176,113,.34); background: rgba(255,255,255,.045); }
.offer-list { list-style: none; display: grid; gap: .75rem; margin: 1.5rem 0 2rem; padding: 0; }
.offer-list li { position: relative; padding-left: 1.6rem; color: rgba(255,255,255,.76); }
.offer-list li::before { content: '✦'; position: absolute; left: 0; color: var(--bronze-light); }
.offer-note { margin: 1rem 0 0; color: rgba(255,255,255,.5); font-size: .74rem; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6rem; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 1.4rem 2.5rem 1.4rem 0; list-style: none; cursor: pointer; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: .2rem; color: var(--wine); font-family: var(--serif); font-size: 1.6rem; transition: transform .2s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 2.5rem 1.45rem 0; color: var(--ink-soft); font-size: .9rem; }

.final { position: relative; overflow: hidden; padding: 125px 0; background: var(--linen); }
.final::after { content: '✢'; position: absolute; right: 2vw; top: 50%; color: rgba(107,40,54,.08); font-family: var(--serif); font-size: 24rem; transform: translateY(-50%); }
.final-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .55fr; gap: 4rem; align-items: end; }
.final-inner h2 { margin-bottom: 0; }
.final-action { display: grid; gap: 1rem; }
.final-action p { color: var(--ink-soft); font-size: .77rem; }

.site-footer { padding: 72px 0 24px; background: #06131a; color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.2fr .75fr .85fr; gap: 4rem; padding-bottom: 3.5rem; }
.footer-brand .brand { margin-bottom: 1.5rem; }
.footer-brand > p { max-width: 380px; color: rgba(255,255,255,.55); font-family: var(--serif); font-size: 1.28rem; line-height: 1.3; }
.company { color: rgba(255,255,255,.5); font-size: .73rem; line-height: 1.7; }
.footer-col h3 { color: var(--bronze-light); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a { display: block; margin: .55rem 0; color: rgba(255,255,255,.68); font-size: .79rem; text-decoration: none; }
.footer-col a:hover { color: var(--bronze-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.38); font-size: .7rem; }
.kiwify-badge { display: inline-flex; align-items: center; gap: .5rem; color: #9acb3b; font-size: .75rem; white-space: nowrap; }
.kiwify-badge svg { width: 18px; height: 18px; flex: 0 0 auto; stroke: currentColor; }

.cookie-banner { position: fixed; z-index: 80; right: 20px; bottom: 20px; width: min(470px, calc(100% - 40px)); padding: 1.35rem; border: 1px solid rgba(212,176,113,.36); background: rgba(6,19,26,.97); color: #fff; box-shadow: 0 26px 80px rgba(0,0,0,.4); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; font-family: var(--serif); font-size: 1.3rem; }
.cookie-banner p { color: rgba(255,255,255,.62); font-size: .76rem; }
.cookie-banner a { color: var(--bronze-light); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cookie-actions .button { min-height: 40px; padding: .5rem .8rem; }
.mobile-buy { display: none; }

.legal-hero { padding: 150px 0 82px; background: linear-gradient(135deg, var(--forest-950), #153324); color: #fff; }
.legal-hero h1 { max-width: 840px; margin: 1rem 0 .8rem; }
.legal-hero p { max-width: 750px; color: rgba(255,255,255,.66); }
.legal-main { padding: 85px 0 110px; }
.legal-grid { display: grid; grid-template-columns: 235px 1fr; gap: clamp(3rem, 8vw, 8rem); }
.legal-meta { position: sticky; top: 32px; align-self: start; color: var(--ink-soft); font-size: .75rem; }
.legal-meta a { display: inline-block; margin-top: 1rem; color: var(--wine-dark); text-decoration-color: var(--bronze); }
.legal-content { max-width: 790px; }
.legal-content section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border: 0; }
.legal-content h2 { font-size: 2.1rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: .94rem; }
.legal-content li { margin-bottom: .45rem; }
.legal-callout { padding: 1.3rem 1.45rem; border-left: 2px solid var(--wine); background: #e6d9c3; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .nav, .nav-cta { display: none; }
  .menu-button { display: block; justify-self: end; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav.open { position: fixed; inset: 0; display: grid; align-content: center; justify-items: center; gap: 1.4rem; background: rgba(11,23,16,.98); }
  .nav.open a { font-family: var(--serif); font-size: 2rem; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 145px 0 180px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-portrait { min-height: 640px; width: min(520px, 90vw); margin-inline: auto; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .module-head, .ritual-feature, .journey, .progress-grid, .offer, .faq-grid, .final-inner, .legal-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 230px; }
  .ritual-media img { min-height: 430px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-meta { position: static; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1200px); }
  body { padding-bottom: 68px; }
  .site-header .brand-copy small { display: none; }
  h1 { font-size: clamp(3.45rem, 16vw, 5rem); }
  h2 { font-size: clamp(2.7rem, 12vw, 3.8rem); }
  .hero-grid { padding-top: 128px; }
  .hero-actions .button { width: 100%; }
  .hero-portrait { min-height: 520px; }
  .hero-emblem { left: -6px; bottom: 28px; width: 110px; height: 110px; }
  .hero-emblem::after { width: 98px; height: 98px; font-size: .4rem; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .modules { grid-template-columns: 1fr; }
  .module { min-height: 215px; border-right: 0; }
  .module:nth-last-child(2) { border-bottom: 1px solid var(--line-light); }
  .ritual-media img { min-height: 340px; }
  .days { grid-template-columns: repeat(5,1fr); }
  .mission-card { padding: 1.5rem; }
  .missions { grid-template-columns: 1fr; }
  .gift-card { grid-template-columns: 1fr; }
  .gift-label { min-height: 280px; }
  .medal { width: 150px; height: 150px; }
  .offer-box { padding: 1.6rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.3rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-buy { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: 10px; display: block; }
  .mobile-buy .button { width: 100%; box-shadow: 0 14px 45px rgba(6,19,26,.3); }
  .cookie-banner { bottom: 78px; }
  .legal-hero { padding-top: 130px; }
}

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