:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-soft: rgba(220, 38, 38, 0.08);
  --gold: #fcd34d;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #faf7f0;
  --canvas: #f5f0e8;
  --surface: #ffffff;
  --muted: #6b7280;
  --muted2: #9ca3af;
  --border: #e5e7eb;
  --border2: #d1c9bd;
  --green: #16a34a;
  --r: 12px;
  --max: 1160px;
  --px: clamp(1.25rem, 5vw, 3rem);
  --sh: 0 1px 2px rgba(10,10,10,.06), 0 4px 16px rgba(10,10,10,.07);
  --sh-lg: 0 8px 40px rgba(10,10,10,.13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(250, 247, 240, 0.92);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled {
  border-color: var(--border2);
  box-shadow: 0 1px 0 rgba(10,10,10,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #111;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.brand span.accent { color: var(--red); }
.nav-links {
  display: none;
  gap: 1.25rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: .55rem; align-items: center; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  border-radius: 999px;
  padding: .72rem 1.2rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { filter: brightness(.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--ink);
}
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }

/* Hero — one composition */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(250,247,240,.15) 0%, rgba(250,247,240,.55) 42%, rgba(250,247,240,.96) 78%, var(--paper) 100%),
    radial-gradient(900px 500px at 80% 20%, rgba(252,211,77,.28), transparent 55%),
    radial-gradient(700px 420px at 10% 70%, rgba(220,38,38,.12), transparent 50%),
    url('/assets/hero.jpg') center/cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.06) translate3d(-1.2%, -1%, 0); }
}
.hero-copy {
  padding: clamp(3.5rem, 10vh, 6rem) 0 2.5rem;
  max-width: 40rem;
  animation: rise .8s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--red);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .7; }
}
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 .9rem;
  font-weight: 800;
}
.hero h1 em {
  color: var(--red);
  font-style: italic;
  font-weight: 700;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  margin: 0 0 1.4rem;
  max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.25rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.hero-badges span {
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.65);
  padding: .28rem .6rem;
  border-radius: 999px;
}

/* Sections */
section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-head { max-width: 38rem; margin-bottom: 2rem; }
.section-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 .7rem;
  letter-spacing: -.02em;
}
.section-head p { margin: 0; color: var(--muted); }

.band { background: var(--canvas); }

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.feature {
  padding: 1.15rem 0;
  border-top: 1px solid var(--border2);
}
.feature .tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--red);
  margin-bottom: .45rem;
}
.feature h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 .45rem;
}
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.step { position: relative; padding-top: .25rem; }
.step .n {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: .4rem;
  opacity: .9;
}
.step h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  font-family: Fraunces, Georgia, serif;
}
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.audience {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .audience { grid-template-columns: repeat(3, 1fr); }
}
.audience article {
  border-top: 2px solid var(--ink);
  padding-top: 1rem;
}
.audience .tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--muted);
}
.audience h3 {
  font-family: Fraunces, Georgia, serif;
  margin: .45rem 0;
  font-size: 1.3rem;
}
.audience p { margin: 0; color: var(--muted); }

.faq details {
  border-bottom: 1px solid var(--border2);
  padding: 1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 500;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: .7rem 0 0;
  color: var(--muted);
  max-width: 48rem;
}

.cta-band {
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  display: grid;
  gap: 1.2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 220px;
  background: radial-gradient(circle, rgba(252,211,77,.35), transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 0 0 .5rem;
  line-height: 1.1;
}
.cta-band p { margin: 0; color: rgba(255,255,255,.72); max-width: 36rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-meta { color: var(--muted); }
.contact-meta strong { color: var(--ink); display: block; margin-bottom: .2rem; }
.contact-meta a { color: var(--red); font-weight: 600; }
form.contact {
  display: grid;
  gap: .7rem;
}
form.contact label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}
form.contact input,
form.contact textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
  background: #fff;
}
form.contact textarea { min-height: 110px; resize: vertical; }
.form-msg { min-height: 1.2em; font-size: .9rem; }
.form-msg.ok { color: var(--green); }
.form-msg.err { color: var(--red); }

footer {
  border-top: 1px solid var(--border2);
  padding: 2.5rem 0 2rem;
  color: var(--muted);
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}
footer .brand { margin-bottom: .7rem; }
footer nav { display: flex; flex-wrap: wrap; gap: .9rem 1.2rem; }
footer a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
