/* =========================================
   Velqira — Shared Design System
   Based on official VI: Plum Purple, Soft Cream, Brushed Brass
   ========================================= */

:root {
  /* Brand palette — from VI */
  --plum: #672481;
  --plum-deep: #483147;
  --plum-shadow: #2e1a3a;
  --plum-darker: #1d1027;
  --cream: #F3E8DC;
  --cream-warm: #E8DAC8;
  --taupe: #8B7869;
  --brass: #C8A86A;
  --brass-bright: #D9BC7F;

  /* Functional */
  --text: #F3E8DC;
  --text-muted: #C9B8A8;
  --text-on-cream: #2e1a3a;
  --text-on-cream-muted: #6b5a52;
  --border: rgba(243, 232, 220, 0.14);
  --border-strong: rgba(243, 232, 220, 0.24);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.28);

  /* Layout */
  --max: 1240px;
  --max-narrow: 920px;
  --radius: 4px;
  --radius-lg: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--plum-deep);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(103, 36, 129, 0.35), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(72, 49, 71, 0.5), transparent 50%),
    linear-gradient(180deg, #483147 0%, #2e1a3a 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - 40px), var(--max-narrow));
  margin: 0 auto;
}

/* =========================================
   Typography — Didone-style serif headers
   ========================================= */

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 600; }

p { margin: 0 0 16px; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
}

.divider-ornament::before,
.divider-ornament::after {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--brass);
  opacity: 0.6;
}

.divider-ornament svg {
  color: var(--brass);
}

/* =========================================
   Header / Navigation
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(46, 26, 58, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.wordmark {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.55rem, 2.1vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 1px;
  background: var(--brass);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: 4px;
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--brass);
  color: var(--plum-darker);
}

.btn-primary:hover {
  background: var(--brass-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(200, 168, 106, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--brass);
}

.btn-secondary:hover {
  background: rgba(200, 168, 106, 0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-strong);
}

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

/* On cream background */
.on-cream .btn-secondary,
.btn-on-cream {
  color: var(--plum-deep);
  border-color: var(--plum-deep);
}

/* =========================================
   Sections
   ========================================= */

section {
  position: relative;
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
}

.section-cream {
  background: var(--cream);
  color: var(--text-on-cream);
}

.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4 {
  color: var(--plum-deep);
}

.section-cream .lead,
.section-cream p {
  color: var(--text-on-cream-muted);
}

.section-cream .eyebrow {
  color: var(--plum);
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================================
   Hero — full-bleed image style
   ========================================= */

.hero-bedroom {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bedroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(46, 26, 58, 0.55) 0%, rgba(29, 16, 39, 0.85) 100%),
    url('/images/hero-bedroom.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-inner {
  max-width: 880px;
  padding: 80px 20px;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(4.5rem, 12vw, 9rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 8px;
}

.hero-slogan {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 24px 0 36px;
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================
   Product preview cards
   ========================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: rgba(243, 232, 220, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--brass);
  transform: translateY(-3px);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(200, 168, 106, 0.1), rgba(72, 49, 71, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.product-card-image img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.product-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}

.product-card-title {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.product-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 20px;
}

.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--brass);
  margin-bottom: 18px;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.product-card-cta:hover {
  color: var(--brass);
  gap: 14px;
}

/* =========================================
   Brand block
   ========================================= */

.brand-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-block-text h2 {
  margin-bottom: 24px;
}

.brand-block-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, rgba(200, 168, 106, 0.1), rgba(72, 49, 71, 0.2));
}

/* =========================================
   Blog preview
   ========================================= */

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.blog-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

.blog-card-title {
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--brass);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   Coming Soon hero (Next product page)
   ========================================= */

.coming-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px;
  position: relative;
}

.coming-hero-inner {
  max-width: 760px;
}

