:root {
  --ink: #27162f;
  --ink-soft: #4d3c53;
  --paper: #f7f2eb;
  --paper-deep: #eee4da;
  --plum: #2c1836;
  --plum-light: #5b3a67;
  --apricot: #f08b66;
  --rose: #b84e6f;
  --gold: #d8a857;
  --line: rgba(44, 24, 54, 0.18);
  --white: #fffdf9;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --shadow: 0 28px 70px rgba(39, 22, 47, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  background: rgba(247, 242, 235, 0.91);
  border-bottom: 1px solid rgba(39, 22, 47, 0.1);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 0.8rem; width: fit-content; text-decoration: none; }
.brand-time { font-family: var(--serif); font-size: 1.65rem; font-style: italic; letter-spacing: -0.08em; }
.brand-house { padding-left: 0.8rem; border-left: 1px solid var(--line); font-family: var(--serif); font-size: 0.86rem; font-style: italic; font-weight: 400; letter-spacing: 0.01em; }
.site-header nav { display: flex; gap: 2rem; }
.site-header nav a { position: relative; font-size: 0.82rem; font-weight: 650; text-decoration: none; }
.site-header nav a::after { position: absolute; right: 0; bottom: -0.35rem; left: 0; height: 1px; background: var(--rose); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  color: var(--white);
  background: var(--plum);
  border: 1px solid var(--plum);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(44, 24, 54, 0.14);
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { background: var(--plum-light); box-shadow: 0 14px 30px rgba(44, 24, 54, 0.2); transform: translateY(-2px); }
.button-small { min-height: 2.75rem; padding: 0.65rem 1.1rem; font-size: 0.78rem; }
.button-light { color: var(--plum); background: var(--white); border-color: var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--plum); background: #f5e9df; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: calc(100svh - 80px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 2rem);
}
.hero::before { position: absolute; top: 14%; left: -25vw; width: 45vw; height: 45vw; max-width: 620px; max-height: 620px; border: 1px solid rgba(184, 78, 111, 0.18); border-radius: 50%; content: ""; pointer-events: none; }
.eyebrow { margin: 0 0 1.1rem; color: var(--rose); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.04em; }
h1 { max-width: 790px; margin-bottom: 1.65rem; font-size: clamp(3.25rem, 6.5vw, 6.7rem); }
h1 em, h2 em { color: var(--rose); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; }
.hero-actions { display: flex; gap: 1.25rem; align-items: center; margin-top: 2rem; }
.price-note { color: var(--ink-soft); font-size: 0.78rem; font-weight: 650; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 0.65rem 1.5rem; margin: 2.5rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-notes li { display: flex; gap: 0.55rem; align-items: center; font-size: 0.78rem; font-weight: 750; }
.hero-notes li::before { width: 0.38rem; height: 0.38rem; background: var(--apricot); border-radius: 50%; content: ""; }
.hero-visual { position: relative; min-height: 620px; }
.clock-orbit { position: absolute; top: -5%; right: -32%; display: grid; place-items: center; width: 32rem; height: 32rem; color: rgba(247, 242, 235, 0.24); background: var(--plum); border: 1px solid var(--line); border-radius: 50%; box-shadow: inset 0 0 0 3rem rgba(255, 255, 255, 0.025), inset 0 0 0 3.05rem rgba(255, 255, 255, 0.13); }
.clock-orbit::before, .clock-orbit::after { position: absolute; border: 1px solid rgba(255,255,255,0.17); border-radius: 50%; content: ""; }
.clock-orbit::before { inset: 5.5rem; }
.clock-orbit::after { inset: 8.5rem; }
.clock-orbit span { font-family: var(--serif); font-size: 5.5rem; font-style: italic; letter-spacing: -0.08em; }
.message-card { position: absolute; z-index: 2; top: 16%; left: 0; width: min(76%, 330px); margin: 0; overflow: hidden; background: var(--white); border: 8px solid var(--white); border-radius: 1.2rem; box-shadow: var(--shadow); transform: rotate(-3deg); }
.message-card img { width: 100%; height: auto; }
.hand-note { position: absolute; z-index: 3; right: 0; bottom: 7%; margin: 0; color: var(--rose); font-family: var(--serif); font-size: 1.35rem; font-style: italic; line-height: 1.35; transform: rotate(3deg); }

.section-pad { padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100vw - var(--max)) / 2)); }
.section-label { margin-bottom: 2.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line); color: var(--rose); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.intro h2 { max-width: 500px; margin-bottom: 0; font-size: clamp(2.7rem, 5vw, 5rem); }
.prose { max-width: 630px; color: var(--ink-soft); font-size: 1.06rem; }
.prose p:first-child { margin-top: 0; }
.prose p:last-child { color: var(--ink); font-weight: 700; }

