:root {
  --bg: #f6efe6;
  --bg-soft: #fff9f2;
  --surface: rgba(255, 250, 243, 0.92);
  --surface-strong: #fffdf9;
  --text: #25131d;
  --text-soft: #5a4754;
  --line: #ccb8a5;
  --line-strong: #9f7d61;
  --accent: #7a1f59;
  --accent-strong: #4e0d34;
  --accent-contrast: #fff8ef;
  --gold: #b88734;
  --gold-strong: #7d5a1e;
  --success: #1d6b4a;
  --shadow: 0 24px 60px rgba(47, 20, 28, 0.15);
  --radius: 24px;
  --max: 1180px;
  --nav-height: 76px;
  --focus: #e2b65b;
}

:root[data-theme='dark'] {
  --bg: #120a10;
  --bg-soft: #1b0f17;
  --surface: rgba(30, 18, 27, 0.92);
  --surface-strong: #24131d;
  --text: #f8efe3;
  --text-soft: #d6c4b8;
  --line: #61424f;
  --line-strong: #b88734;
  --accent: #d2a44f;
  --accent-strong: #f2c672;
  --accent-contrast: #1b1017;
  --gold: #f2c672;
  --gold-strong: #ffd88f;
  --success: #69c89a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --focus: #ffd88f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 135, 52, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(122, 31, 89, 0.14), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; margin-inline: auto; }
a { color: var(--accent-strong); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--accent-strong);
  color: var(--accent-contrast);
  padding: 12px 16px;
  z-index: 1000;
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }
.site-header { position: relative; padding-bottom: 28px; }
.progress { position: sticky; top: 0; z-index: 90; height: 4px; background: transparent; }
.progress__bar { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--accent)); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.navbar {
  position: sticky;
  top: 4px;
  z-index: 80;
  width: min(calc(100% - 24px), var(--max));
  margin: 14px auto 0;
  min-height: var(--nav-height);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 700; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff8ef; font-family: Georgia, serif; font-size: 1.3rem;
}
.brand__text { letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.9rem; }
.nav-desktop, .nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link, .lang-trigger, .theme-toggle, .menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  min-height: 44px;
}
.nav-link:hover, .lang-trigger:hover, .theme-toggle:hover { border-color: var(--line-strong); }
.theme-toggle { cursor: pointer; }
.language-picker { position: relative; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 220px;
  background: var(--surface-strong); border: 1px solid var(--line); border-radius: 18px; padding: 8px;
  box-shadow: var(--shadow); display: none;
}
.language-picker.is-open .lang-menu { display: grid; gap: 6px; }
.lang-option {
  border: 1px solid transparent; background: transparent; color: var(--text); padding: 12px 14px; border-radius: 12px; text-align: left; cursor: pointer;
}
.lang-option:hover, .lang-option[aria-checked='true'] { background: color-mix(in srgb, var(--accent) 10%, var(--surface-strong)); border-color: var(--line); }
.menu-toggle { display: none; cursor: pointer; width: 48px; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; }
.mobile-panel {
  width: min(calc(100% - 24px), var(--max)); margin: 10px auto 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: 28px; padding: 16px; box-shadow: var(--shadow);
}
.mobile-panel__inner, .mobile-nav-links { display: grid; gap: 10px; }
.hero {
  width: min(calc(100% - 24px), var(--max)); margin: 26px auto 0; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center;
}
.hero__copy, .hero__visual, .content-section, .site-footer, .offline-card {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  box-shadow: var(--shadow);
}
.hero__copy, .hero__visual { border-radius: clamp(28px, 4vw, 36px); padding: clamp(24px, 4vw, 42px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; padding: 8px 14px;
  border-radius: 999px; background: color-mix(in srgb, var(--gold) 18%, var(--surface-strong)); color: var(--gold-strong); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem;
}
.hero h1 { margin: 0 0 14px; font-family: Georgia, Cambria, serif; font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 0.95; }
.hero__lead { font-size: 1.08rem; line-height: 1.7; color: var(--text-soft); max-width: 58ch; }
.hero-points, .feature-list, .bullet-grid { text-align: left; }
.hero-points { display: grid; gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.hero-points li, .bullet-grid li, .feature-list li { position: relative; padding-left: 18px; }
.hero-points li::before, .bullet-grid li::before, .feature-list li::before {
  content: ''; position: absolute; left: 0; top: 0.7em; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--accent)); transform: translateY(-50%);
}
.hero__cta-group, .section-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; text-decoration: none; border: 1px solid var(--line-strong); font-weight: 700;
}
.button-primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: var(--accent-contrast); }
.button-primary:hover { filter: brightness(1.04); color: var(--accent-contrast); }
.button-secondary { background: var(--surface-strong); color: var(--text); }
.button-primary--large { min-width: min(100%, 360px); }
.hero__visual { position: relative; overflow: hidden; text-align: center; }
.hero__visual::before { content: ''; position: absolute; inset: 20px; border-radius: 28px; background: radial-gradient(circle at top, rgba(184,135,52,0.16), transparent 46%), linear-gradient(180deg, rgba(122,31,89,0.08), transparent 65%); }
.packshot-picture { display: block; }
.packshot { object-fit: contain; }
.packshot--hero { width: min(100%, 540px); max-height: min(68vw, 540px); position: relative; z-index: 1; }
.packshot--proof { width: min(100%, 720px); }
.hero__visual figcaption, .proof-figure figcaption { color: var(--text-soft); font-size: 0.92rem; margin-top: 12px; position: relative; z-index: 1; }
main { width: min(calc(100% - 24px), var(--max)); margin: 0 auto 36px; }
.content-section {
  padding: 30px clamp(18px, 3vw, 34px);
  border-radius: 30px;
  margin-top: 22px;
  content-visibility: auto;
  contain-intrinsic-size: 1px 960px;
}
.content-section h2, .content-section h3 { padding-top: 15px; padding-bottom: 10px; }
.content-section h2 { margin: 0; font-family: Georgia, Cambria, serif; font-size: clamp(1.9rem, 4vw, 3rem); }
.content-section h3 { margin: 0; font-size: 1.22rem; }
.content-section p { margin-top: 0; line-height: 1.75; color: var(--text-soft); }
.section-intro { max-width: 68ch; }
.bullet-grid {
  list-style: none; padding: 0; margin: 12px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 18px;
}
.proof-layout { display: grid; grid-template-columns: 1fr 0.9fr; gap: 24px; align-items: center; }
.proof-figure, .offer-board {
  background: color-mix(in srgb, var(--surface-strong) 92%, transparent); border: 1px solid var(--line); border-radius: 24px; padding: 18px;
}
.proof-quote {
  margin: 10px 0 0; padding: 16px 18px; border-left: 4px solid var(--gold); background: color-mix(in srgb, var(--gold) 10%, var(--surface-strong)); border-radius: 0 18px 18px 0; color: var(--text);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; height: 100%; background: var(--surface-strong); border: 1px solid var(--line); border-radius: 26px; padding: 22px; position: relative;
}
.price-card--featured { border-color: var(--gold); box-shadow: 0 18px 46px rgba(122,31,89,0.18); transform: translateY(-4px); }
.price-badge {
  align-self: flex-start; background: color-mix(in srgb, var(--gold) 18%, var(--surface)); color: var(--gold-strong); border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 12px; font-size: 0.82rem; font-weight: 700;
}
.price-packshot { width: min(100%, 260px); aspect-ratio: 1/1; margin-top: 14px; }
.price-value { display: flex; align-items: end; gap: 10px; flex-wrap: wrap; }
.price-value strong { font-size: 2.4rem; line-height: 1; color: var(--text); }
.price-note { min-height: 48px; }
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cta-wrap { margin-top: auto; padding-top: 18px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); background: var(--surface-strong); border-radius: 22px; padding: 0 18px 18px; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; color: var(--text); padding: 0; font: inherit; cursor: pointer;
}
.faq-answer { margin-bottom: 0; }
.final-call { position: relative; overflow: hidden; }
.final-call::after {
  content: ''; position: absolute; inset: auto -10% -30% auto; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(122,31,89,0.14), transparent 66%);
}
.site-footer {
  width: min(calc(100% - 24px), var(--max)); margin: 0 auto 28px; padding: 26px 24px; border-radius: 26px; text-align: center;
}
.site-footer p { margin: 0 0 10px; color: var(--text-soft); }
.offline-body { display: grid; place-items: center; padding: 24px; }
.offline-shell { width: min(100%, 760px); }
.offline-card { margin-top: 0; }
.offer-board__image { width: min(100%, 720px); aspect-ratio: 1292/956; object-fit: contain; }
.reveal { animation: riseIn 900ms ease both; }
.reveal--delay { animation-delay: 180ms; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (max-width: 960px) {
  .nav-desktop, .language-picker--desktop { display: none; }
  .menu-toggle { display: inline-block; }
  .hero, .proof-layout, .pricing-grid, .bullet-grid { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .navbar { border-radius: 28px; align-items: center; backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--surface-strong); }
  .hero, main, .site-footer { width: min(calc(100% - 20px), var(--max)); }
  .hero__copy, .hero__visual, .content-section, .site-footer { text-align: center; }
  .content-section p, .section-intro { margin-inline: auto; }
  .hero__cta-group, .section-cta { justify-content: center; }
  .button { width: min(100%, 360px); }
  .bullet-grid, .feature-list, .hero-points { text-align: left; }
  .price-badge { align-self: center; }
}
