:root {
  --black: #0C0C0C;
  --surface: #141414;
  --surface-raised: #1C1C1C;
  --cream: #F5F0E8;
  --cream-dim: #B8B3A6;
  --gold: #C9A96E;
  --gold-dim: #8A7347;
  --charcoal: #2A2A2A;
  --text-muted: #7A7A7A;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--charcoal) var(--black);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--charcoal); }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(245,240,232,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__wax-seal {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--gold-dim), #2a1f0e);
  opacity: 0.12;
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 780px;
  animation: heroReveal 1.4s ease-out both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero__line { display: block; }

.hero__line--italic {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim));
}

/* ── MANIFESTO ─────────────────────────────────── */
.manifesto {
  padding: 8rem 2rem;
  background: var(--surface);
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 3rem;
}

.manifesto__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  letter-spacing: 0.01em;
}

/* ── PRODUCTS ───────────────────────────────────── */
.products {
  padding: 8rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.products__header {
  margin-bottom: 4rem;
}

.products__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.products__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .products__grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface-raised);
  border: 1px solid var(--charcoal);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.product-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.product-card--midnight {
  background: #0A0A0A;
  border-color: rgba(201,169,110,0.2);
}

.product-card__tier {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}

.product-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.product-card__features li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding-left: 1rem;
  position: relative;
}

.product-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.75rem;
}

.product-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border-radius: 2px;
  overflow: hidden;
}

.product-card__envelope {
  width: 60%;
  height: 55%;
  background: var(--cream);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.product-card__envelope::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0; height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #E8E3D8;
  transform: translateX(-50%);
}

.product-card__envelope--black {
  background: #1A1A1A;
  border: 1px solid rgba(201,169,110,0.3);
}

.product-card__envelope--black::before {
  border-top-color: #141414;
}

.product-card__seal {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 2;
}

.product-card__seal--cream { background: #C9A96E; }
.product-card__seal--gold { background: var(--gold); }
.product-card__seal--black {
  background: #111;
  border: 1px solid var(--gold);
}

.product-card__ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(201,169,110,0.3);
}

.product-card__ribbon--gold {
  background: var(--gold);
  height: 6px;
}

.product-card__foil {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  opacity: 0.5;
}

/* ── PROCESS ────────────────────────────────────── */
.process {
  padding: 8rem 2rem;
  background: var(--surface);
}

.process > * {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process__header {
  margin-bottom: 5rem;
}

.process__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr; gap: 3rem; }
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process__step-visual {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.process__icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process__icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
}

.process__icon--quill::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 60% 40%, 100% 60%, 60% 80%, 50% 100%, 40% 80%, 0% 60%, 40% 40%);
  opacity: 0.6;
}

.process__icon--seal::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.process__icon--box::before {
  content: '';
  width: 22px;
  height: 16px;
  border: 1.5px solid var(--gold);
  opacity: 0.7;
  border-radius: 1px;
}

.process__step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.process__step-content p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials {
  padding: 8rem 2rem;
}

.testimonials__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testimonials__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 3rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

.testimonial {
  border: 1px solid var(--charcoal);
  padding: 2rem;
}