.ritual { position: relative; display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; color: var(--white); background: var(--plum); overflow: hidden; }
.ritual-number { color: rgba(255,255,255,0.07); font-family: var(--serif); font-size: clamp(15rem, 31vw, 31rem); font-style: italic; line-height: 0.8; letter-spacing: -0.15em; transform: translateX(-8%); }
.ritual-copy { position: relative; z-index: 2; max-width: 620px; }
.ritual h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.ritual-copy > p:not(.eyebrow) { color: rgba(255,253,249,0.76); }
.ritual blockquote { margin: 2.5rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid rgba(255,255,255,0.2); color: #f0b97e; font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.2rem); font-style: italic; line-height: 1.35; }

.inside { background: var(--paper-deep); }
.section-heading { max-width: 820px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.benefit-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit { min-height: 330px; padding: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-featured { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 660px; color: var(--white); background: var(--rose); }
.benefit-index { display: block; margin-bottom: auto; color: var(--apricot); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.benefit-featured .benefit-index { color: rgba(255,255,255,0.65); }
.benefit h3 { margin-bottom: 1.2rem; font-size: clamp(2rem, 3vw, 3.3rem); }
.benefit p { max-width: 520px; margin-bottom: 0; color: var(--ink-soft); }
.benefit-featured p { color: rgba(255,255,255,0.82); }

.voices { padding-right: 0; background: var(--white); }
.voices-copy { display: grid; grid-template-columns: 0.9fr 1.2fr auto; gap: 2rem; align-items: end; padding-right: max(1.25rem, calc((100vw - var(--max)) / 2)); }
.voices-copy .eyebrow { align-self: start; }
.voices-copy h2 { margin-bottom: 0; font-size: clamp(2.6rem, 4.6vw, 4.8rem); }
.voices-copy > p:not(.eyebrow) { max-width: 330px; margin: 0 0 0.7rem; color: var(--ink-soft); }
.slider-controls { display: flex; gap: 0.5rem; }
.slider-button { display: grid; place-items: center; width: 3.25rem; height: 3.25rem; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: background 160ms ease, color 160ms ease; }
.slider-button:hover, .slider-button:focus-visible { color: var(--white); background: var(--plum); }
.testimonial-track { display: flex; gap: 1.3rem; margin-top: 3.5rem; padding: 0 max(1.25rem, calc((100vw - var(--max)) / 2)) 2rem 0; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-color: var(--rose) transparent; }
.testimonial { flex: 0 0 min(360px, 78vw); margin: 0; padding: 0.55rem; background: var(--paper); border: 1px solid var(--line); border-radius: 1.15rem; box-shadow: 0 16px 36px rgba(39,22,47,0.08); scroll-snap-align: start; }
.testimonial img { width: 100%; height: auto; border-radius: 0.75rem; }

.change { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); color: var(--white); background: #47244f; }
.change-head h2 { font-size: clamp(3rem, 5vw, 5rem); }
.change-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.2); list-style: none; }
.change-list li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.2); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.3; }
.change-list span { color: #f0b97e; font-family: var(--sans); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; }
.change-note { grid-column: 2; max-width: 680px; margin: 0; color: rgba(255,255,255,0.72); }

.present { background: var(--paper); }
.present-card { position: relative; max-width: 920px; margin: 0 auto; padding: clamp(2.5rem, 7vw, 6rem); text-align: center; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.present-card::before { position: absolute; inset: 0.8rem; border: 1px solid rgba(184,78,111,0.18); content: ""; pointer-events: none; }
.present h2 { max-width: 750px; margin: 0 auto 1.5rem; font-size: clamp(2.8rem, 5vw, 5rem); }
.present-card > p:not(.eyebrow) { max-width: 670px; margin-right: auto; margin-left: auto; color: var(--ink-soft); }
.present-mantra { padding-top: 1.3rem; color: var(--rose) !important; font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem); font-style: italic; }

.method { display: grid; grid-template-columns: 0.75fr 1.1fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; background: var(--white); }
.method-stamp { position: relative; display: grid; place-items: center; aspect-ratio: 1; max-width: 440px; border: 1px solid var(--line); border-radius: 50%; box-shadow: inset 0 0 0 2.3rem var(--paper), inset 0 0 0 2.35rem var(--line); font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-style: italic; text-align: center; }
.method-stamp i { color: var(--rose); font-family: var(--sans); font-size: 1.1rem; font-style: normal; }
.method-copy { max-width: 680px; }
.method-copy h2 { margin-bottom: 0.5rem; font-size: clamp(3rem, 5vw, 5rem); }
.method-copy .signature-name { color: var(--rose); font-family: "Segoe Script", "Bradley Hand", "Brush Script MT", cursive; font-size: clamp(3.4rem, 6vw, 6rem); font-weight: 400; letter-spacing: -0.05em; line-height: 1.18; transform: rotate(-2deg); transform-origin: left center; }
.role { margin: 0 0 2rem; color: var(--rose); font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; }
.method-copy > p:not(.eyebrow):not(.role):not(.method-close) { color: var(--ink-soft); }
.method-close { margin-top: 2rem; padding: 1.5rem 0 0 1.5rem; border-top: 1px solid var(--line); border-left: 3px solid var(--apricot); font-weight: 700; }

.steps { background: var(--paper-deep); }
.steps ol { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.steps li { display: flex; gap: 1.4rem; min-height: 250px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; flex: 0 0 2.4rem; place-items: center; width: 2.4rem; height: 2.4rem; color: var(--white); background: var(--rose); border-radius: 50%; font-family: var(--serif); font-style: italic; }
.steps strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.steps p { color: var(--ink-soft); }

.offer { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; color: var(--white); background: var(--plum); }
.offer-copy h2 { font-size: clamp(3rem, 6vw, 6rem); }
.offer-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,0.72); font-size: 1.08rem; }
.offer-card { position: relative; padding: clamp(2.25rem, 5vw, 4.5rem); color: var(--white); background: var(--rose); border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 34px 85px rgba(0,0,0,0.2); }
.offer-card::before { position: absolute; inset: 0.75rem; border: 1px solid rgba(255,255,255,0.25); content: ""; pointer-events: none; }
.offer-time { font-family: var(--serif); font-size: 4rem; font-style: italic; letter-spacing: -0.08em; }
.offer-name { margin: -0.6rem 0 2rem; font-family: var(--serif); font-size: 1rem; font-style: italic; font-weight: 400; letter-spacing: 0.02em; }
.offer-price { display: flex; align-items: baseline; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.28); border-bottom: 1px solid rgba(255,255,255,0.28); }
.offer-price span { align-self: flex-start; margin-top: 0.8rem; font-weight: 750; }
.offer-price strong { font-family: var(--serif); font-size: 6rem; font-weight: 400; line-height: 0.9; letter-spacing: -0.08em; }
.offer-price small { margin-left: 0.65rem; color: rgba(255,255,255,0.75); }
.offer-card ul { margin: 2rem 0; padding: 0; list-style: none; }
.offer-card li { position: relative; padding: 0.55rem 0 0.55rem 1.45rem; }
.offer-card li::before { position: absolute; top: 1.05rem; left: 0; width: 0.55rem; height: 0.3rem; border-bottom: 1.5px solid currentColor; border-left: 1.5px solid currentColor; content: ""; transform: rotate(-45deg); }
.offer-card .button { position: relative; z-index: 2; width: 100%; }
.offer-cancel { margin: 1rem 0 0; color: rgba(255,255,255,0.72); font-size: 0.73rem; text-align: center; }
.checkout-status { min-height: 1.4rem; margin: 0.5rem 0 0; color: var(--white); font-size: 0.78rem; text-align: center; }