.coming-orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 40px;
  background:
    radial-gradient(circle at 35% 30%, rgba(200, 168, 106, 0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(103, 36, 129, 0.6), transparent 60%),
    radial-gradient(circle, rgba(72, 49, 71, 0.9), rgba(29, 16, 39, 1));
  box-shadow:
    0 0 80px rgba(200, 168, 106, 0.2),
    inset 0 0 40px rgba(200, 168, 106, 0.05);
  animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 80px rgba(200, 168, 106, 0.2), inset 0 0 40px rgba(200, 168, 106, 0.05); }
  50% { transform: scale(1.04); box-shadow: 0 0 120px rgba(200, 168, 106, 0.3), inset 0 0 60px rgba(200, 168, 106, 0.08); }
}

/* =========================================
   Vision pillars (Next product page)
   ========================================= */

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.vision-pillar {
  text-align: center;
  padding: 30px 20px;
}

.vision-pillar-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass);
}

.vision-pillar h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.vision-pillar p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   Email signup
   ========================================= */

.signup-block {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  padding: 40px 0;
}

.signup-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input[type="email"] {
  flex: 1;
  min-width: 260px;
  height: 52px;
  padding: 0 22px;
  background: rgba(243, 232, 220, 0.06);
  border: 1px solid var(--border-strong);
  color: var(--cream);
  font: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brass);
}

.signup-form input[type="email"]::placeholder {
  color: rgba(243, 232, 220, 0.4);
}

.signup-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 18px;
}

.social-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-cta-row .btn {
  min-width: 180px;
}

/* =========================================
   Footer
   ========================================= */

.site-footer {
  padding: 60px 0 36px;
  border-top: 1px solid var(--border);
  background: rgba(29, 16, 39, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .wordmark {
  font-size: 1.85rem;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================
   FAQ block (used inline on detail pages)
   ========================================= */

.faq-block {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.2s ease;
}

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

.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brass);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  color: var(--brass);
  margin-bottom: 14px;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-cream .faq-item {
  border-bottom-color: rgba(46, 26, 58, 0.15);
}

.section-cream .faq-item summary {
  color: var(--plum-deep);
}

.section-cream .faq-item p {
  color: var(--text-on-cream-muted);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 980px) {
  .product-grid,
  .brand-block,
  .blog-preview-grid,
  .vision-pillars,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    gap: 36px;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(29, 16, 39, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-bedroom { min-height: 78vh; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Product Detail Pages — Hero, Specs, Features, Buy
   ========================================= */

/* Hero: product image left, details right */
.product-hero {
  padding: clamp(70px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.product-hero-image {
  background: linear-gradient(145deg, rgba(200, 168, 106, 0.08), rgba(72, 49, 71, 0.18));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.product-hero-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

.product-hero-title {
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  margin-bottom: 18px;
  line-height: 1.05;
}

.product-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--brass);
  margin-bottom: 22px;
}

.product-hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-hero-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 26px;
}

.product-hero-price .amount {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--cream);
  font-weight: 500;
}

.product-hero-price .currency {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.product-hero-price .channel {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-left: 4px;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Quick feature list under hero */
.quick-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.quick-bullets li {
  display: flex;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.quick-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  margin-top: 11px;
  background: var(--brass);
  border-radius: 50%;
}

/* =========================================
   Feature rows — alternating block on detail pages
   ========================================= */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-row-text {
  order: 2;
}

.feature-row-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brass);
  margin-bottom: 12px;
}

.feature-row-text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 16px;
}

.feature-row-text p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
}

.section-cream .feature-row-text p {
  color: var(--text-on-cream-muted);
}

.section-cream .feature-row-text h3 {
  color: var(--plum-deep);
}

.section-cream .feature-row-num {
  color: var(--plum);
}

.feature-row-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, rgba(200, 168, 106, 0.1), rgba(72, 49, 71, 0.22));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

.section-cream .feature-row-visual {
  background: linear-gradient(145deg, rgba(72, 49, 71, 0.06), rgba(200, 168, 106, 0.1));
  border-color: rgba(46, 26, 58, 0.12);
  color: var(--text-on-cream-muted);
}

/* =========================================
   Feature blocks — vertical stack with full-width image
   (used on product detail pages instead of two-column rows)
   ========================================= */

.feature-stack {
  max-width: 1080px;
  margin: 0 auto;
}

.feature-block {
  margin-bottom: clamp(60px, 7vw, 100px);
}

.feature-block:last-child {
  margin-bottom: 0;
}

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

.feature-block-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--plum);
  margin-bottom: 12px;
}

