:root {
  --bg: #fbf4ee;
  --bg-strong: #f3e3d5;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 251, 247, 0.92);
  --ink: #37261d;
  --muted: #715b4d;
  --gold: #bb8a3a;
  --gold-soft: #e8c78d;
  --rose: #d9a28f;
  --line: rgba(104, 67, 38, 0.12);
  --shadow: 0 20px 60px rgba(98, 64, 37, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(232, 199, 141, 0.35), transparent 20%),
    linear-gradient(180deg, #fffaf6 0%, var(--bg) 46%, #f7ede4 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 244, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fffefb, #f0d9bd);
  border: 1px solid rgba(187, 138, 58, 0.35);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small,
.topnav a,
.hero-text,
.section-heading p,
.collection-card p,
.feature-list p,
.step-card p,
.testimonial-card p,
.roadmap-card p,
.faq-list p,
.closing-cta p {
  color: var(--muted);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topnav a {
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.topnav a:hover {
  color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #ca9e57, #a9792f);
  box-shadow: 0 18px 32px rgba(169, 121, 47, 0.22);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(114, 91, 77, 0.2);
  background: rgba(255, 255, 255, 0.72);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 64px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 22px;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff9f0 0%, var(--gold-soft) 45%, var(--gold) 100%);
  box-shadow: 0 0 0 6px rgba(232, 199, 141, 0.15);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
}

.orb-large {
  width: 300px;
  height: 300px;
  top: 28px;
  right: 34px;
  background: radial-gradient(circle, rgba(255,255,255,0.92) 0%, rgba(232,199,141,0.5) 54%, rgba(232,199,141,0) 72%);
}

.orb-small {
  width: 180px;
  height: 180px;
  bottom: 52px;
  left: 14px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(217,162,143,0.46) 50%, rgba(217,162,143,0) 70%);
}

.shoe-card {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(252,246,240,0.82)),
    rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.shoe-card-top,
.shoe-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shoe-card-top {
  margin-bottom: 28px;
}

.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 245, 232, 0.95);
  border: 1px solid rgba(187, 138, 58, 0.18);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shoe-illustration {
  position: relative;
  height: 320px;
  display: grid;
  place-items: center;
}

.shoe-body {
  position: absolute;
  width: 320px;
  height: 150px;
  border-radius: 64px 86px 54px 42px;
  background:
    radial-gradient(circle at 24% 34%, rgba(255,255,255,0.95), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #ffffff 0%, #f8f4ef 58%, #f0e0d2 100%);
  border: 2px solid rgba(209, 192, 175, 0.48);
  transform: rotate(-8deg) translateY(-6px);
  box-shadow: inset -10px -10px 18px rgba(217, 196, 175, 0.24);
}

.sole {
  position: absolute;
  width: 340px;
  height: 56px;
  bottom: 86px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #efe7de);
  border: 2px solid rgba(209, 192, 175, 0.44);
  transform: rotate(-8deg);
}

.laces {
  position: absolute;
  top: 102px;
  right: 106px;
  display: grid;
  gap: 13px;
  transform: rotate(-8deg);
}

.laces span {
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.98), rgba(255,255,255,0.5));
  box-shadow: 0 4px 10px rgba(196, 176, 160, 0.22);
}

.text-mark,
.date-mark {
  position: absolute;
  left: 74px;
  color: var(--gold);
  font-weight: 800;
  transform: rotate(8deg);
}

.text-mark {
  top: 48px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.date-mark {
  top: 88px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffefa 0%, #fbf1df 50%, #d9bf96 100%);
  box-shadow: inset -2px -3px 4px rgba(191, 161, 112, 0.22);
}

.pearl-1 { width: 16px; height: 16px; top: 24px; left: 30px; }
.pearl-2 { width: 12px; height: 12px; top: 42px; left: 62px; }
.pearl-3 { width: 14px; height: 14px; top: 24px; right: 78px; }
.pearl-4 { width: 10px; height: 10px; top: 48px; right: 48px; }
.pearl-5 { width: 12px; height: 12px; bottom: 34px; right: 58px; }

.shoe-caption strong {
  font-size: 1.05rem;
}

.shoe-caption span {
  font-size: 0.94rem;
  color: var(--muted);
}

.stats,
.collection-grid,
.steps,
.testimonial-grid,
.roadmap-grid {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  margin: 12px 0 56px;
}

.stat-card,
.collection-card,
.step-card,
.testimonial-card,
.roadmap-card,
.feature-band,
.closing-cta,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.collection-grid {
  grid-template-columns: repeat(3, 1fr);
}

.collection-card {
  min-height: 290px;
  padding: 26px;
  overflow: hidden;
  position: relative;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.6;
}

.card-bride::after {
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(232,199,141,0.18), transparent 72%);
}

.card-debutante::after {
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(217,162,143,0.22), transparent 72%);
}

.card-custom::after {
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(187,138,58,0.18), transparent 72%);
}

.collection-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  padding: 28px;
  margin-top: 8px;
  background:
    linear-gradient(135deg, rgba(255,250,246,0.9), rgba(243,227,213,0.82)),
    var(--surface-strong);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(104, 67, 38, 0.1);
}

.feature-list article:last-child {
  border-bottom: 0;
}

.feature-list strong,
.roadmap-card strong,
.testimonial-card strong {
  display: block;
  margin-bottom: 8px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card,
.roadmap-card {
  padding: 24px;
}

.roadmap-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 30px;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.copy-feedback {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
  color: var(--gold);
}

@media (max-width: 1080px) {
  .hero,
  .feature-band,
  .closing-cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .stats,
  .collection-grid,
  .steps,
  .testimonial-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topnav {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .topbar {
    position: static;
    padding: 14px;
    border-radius: 28px;
  }

  .button-small {
    display: none;
  }

  .hero {
    padding-top: 36px;
    gap: 18px;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .shoe-card {
    padding: 18px;
  }

  .shoe-illustration {
    transform: scale(0.84);
    transform-origin: center;
  }

  .stats,
  .collection-grid,
  .steps,
  .testimonial-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .button,
  .closing-actions .button {
    width: 100%;
  }

  .closing-actions {
    width: 100%;
  }
}