.testimonial--large {
  border-color: rgba(201,169,110,0.2);
  padding: 2.5rem;
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.testimonial--large .testimonial__quote {
  font-size: 1.6rem;
}

.testimonial__source {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── CLOSING ────────────────────────────────────── */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing__inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing__sub {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--charcoal);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__meta {
  text-align: right;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--cream-dim);
  font-style: italic;
  font-family: var(--font-serif);
  margin-bottom: 0.3rem;
}

.footer__copyright {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .footer { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}

/* ── GLOBAL BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  padding: 0.8rem 2rem;
}

.btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--charcoal);
  padding: 0.8rem 2rem;
}

.btn--ghost:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.btn--sm {
  font-size: 0.7rem;
  padding: 0.55rem 1.3rem;
}

.btn--lg {
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
}

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.6);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* Offset for fixed nav on homepage */
.hero { padding-top: 8rem; }

/* ── HERO ACTIONS (CTA button) ──────────────────── */
.hero__actions {
  margin-top: 2.5rem;
}

/* ── PRODUCT CARD CTA ───────────────────────────── */
.product-card__cta {
  display: block;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border: 1px solid var(--charcoal);
  color: var(--cream-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.product-card__cta:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

.product-card__cta--featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.product-card__cta--featured:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

/* ── FOOTER REDESIGN ────────────────────────────── */
.footer {
  /* override old flex layout */
  display: block;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--charcoal);
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  font-family: var(--font-serif);
}

.footer__email-signup {
  max-width: 340px;
  flex: 1;
}

.footer__signup-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.footer__signup-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__signup-input {
  flex: 1;
  min-width: 0;
  background: var(--surface-raised);
  border: 1px solid var(--charcoal);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.footer__signup-input::placeholder { color: var(--text-muted); }
.footer__signup-input:focus { border-color: var(--gold-dim); }

.footer__signup-status {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  min-height: 1.2rem;
}

.footer__signup-status--success { color: var(--gold); }
.footer__signup-status--error { color: #e05c5c; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(42, 42, 42, 0.5);
}

.footer__copyright {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__nav-link:hover { color: var(--gold-dim); }

/* ── PRODUCT PAGES ──────────────────────────────── */

/* NAV offset for product pages */
.product-page--essential body,
.product-page--signature body,
.product-page--midnight body {
  padding-top: 0;
}

/* Product Hero */
.product-hero {
  padding: 9rem 2rem 6rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .product-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Product visual mockup */
.product-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero__mock {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  background: var(--surface-raised);
  border: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-hero__mock--midnight {
  background: #060606;
  border-color: rgba(201, 169, 110, 0.25);
}

.product-hero__mock--signature {
  background: #111;
  border-color: rgba(201, 169, 110, 0.15);
}

.product-hero__mock-inner {
  position: relative;
  width: 70%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Essential: envelope mockup */
.product-hero__envelope {
  width: 100%;
  height: 75%;
  background: var(--cream);
  position: relative;
}

.product-hero__envelope::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 34px solid #E8E3D8;
}

.product-hero__seal {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--gold), #7a5f30);
  z-index: 2;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

/* Signature: gift box mockup */
.product-hero__gift-box {
  width: 85%;
  height: 75%;
  background: #1A1A1A;
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
}

.product-hero__ribbon-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: 2;
}

.product-hero__ribbon-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: 2;
}

/* Midnight: rigid box mockup */
.product-hero__box-body {
  width: 85%;
  height: 65%;
  background: #080808;
  border: 1px solid rgba(201, 169, 110, 0.3);
  position: absolute;
  bottom: 10%;
}

.product-hero__box-lid {
  width: 88%;
  height: 22%;
  background: #0E0E0E;
  border: 1px solid rgba(201, 169, 110, 0.5);
  position: absolute;
  top: 8%;
  z-index: 3;
}

.product-hero__gold-foil {
  width: 60%;
  height: 20px;
  position: absolute;
  top: calc(8% + 11%);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.product-hero__seal-ring {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  opacity: 0.2;
  z-index: 1;
}

.product-hero__tier-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}

.product-hero__glow {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  z-index: -1;
}

.product-hero__glow--essential {
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.product-hero__glow--signature {
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.product-hero__glow--midnight {
  background: radial-gradient(ellipse 60% 60% at 50% 80%, rgba(201,169,110,0.12) 0%, transparent 70%);
}

/* Product copy */
.product-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-hero__tier-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}

.product-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-hero__subhead {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.6;
  font-weight: 300;
}

.product-hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-hero__price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.product-hero__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.product-hero__buy {
  align-self: flex-start;
}

.product-hero__occasion {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold-dim);
  font-style: italic;
  border-left: 2px solid var(--charcoal);
  padding-left: 1rem;
}

/* Product Details */
.product-details {
  background: var(--surface);
  padding: 6rem 2rem;
}

.product-details__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 768px) {
  .product-details__inner { grid-template-columns: 1fr; gap: 3rem; }
}

.product-details__label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.product-details__text {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.75;
  font-weight: 300;
}

.product-details__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-details__list li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.product-details__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.8rem;
}

/* Product CTA Banner */
.product-cta {
  padding: 6rem 2rem;
  text-align: center;
}

.product-cta__inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.product-cta__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
}

/* Other kits section */
.product-other {
  background: var(--surface);
  padding: 5rem 2rem;
}

.product-other__header {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.product-other__label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.product-other__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.product-other__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.product-other__card {
  flex: 1;
  min-width: 180px;
  padding: 2rem;
  border: 1px solid var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}

.product-other__card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.product-other__card--featured {
  border-color: rgba(201, 169, 110, 0.3);
}

.product-other__tier {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}

.product-other__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
}

.product-other__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
}

/* ── SUCCESS PAGE ────────────────────────────────── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  text-align: center;
}

.success-page__inner {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.success-page__seal-icon {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.success-page__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.success-page__sub {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.success-page__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-dim);
  line-height: 1.5;
}