:root {
  --bg: #f8f6f2;
  --surface: #ffffff;
  --text: #151515;
  --muted: #5f5d58;
  --border: rgba(17, 17, 17, 0.1);
  --gold: #c6a86b;
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
  --shadow-strong: 0 20px 55px rgba(17, 17, 17, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #faf8f4 0%, #f6f3ee 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); }
.section { padding: 104px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

h1, h2, h3, .brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
p { line-height: 1.7; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 246, 242, 0.8);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand-mark { font-size: 34px; }
.nav { display: flex; gap: 26px; align-items: center; font-size: 14px; }
.nav-cta {
  border: 1px solid var(--text);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero { padding: 120px 0 88px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(56px, 8vw, 92px);
  margin: 0 0 22px;
}
.hero-copy p { font-size: 18px; max-width: 680px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-weight: 600;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--text);
  color: white;
  box-shadow: var(--shadow);
}
.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
}
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border: 1px solid rgba(198,168,107,.35);
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding: 30px;
}
.mini-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-card ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.9; }

.trust-bar {
  border-top: 1px solid rgba(17, 17, 17, 0.07);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  background: rgba(255,255,255,0.45);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  min-height: 88px;
  align-items: center;
  gap: 20px;
}
.trust-grid > div {
  color: var(--muted);
  font-size: 14px;
  position: relative;
}
.trust-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: rgba(17,17,17,.08);
}

.section-head { text-align: center; margin-bottom: 54px; }
.section-head.left { text-align: left; }
.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 56px);
}
.section-head p { max-width: 650px; margin: 0 auto; }
.section-head.left p { margin: 0; }

.flowchart { max-width: 620px; margin: 0 auto; }
.step-wrapper { position: relative; }
.flow-card {
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 20px;
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  transform: translateY(44px) scale(.985);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
}
.flow-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(198,168,107,.3);
  opacity: 0;
  transition: opacity .35s ease;
}
.flow-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-strong);
}
.flow-card:hover::after { opacity: 1; }
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--gold);
  border: 1px solid rgba(198,168,107,.45);
  background: linear-gradient(180deg, rgba(198,168,107,.08), rgba(198,168,107,.02));
  font-size: 24px;
}
.flow-card h3 {
  font-size: 42px;
  margin: 0 0 12px;
}
.flow-card p {
  font-size: 15px;
  margin: 0 auto;
  max-width: 500px;
}
.line {
  display: block;
  width: 2px;
  height: 64px;
  margin: 10px auto 14px;
}
.line line {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
  transition: stroke-dashoffset .9s ease;
}
.line.draw line { stroke-dashoffset: 0; }
.flow-summary {
  text-align: center;
  margin-top: 44px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
}
.flow-note {
  text-align: center;
  margin: 14px auto 26px;
  max-width: 620px;
}
.flowchart-asset {
  margin-top: 24px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: var(--shadow);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
  color: var(--muted);
}
.feature-list li::before {
  content: "— ";
  color: var(--gold);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.listing-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.listing-image {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 30% 30%, rgba(198,168,107,.35), transparent 35%), linear-gradient(135deg, #efebe3, #f7f5f2 55%, #e8e0d4);
}
.listing-body { padding: 22px; }
.listing-artist {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 600;
}
.listing-card h3 {
  margin: 10px 0 18px;
  font-size: 32px;
}
.listing-meta {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(17,17,17,.08);
  color: var(--muted);
}
.listing-meta strong { color: var(--text); }

.cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  padding: 56px 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198,168,107,.28);
  text-align: center;
}
.cta-box h2 { margin: 0 0 14px; font-size: clamp(40px, 4vw, 54px); }
.cta-box p { max-width: 620px; margin: 0 auto 28px; }

.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 12px 0 0; }

.site-footer {
  border-top: 1px solid rgba(17,17,17,.08);
  padding: 36px 0 50px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-brand { font-size: 30px; }
.footer-copy { color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; gap: 22px; color: var(--muted); }

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .listing-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid { padding: 22px 0; }
  .trust-grid > div:not(:last-child)::after { display: none; }
  .nav { display: none; }
  .hero { padding-top: 80px; }
}

@media (max-width: 640px) {
  .section { padding: 82px 0; }
  .container, .narrow { width: min(100% - 28px, 100%); }
  .hero-copy h1 { font-size: 54px; }
  .flow-card h3 { font-size: 34px; }
  .flow-summary { font-size: 24px; line-height: 1.15; }
  .cta-box { padding: 42px 24px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}