.feature-block-text h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
  color: var(--plum-deep);
}

.feature-block-text p {
  color: var(--text-on-cream-muted);
  line-height: 1.85;
  font-size: 1rem;
}

.feature-block-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(46, 26, 58, 0.12);
}

.feature-block-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Product switcher nav */
.product-switcher {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
}

.product-switcher a {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.product-switcher a:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.product-switcher a:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.product-switcher a.active {
  background: var(--brass);
  color: var(--plum-deep);
  border-color: var(--brass);
}

.product-switcher a:not(.active):hover {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
}

@media (max-width: 640px) {
  .feature-block-text h3 {
    font-size: 1.4rem;
  }
}

/* Feature point cards within a feature block */
.feature-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-point {
  background: rgba(46, 26, 58, 0.04);
  border: 1px solid rgba(46, 26, 58, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-point h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--plum-deep);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-point p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-on-cream-muted);
  margin: 0;
}

/* =========================================
   Spec table
   ========================================= */

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto;
}

.spec-row {
  display: contents;
}

.spec-row > * {
  padding: 18px 8px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.spec-label {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spec-value {
  color: var(--cream);
  text-align: right;
  line-height: 1.5;
}

.section-cream .spec-table {
  border-top-color: rgba(46, 26, 58, 0.15);
}

.section-cream .spec-row > * {
  border-bottom-color: rgba(46, 26, 58, 0.12);
}

.section-cream .spec-label {
  color: var(--text-on-cream-muted);
}

.section-cream .spec-value {
  color: var(--plum-deep);
}

/* =========================================
   Buy / Amazon CTA block
   ========================================= */

.buy-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(36px, 5vw, 60px);
  border: 1px solid var(--brass);
  border-radius: var(--radius-lg);
  background: rgba(200, 168, 106, 0.04);
}

.buy-block h2 {
  margin-bottom: 14px;
}

.buy-block-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.3vw, 1.8rem);
  color: var(--brass);
  margin-bottom: 24px;
}

.buy-block-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 22px;
}

.section-cream .buy-block {
  background: rgba(200, 168, 106, 0.08);
  border-color: var(--brass);
}

.section-cream .buy-block-note {
  color: var(--text-on-cream-muted);
}

/* =========================================
   FAQ aggregator — grouped sections
   ========================================= */

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin: 0 auto 60px;
  max-width: 780px;
}

.faq-topic-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.faq-topic-nav a:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.section-cream .faq-topic-nav a {
  border-color: rgba(46, 26, 58, 0.2);
  color: var(--text-on-cream-muted);
}

.section-cream .faq-topic-nav a:hover {
  color: var(--plum);
  border-color: var(--plum);
}

.faq-topic-group {
  margin-bottom: clamp(50px, 6vw, 80px);
  scroll-margin-top: 100px;
}

.faq-topic-group:last-child {
  margin-bottom: 0;
}

.faq-topic-group h2 {
  margin-bottom: 8px;
}

