:root {
  --ink: #3a1520;
  --ink-soft: #6b4650;
  --bg: #fdf4f0;
  --bg-alt: #f7e9e2;
  --card: #ffffff;
  --border: #ecd9d1;
  --wine: #9c2f45;
  --wine-dark: #7a2436;
  --gold: #e0a339;
  --gold-dark: #c78a26;
  --rose: #d98a93;
  --radius: 18px;
  --shadow: 0 10px 30px -12px rgba(58, 21, 32, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h1 em { font-style: italic; color: var(--wine); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; margin-bottom: 0.35em; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
img { max-width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(253, 244, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px 24px;
}
.logo {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.25rem;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  color: var(--wine); font-size: 1.3rem;
}
.main-nav { display: flex; gap: 28px; margin-left: auto; margin-right: 28px; }
.main-nav a {
  color: var(--ink-soft); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--wine); }

.nav-toggle {
  display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff7f2;
  box-shadow: 0 8px 20px -8px rgba(156, 47, 69, 0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(156, 47, 69, 0.6); }
.btn-small { padding: 9px 18px; font-size: 0.88rem; }
.btn-large { padding: 15px 32px; font-size: 1.02rem; }
.link-quiet {
  color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  align-self: center;
}
.link-quiet:hover { color: var(--wine); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center;
}
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--wine); font-weight: 700; margin-bottom: 14px;
}
.hero-sub { font-size: 1.08rem; max-width: 46ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.badge {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px; font-size: 0.85rem; color: var(--ink-soft);
  box-shadow: 0 2px 6px rgba(58,21,32,0.05);
}
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 320px; }
.vinyl { position: relative; width: 220px; height: 220px; }
.vinyl-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(156,47,69,0.18);
}
.vinyl-ring:nth-child(2) { inset: 30px; border-color: rgba(224,163,57,0.35); }
.vinyl-center {
  position: absolute; inset: 78px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold), var(--wine) 75%);
  display: flex; align-items: center; justify-content: center;
  color: #fff7f2; font-size: 1.6rem; box-shadow: var(--shadow);
}
.waveform {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 260px; height: 60px;
}
.waveform path { stroke: var(--rose); stroke-width: 3; stroke-linecap: round; }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); }
.section-sub { max-width: 56ch; margin: -8px auto 40px; }
.section > .wrap > h2 { margin-bottom: 10px; }

.grid-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px;
}
.occasion-card, .price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
}
.occasion-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.occasion-card p, .price-card p { margin: 0; font-size: 0.93rem; }

/* ---------- steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 44px;
}
.step { text-align: center; padding: 0 12px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--wine); color: #fff7f2; font-family: "Fraunces", serif; font-weight: 700;
  margin-bottom: 16px; font-size: 1.15rem;
}
.step p { font-size: 0.94rem; max-width: 30ch; margin: 0 auto; }

/* ---------- genre showcase ---------- */
.genre-showcase {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; margin-top: 36px;
}
.genre-image {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 220px;
  box-shadow: var(--shadow);
}
.genre-image svg { width: 100%; height: 100%; display: block; }
.genre-note {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff7f2; font-size: 3.5rem; opacity: 0.85; text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.genre-chip-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.genre-chip {
  background: var(--card); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--wine-dark);
}
.soon-note { text-align: center; margin-top: 34px; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- pricing ---------- */
.pricing-grid { grid-template-columns: repeat(4, 1fr); }
.price-country { font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; color: var(--ink); }
.price-amount { color: var(--wine); font-weight: 600; font-size: 0.95rem; }

/* ---------- final cta ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fff7f2; padding: 84px 0; text-align: center;
}
.cta-final h2 { color: #fff7f2; }
.cta-final p { color: rgba(255,247,242,0.85); }
.cta-final .btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4); }
.contact-note { font-size: 0.8rem; color: rgba(255,247,242,0.65); margin-top: 14px; }

/* ---------- footer ---------- */
.site-footer { padding: 40px 0; background: var(--ink); color: rgba(253,244,240,0.7); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-logo { color: #fff7f2; margin: 0 0 4px; }
.footer-tagline { margin: 0; font-size: 0.85rem; max-width: 40ch; }
.footer-copy { margin: 0; font-size: 0.82rem; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 220px; order: -1; }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .genre-showcase { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--card);
    border-bottom: 1px solid var(--border); padding: 8px 24px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .header-inner .btn-small { display: none; }
  .grid-cards, .pricing-grid { grid-template-columns: 1fr; }
}
