/* ============================================================
   HEARING RIBBON — Master Stylesheet
   Editorial luxury × quiet activism
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=DM+Sans:opsz,wght@9..40,300..700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand colors */
  --gold:        #DBA441;
  --gold-deep:   #B88828;
  --gold-soft:   #EFD9A6;
  --silver:      #A7A9AC;
  --silver-soft: #D9DCE1;
  --royal:       #276FBA;
  --navy:        #353399;
  --navy-deep:   #1A1A4D;
  --ink:         #0D0D2A;

  /* Neutrals */
  --paper:       #FFFFFF;
  --cream:       #FAF7F0;
  --cream-deep:  #F2EDDF;
  --line:        #E5E1D5;
  --muted:       #6B6A66;

  /* Type */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'DM Sans', monospace;

  /* Scale */
  --container:   1280px;
  --container-narrow: 880px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Elevation */
  --shadow-sm:   0 1px 2px rgba(13,13,42,0.04), 0 1px 3px rgba(13,13,42,0.06);
  --shadow-md:   0 4px 16px rgba(13,13,42,0.08), 0 2px 4px rgba(13,13,42,0.04);
  --shadow-lg:   0 24px 60px -12px rgba(13,13,42,0.18), 0 8px 24px rgba(13,13,42,0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'ss01', 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--gold-deep);
}

.eyebrow.silver { color: var(--silver); }
.eyebrow.navy { color: var(--navy); }
.eyebrow.cream { color: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 500; }

em, .italic { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 80; }

.lede {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.82;
  max-width: 56ch;
}

.fine {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.tm {
  font-size: 0.6em;
  vertical-align: super;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow { max-width: var(--container-narrow); }

section { padding: clamp(4rem, 9vw, 8rem) 0; position: relative; }
section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13,13,42,0.2);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: all 0.4s var(--ease-out);
  background: rgba(250, 247, 240, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand .ribbon-mark {
  width: 28px;
  height: 38px;
}
.brand-gold { color: var(--gold-deep); }

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, var(--cream) 0%, rgba(250, 247, 240, 0.72) 32%, rgba(250, 247, 240, 0) 62%),
    url('/assets/hero-bg.jpg');
  background-size: cover, cover;
  background-position: center, right center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s var(--ease-out) both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  animation: fadeUp 1.1s var(--ease-out) 0.05s both;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--gold-deep);
  display: block;
}

.hero .lede {
  animation: fadeUp 1.1s var(--ease-out) 0.2s both;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1.1s var(--ease-out) 0.35s both;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 1.3s var(--ease-out) 0.4s both;
}
.hero-visual .ribbon-art {
  width: min(360px, 80%);
  filter: drop-shadow(0 30px 60px rgba(53, 51, 153, 0.18));
  animation: float 6s ease-in-out infinite;
}

/* Hide redundant in-page ribbon and "listen" decoration when hero uses a background image */
.hero .hero-visual { visibility: hidden; }
.hero .hero-decoration { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-decoration {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 18rem);
  color: var(--gold);
  opacity: 0.04;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
  z-index: -1;
}

/* ---------- Sections ---------- */
.section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 1.25rem; display: inline-block; }
.section-head h2 { margin-bottom: 1.5rem; }

.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}

