:root {
  --espresso: #131417;
  --espresso-soft: #1f2125;
  --gold: #ca9c52;
  --gold-light: #e2c485;
  --cream: #1b1d20;
  --cream-2: #24272b;
  --ink: #eae7e1;
  --muted: #9a958c;
  --line: #33373d;
  --white: #232629;
  --shadow: 0 22px 55px -20px rgba(0, 0, 0, 0.65);
  --radius: 14px;
  --brown: #a86c38;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.accent { color: var(--gold); }

header { position: sticky; top: 0; z-index: 50; background: rgba(27,29,32,.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.back:hover { color: var(--gold); }
.back svg { width: 16px; height: 16px; }

.phero { position: relative; overflow: hidden; padding: 84px 0 60px; border-bottom: 1px solid var(--line); }
.phero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 88% -10%, rgba(202,156,82,.12), transparent 60%); pointer-events: none; }
.phero-inner { position: relative; max-width: 720px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: var(--cream-2); border: 1px solid var(--line); padding: 7px 15px; border-radius: 100px; margin-bottom: 24px; }
.phero h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); margin-bottom: 20px; }
.phero p.lead { font-size: 1.18rem; color: var(--muted); max-width: 620px; }

section { padding: 72px 0; }
.sec-head { max-width: 620px; margin-bottom: 42px; }
.sec-head .kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.sec-head p { font-size: 1.06rem; color: var(--muted); }

.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.feat .fic { width: 46px; height: 46px; border-radius: 12px; background: var(--espresso); display: grid; place-items: center; margin-bottom: 18px; }
.feat .fic svg { width: 23px; height: 23px; color: var(--gold-light); }
.feat h3 { font-size: 1.2rem; margin-bottom: 9px; }
.feat p { font-size: 0.96rem; color: var(--muted); }

.steps { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.step .num { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); }

.cta { text-align: center; }
.cta-inner { background: var(--espresso); border: 1px solid var(--line); border-radius: 20px; padding: 58px 40px; position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% -30%, rgba(202,156,82,.16), transparent 60%); }
.cta-inner > * { position: relative; }
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta p { font-size: 1.1rem; color: var(--muted); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 1rem; padding: 15px 30px; border-radius: 100px; transition: transform .2s, background .2s; cursor: pointer; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--gold); color: #17181b; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

footer { background: var(--espresso); color: var(--muted); padding: 40px 0; border-top: 1px solid var(--line); }
.foot-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--ink); font-weight: 600; }
.foot-brand svg { width: 30px; height: 30px; }
.foot-inner .small { font-size: 0.85rem; }

@media (max-width: 820px) {
  .feat-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .step-grid { grid-template-columns: 1fr; }
  section { padding: 54px 0; }
}