.faq { display: grid; grid-template-columns: 0.65fr 1.1fr; gap: clamp(3rem, 9vw, 9rem); background: var(--white); }
.faq-heading { position: sticky; top: 8rem; align-self: start; }
.faq-heading h2 { font-size: clamp(3rem, 5vw, 5rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.6rem 3rem 1.6rem 0; cursor: pointer; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.3; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; top: 1.55rem; right: 0; content: "+"; color: var(--rose); font-family: var(--sans); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 650px; margin: -0.3rem 0 1.7rem; color: var(--ink-soft); }

.closing { color: var(--white); background: var(--rose); text-align: center; }
.closing-time { margin: 0 0 1.2rem; color: rgba(255,255,255,0.25); font-family: var(--serif); font-size: clamp(6rem, 17vw, 13rem); font-style: italic; line-height: 0.75; letter-spacing: -0.1em; }
.closing h2 { margin-bottom: 1.5rem; font-size: clamp(3.2rem, 7vw, 7rem); }
.closing h2 em { color: #f8d1b5; }
.closing > p:not(.closing-time) { max-width: 620px; margin: 0 auto 2rem; color: rgba(255,255,255,0.78); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding: 2rem clamp(1.25rem, 4vw, 4rem); color: rgba(255,255,255,0.72); background: #1d1024; font-size: 0.72rem; }
.brand-footer { color: var(--white); }
footer p { margin: 0; }
footer p:last-child { justify-self: end; }

.reveal { animation: rise 800ms cubic-bezier(.2,.75,.2,1) both; }
.hero-visual { animation-delay: 140ms; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-visual { min-height: 540px; }
  .clock-orbit { right: -12rem; }
  .message-card { left: 9%; width: min(70%, 320px); }
  .intro-grid, .ritual, .change, .method, .offer, .faq { grid-template-columns: 1fr; }
  .ritual-number { position: absolute; right: -4rem; bottom: -2rem; font-size: 25rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-featured { grid-row: auto; min-height: 420px; }
  .voices-copy { grid-template-columns: 1fr auto; }
  .voices-copy .eyebrow, .voices-copy > p:not(.eyebrow) { grid-column: 1 / -1; }
  .voices-copy h2 { grid-column: 1; }
  .slider-controls { grid-column: 2; }
  .change-note { grid-column: 1; }
  .method-stamp { width: min(70vw, 420px); margin: 0 auto; }
  .steps ol { grid-template-columns: 1fr; }
  .steps li { min-height: auto; }
  .faq-heading { position: static; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand, footer p:last-child { justify-self: center; }
}

@media (max-width: 620px) {
  .site-header { padding: 0.8rem 1rem; }
  .brand-house { display: none; }
  .button-small { min-height: 2.5rem; padding: 0.55rem 0.9rem; }
  .hero { min-height: auto; padding-bottom: 3.5rem; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .price-note { text-align: center; }
  .hero-visual { min-height: 465px; }
  .clock-orbit { top: 0; right: -14rem; width: 28rem; height: 28rem; }
  .message-card { top: 14%; left: 4%; width: min(68%, 285px); }
  .hand-note { right: 1%; bottom: 3%; font-size: 1.1rem; }
  .section-pad { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .intro h2, .ritual h2, .section-heading h2, .change-head h2, .present h2, .method-copy h2, .offer-copy h2, .faq-heading h2 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .benefit-grid { border-left: 0; }
  .benefit { min-height: 290px; border-left: 1px solid var(--line); }
  .benefit-featured { min-height: 380px; }
  .voices-copy { grid-template-columns: 1fr; }
  .voices-copy h2, .slider-controls { grid-column: 1; }
  .testimonial { flex-basis: 84vw; }
  .change-list li { grid-template-columns: 2.3rem 1fr; }
  .present-card { padding: 3.5rem 1.7rem; }
  .method-stamp { width: min(82vw, 340px); }
  .offer-card { padding: 3rem 1.65rem; }
  .offer-price strong { font-size: 5rem; }
  .closing h2 { font-size: clamp(3rem, 15vw, 5rem); }
}