/* ---------- Pillars ---------- */
.pillars {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.pillar {
  text-align: left;
  padding-top: 2rem;
  border-top: 1px solid var(--gold);
  position: relative;
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  display: block;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Symbol Section ---------- */
.symbol {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.symbol::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(219, 164, 65, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(53, 51, 153, 0.25), transparent 50%);
  pointer-events: none;
}

/* Background-image variant — used on the homepage symbol section.
   Image carries its own ribbon visual, so the .symbol-art SVG is hidden
   (visibility preserves the grid column, image's right half shows through). */
.symbol.has-bg {
  background-color: #0C0C26;
  background-image: url('/assets/symbol-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.symbol.has-bg::before { display: none; }
.symbol.has-bg .symbol-art { visibility: hidden; }

.symbol h2, .symbol .lede { color: var(--cream); }
.symbol .lede { opacity: 0.78; }
.symbol .eyebrow { color: var(--gold); }

.symbol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.symbol-art {
  display: flex;
  justify-content: center;
}
.symbol-art .ribbon-art {
  width: min(320px, 80%);
  filter: drop-shadow(0 30px 80px rgba(219, 164, 65, 0.25));
}

.symbol-meanings {
  display: grid;
  gap: 2rem;
}
.meaning {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 247, 240, 0.1);
}
.meaning:last-child { border-bottom: none; padding-bottom: 0; }
.meaning-swatch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meaning-swatch.gold {
  background: linear-gradient(135deg, #EFD9A6, #DBA441 50%, #B88828);
}
.meaning-swatch.silver {
  background: linear-gradient(135deg, #E8EAED, #A7A9AC 50%, #6E7378);
}
.meaning-swatch.ear {
  background: var(--navy);
}
.meaning-swatch.ear svg { width: 26px; height: 26px; stroke: var(--cream); }
.meaning h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.meaning p {
  color: var(--cream);
  opacity: 0.7;
  font-size: 0.95rem;
}

.symbol-quote {
  margin-top: 4rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold);
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.symbol-quote::before, .symbol-quote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.6;
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s var(--ease-out);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}
.product-visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 60%);
  pointer-events: none;
}
.product-visual .ribbon-art {
  width: 50%;
  transition: transform 0.6s var(--ease-out);
  z-index: 1;
}
.product:hover .product-visual .ribbon-art { transform: scale(1.08) rotate(-3deg); }

/* Real product photography variant */
.product-visual.has-photo {
  background: var(--cream-deep);
  aspect-ratio: 1 / 1;
}
.product-visual.has-photo::after { display: none; }
.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.8s var(--ease-out);
}
.product:hover .product-visual.has-photo .product-photo { transform: scale(1.04); }

/* Product hero (products.html detail sections) */
.product-hero .product-visual.has-photo {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}

.product-info { padding: 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.product h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.product p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.25rem; flex-grow: 1; }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.product-price { color: var(--gold-deep); font-weight: 500; font-style: italic; font-family: var(--font-display); }
.product-link { color: var(--ink); font-weight: 500; letter-spacing: 0.02em; }
.product-link .arrow { transition: transform 0.3s var(--ease-out); display: inline-block; }
.product:hover .product-link .arrow { transform: translateX(4px); }

/* ---------- Manifesto / Mission ---------- */
.manifesto {
  background: var(--cream-deep);
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.15;
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 0 auto 2.5rem;
}
.manifesto-quote em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.manifesto-attribution {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifesto-attribution::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
}

/* ---------- Email Capture ---------- */
.subscribe {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(219, 164, 65, 0.15), transparent 50%);
  pointer-events: none;
}
.subscribe h2, .subscribe .lede { color: var(--cream); }
.subscribe .lede { opacity: 0.85; max-width: 60ch; margin-left: auto; margin-right: auto; }
.subscribe .eyebrow { color: var(--gold-soft); }

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 2.5rem auto 1.5rem;
  background: var(--paper);
  padding: 0.4rem;
  border-radius: 999px;
  position: relative;
  z-index: 1;
}
.subscribe-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form button {
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
}
.subscribe-form button:hover { background: var(--gold); color: var(--ink); }
.subscribe-form button:disabled { opacity: 0.6; cursor: wait; }

.form-fine { font-size: 0.8rem; color: var(--cream); opacity: 0.65; max-width: 50ch; margin: 0 auto; }

.form-message {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  min-height: 1.5em;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold-soft);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 240, 0.1);
}
.footer-brand .brand {
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 30ch;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a:hover { opacity: 1; color: var(--gold); }

.social-row { display: flex; gap: 0.85rem; align-items: center; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0.9;
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.social-row svg { width: 16px; height: 16px; }

/* ---------- Inner pages (legal, products, symbol, about) ---------- */
.page-header {
  padding: 9rem 0 4rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
}
.page-header .eyebrow { margin-bottom: 1.25rem; display: inline-block; }
.page-header .lede { max-width: 60ch; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.prose h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.prose h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.prose p { margin-bottom: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { list-style: disc; margin-bottom: 0.4rem; }
.prose ol li { list-style: decimal; margin-bottom: 0.4rem; }
.prose strong { font-weight: 600; }
.prose em { color: var(--gold-deep); font-style: italic; }
.prose a { color: var(--royal); border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--gold-deep); }
.prose hr {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 2.5rem 0;
}

/* Single product detail */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: 6rem 0;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * { transition-delay: var(--d, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    background-image:
      linear-gradient(180deg, var(--cream) 0%, rgba(250, 247, 240, 0.88) 28%, rgba(250, 247, 240, 0.2) 58%, rgba(250, 247, 240, 0) 80%),
      url('/assets/hero-bg.jpg');
    background-position: center, center 80%;
    min-height: 88vh;
  }
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .hero .hero-visual { display: none; }
  .hero-visual .ribbon-art { width: 200px; }
  .symbol-grid { grid-template-columns: 1fr; }
  .symbol-art { order: -1; }
  .symbol.has-bg .symbol-art { display: none; }
  .symbol.has-bg { background-position: 75% center; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .product-hero { grid-template-columns: 1fr; padding: 4rem 0; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(85%, 360px);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-display); }
  .nav-toggle { display: flex; z-index: 102; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .subscribe-form { flex-direction: column; padding: 1rem; border-radius: 18px; }
  .subscribe-form button { width: 100%; padding: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