.faq-topic-group-intro {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.section-cream .faq-topic-group-intro {
  color: var(--text-on-cream-muted);
}

/* =========================================
   Article (blog template) layout
   ========================================= */

.article-page {
  padding: clamp(60px, 8vw, 100px) 0;

  /* Light reading theme — white background, dark text.
     Re-scopes the brand color variables for this page only, so the
     inline var(--cream)/var(--brass)/var(--text) references used throughout
     the article markup automatically resolve to readable dark-on-light values.
     The dark site header and footer are unaffected. */
  background: #ffffff;
  color: #2e1a3a;
  --text: #2e1a3a;
  --text-muted: #6b5a52;
  --cream: #2e1a3a;
  --brass: #672481;
  --border: rgba(46, 26, 58, 0.12);
  --border-strong: rgba(46, 26, 58, 0.22);
}

/* Table tweaks for the light reading theme (the base table rules use
   light-on-dark tints that disappear on a white background). */
.article-page .article-body table {
  background: transparent;
}

.article-page .article-body thead th {
  background: rgba(103, 36, 129, 0.06);
}

.article-page .article-body tbody tr:nth-child(even) td,
.article-page .article-body tbody tr:nth-child(even) th {
  background: rgba(46, 26, 58, 0.035);
}

.article-header {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-title {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.article-dek {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-body p {
  margin-bottom: 26px;
}

.article-body h2 {
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  margin-top: 56px;
  margin-bottom: 20px;
}

.article-body h3 {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 20px 30px;
  border-left: 2px solid var(--brass);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
}

/* Article tables (real HTML tables, not text indentation) */
.article-table-wrap {
  margin: 40px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  background: rgba(243, 232, 220, 0.02);
}

.article-body table caption {
  caption-side: top;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 16px 18px 4px;
}

.article-body thead th {
  background: rgba(200, 168, 106, 0.10);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-strong);
}

.article-body tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--cream);
  vertical-align: top;
  white-space: nowrap;
}

.article-body tbody td,
.article-body tbody th {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.article-body tbody tr:last-child td,
.article-body tbody tr:last-child th {
  border-bottom: none;
}

.article-body tbody tr:nth-child(even) td,
.article-body tbody tr:nth-child(even) th {
  background: rgba(243, 232, 220, 0.025);
}

@media (max-width: 600px) {
  .article-body table { font-size: 0.88rem; }
  .article-body thead th,
  .article-body tbody td,
  .article-body tbody th { padding: 11px 12px; }
  .article-body tbody th { white-space: normal; }
}

.article-footer {
  max-width: 680px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-questions {
  margin-top: 40px;
}

.related-questions h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.related-questions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-questions li {
  margin-bottom: 12px;
}

.related-questions a {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.related-questions a:hover {
  color: var(--brass);
}

.related-questions a::after {
  content: " →";
  color: var(--brass);
}

/* =========================================
   Brand pillar grid (Brand page)
   ========================================= */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
  margin-top: 50px;
}

.pillar-card {
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(243, 232, 220, 0.025);
}

.pillar-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brass);
  margin-bottom: 10px;
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--cream);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
}

.section-cream .pillar-card {
  background: rgba(46, 26, 58, 0.03);
  border-color: rgba(46, 26, 58, 0.12);
}

.section-cream .pillar-card h3 {
  color: var(--plum-deep);
}

.section-cream .pillar-card p {
  color: var(--text-on-cream-muted);
}

/* =========================================
   Stay Updated inline nudge (blog footer)
   ========================================= */

.updated-nudge {
  margin: 48px auto 0;
  max-width: 600px;
  padding: 28px 32px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}

.updated-nudge .eyebrow {
  margin-bottom: 12px;
}

.updated-nudge p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.section-cream .updated-nudge {
  border-color: rgba(46, 26, 58, 0.18);
}

.section-cream .updated-nudge p {
  color: var(--text-on-cream-muted);
}

/* =========================================
   Responsive overrides for new components
   ========================================= */

@media (max-width: 980px) {
  .product-hero-grid,
  .feature-row,
  .pillar-grid,
  .spec-table {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .spec-table {
    gap: 0;
  }

  .feature-row.reverse .feature-row-text {
    order: 0;
  }

  .spec-value {
    text-align: left;
  }
}

/* =========================================
   Velvet orb image replacement (Next page)
   Replaces the .coming-orb CSS placeholder
   ========================================= */

.coming-orb-image {
  width: clamp(280px, 38vw, 460px);
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  border: 1px solid var(--border-strong);
}

.coming-orb-image img {
  display: block;
  width: 100%;
  height: auto;
}
