/* ========================================================
   CrystalLuck — Midnight Atelier design system
   Dark celestial · antique gold · violet undertones
   ======================================================== */

:root {
  /* Backgrounds */
  --bg-deep: #07050c;            /* near black with violet tint */
  --bg-base: #0c0817;             /* midnight */
  --bg-elev: #130e22;             /* elevated surface */
  --bg-glass: rgba(19, 14, 34, 0.55);

  /* Accents */
  --gold: #c9a86b;                /* antique gold */
  --gold-bright: #e4c78c;
  --gold-dim: #8c7445;
  --plum: #2e1a42;                /* deep plum highlight */
  --plum-glow: rgba(138, 96, 190, 0.35);

  /* Text */
  --text: #ece4d3;                /* warm ivory */
  --text-dim: #9a8fa8;
  --text-muted: #675d78;

  /* Lines */
  --hairline: rgba(201, 168, 107, 0.18);
  --hairline-strong: rgba(201, 168, 107, 0.4);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Josefin Sans', -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(46, 26, 66, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(138, 96, 190, 0.12) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle starfield overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 60% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 80% 80%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(228, 199, 140, 0.4), transparent);
  background-size: 1200px 800px;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 400; }
h3 { font-size: 1.4rem; }
p { color: var(--text-dim); margin-bottom: 1.2rem; font-weight: 300; }
.accent, strong.accent { color: var(--gold); font-weight: 400; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  color: var(--gold);
  opacity: 0.6;
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  flex: 1;
  max-width: 120px;
}
.divider svg { width: 18px; height: 18px; fill: var(--gold); }

/* ---- Layout ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

section { padding: 5rem 0; position: relative; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-head h2 { margin-bottom: 0.8rem; }
.section-head p { color: var(--text-dim); max-width: 560px; margin: 0 auto; font-size: 0.98rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(7, 5, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
}
.nav-links { display: none; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; left: 0; }
@media (min-width: 900px) { .nav-links { display: flex; } }

.menu-toggle {
  background: none; border: none; color: var(--gold);
  font-size: 1.5rem; cursor: pointer; display: block;
  padding: 6px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 12, 0.98);
  backdrop-filter: blur(16px);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 4rem 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--gold); font-size: 1.8rem; cursor: pointer; }
.mobile-menu ul { list-style: none; margin-top: 2rem; }
.mobile-menu li { padding: 1.1rem 0; border-bottom: 1px solid var(--hairline); }
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,5,12,0.55) 0%, rgba(7,5,12,0.9) 100%),
    url('/images/hero-zodiac-circle.jpg') center/cover;
  z-index: -1;
  filter: saturate(0.7) brightness(0.8);
}
.hero .eyebrow { animation: fadeUp 1.4s var(--ease) 0.2s backwards; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.3rem;
  animation: fadeUp 1.4s var(--ease) 0.4s backwards;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-lead {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.2rem;
  color: var(--text-dim);
  font-weight: 300;
  animation: fadeUp 1.4s var(--ease) 0.6s backwards;
}
.hero-cta { animation: fadeUp 1.4s var(--ease) 0.8s backwards; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.4s;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 168, 107, 0.25); }
.btn:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  margin-left: 12px;
}
.btn-ghost::before { display: none; }
.btn-ghost:hover {
  background: rgba(201, 168, 107, 0.08);
  color: var(--gold-bright);
  box-shadow: 0 0 24px rgba(201, 168, 107, 0.15);
}

/* ---- Trust strip ---- */
.trust-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.8rem 0;
  background: rgba(12, 8, 23, 0.4);
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
}
.trust-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.3; flex-shrink: 0; }

/* ---- Intention grid ---- */
.intention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .intention-grid { grid-template-columns: repeat(4, 1fr); } }
.intention-card {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.intention-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(201, 168, 107, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.intention-card:hover { border-color: var(--hairline-strong); transform: translateY(-4px); }
.intention-card:hover::before { opacity: 1; }
.intention-card svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.2; margin-bottom: 1rem; position: relative; }
.intention-card .name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; position: relative; letter-spacing: 0.02em; }
.intention-card .meta { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 4px; position: relative; }

/* Gold corners on cards */
.intention-card::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 14px; height: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.5s;
}
.intention-card:hover::after { opacity: 1; }

/* ---- Product cards ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.8rem; } }
.product {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative;
}
.product:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--hairline-strong);
}
.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.6s;
}
.product:hover .product-img { filter: saturate(1); }
.product-body { padding: 1.3rem 1.2rem 1.5rem; border-top: 1px solid var(--hairline); }
.product-cat { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold-dim); text-transform: uppercase; margin-bottom: 0.4rem; }
.product-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.6rem; line-height: 1.3; }
.product-price { color: var(--gold); font-size: 1.1rem; font-weight: 400; font-family: var(--font-display); }
.product-price span { font-size: 0.7rem; color: var(--text-muted); margin-left: 4px; }

/* Product corner flourishes */
.product::before, .product::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  border-color: var(--gold);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.product::before { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.product::after { bottom: -1px; right: -1px; border-bottom: 1px solid; border-right: 1px solid; }
.product:hover::before, .product:hover::after { opacity: 1; }

/* ---- Feature / Facts block ---- */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
.fact {
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  padding: 2rem 1.8rem;
  position: relative;
}
.fact-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-style: italic;
}
.fact h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.fact p { color: var(--text-dim); font-size: 0.95rem; margin: 0; }

/* ---- Quiz CTA block ---- */
.quiz-cta {
  background:
    linear-gradient(135deg, rgba(46, 26, 66, 0.6), rgba(12, 8, 23, 0.6)),
    url('/images/constellation.jpg') center/cover;
  padding: 5rem 2rem;
  text-align: center;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.quiz-cta::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.quiz-cta .eyebrow { margin-bottom: 1rem; }
.quiz-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; font-style: italic; }
.quiz-cta p { max-width: 540px; margin: 0 auto 2rem; color: var(--text-dim); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  margin-left: 1rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item .answer { color: var(--text-dim); margin-top: 1rem; padding-right: 2rem; font-size: 0.96rem; }

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.breadcrumbs a { color: var(--gold-dim); text-decoration: none; transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs .sep { margin: 0 0.6rem; opacity: 0.5; }

/* ---- Article (blog post) ---- */
.article {
  max-width: 740px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.article h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 0.8rem; font-weight: 300; }
.article .meta {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}
.article .lead { font-size: 1.15rem; font-style: italic; color: var(--text); margin-bottom: 2rem; font-weight: 300; }
.article h2 {
  font-size: 1.9rem;
  margin: 3rem 0 1rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.article h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: var(--text); }
.article p { color: var(--text-dim); margin-bottom: 1.3rem; }
.article ul, .article ol { color: var(--text-dim); margin: 0 0 1.3rem 1.4rem; }
.article li { margin-bottom: 0.5rem; }
.article a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--hairline-strong); }
.article a:hover { border-bottom-color: var(--gold); }
.callout {
  background: var(--bg-glass);
  border-left: 1px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
}
.callout p { margin: 0; color: var(--text); }
.step {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  padding: 1.5rem 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.step strong { color: var(--text); font-weight: 400; }
.step p { margin: 0.4rem 0 0; font-size: 0.92rem; }
.related {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
.related h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; color: var(--gold); font-style: italic; }
.related a {
  display: block;
  padding: 0.7rem 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.3s;
}
.related a:hover { padding-left: 0.5rem; color: var(--gold); }

/* ---- Footer ---- */
.site-footer {
  padding: 4rem 1.5rem 3rem;
  border-top: 1px solid var(--hairline);
  text-align: center;
  position: relative;
  z-index: 1;
  background: rgba(7, 5, 12, 0.6);
}
.site-footer .brand { display: inline-block; margin-bottom: 1.2rem; }
.site-footer p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 0.6rem; letter-spacing: 0.04em; }
.site-footer a { color: var(--gold-dim); text-decoration: none; margin: 0 0.7rem; transition: color 0.3s; font-size: 0.78rem; letter-spacing: 0.1em; }
.site-footer a:hover { color: var(--gold); }
.site-footer .disclaimer { font-size: 0.7rem; color: var(--text-muted); opacity: 0.7; margin-top: 1.5rem; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ---- Promo bar ---- */
.promo-bar {
  background: linear-gradient(90deg, var(--plum), var(--bg-deep), var(--plum));
  color: var(--text);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  border-bottom: 1px solid var(--hairline);
}
.promo-bar span { color: var(--gold); }
.promo-bar a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold-dim); padding-bottom: 1px; margin-left: 8px; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: all 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Payment Trust Section ---- */
.payment-trust { padding: 4rem 0; }
.payment-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.payment-card {
  background: var(--bg-glass); border: 1px solid var(--gold-dim);
  border-radius: 12px; padding: 2rem 1.5rem; text-align: center;
  backdrop-filter: blur(12px); transition: border-color .3s, transform .3s;
}
.payment-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.payment-icon { margin-bottom: 1rem; }
.payment-icon svg { width: 36px; height: 36px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.payment-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright); margin-bottom: .6rem; }
.payment-card p { font-size: .88rem; line-height: 1.55; color: var(--text-sub); }
.payment-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1rem; }
.pay-badge {
  display: inline-block; padding: .25rem .6rem; border: 1px solid var(--gold-dim);
  border-radius: 4px; font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  color: var(--gold); background: rgba(201,168,107,.08);
}
.trust-badges { margin-top: 2.5rem; text-align: center; }
.badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border: 1px solid var(--gold-dim); border-radius: 20px;
  font-size: .78rem; color: var(--gold); letter-spacing: .03em;
}
.trust-badge svg { width: 16px; height: 16px; fill: none; stroke: var(--gold); stroke-width: 1.5; }

@media (max-width: 768px) {
  .payment-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .badge-row { gap: .6rem; }
  .trust-badge { font-size: .7rem; padding: .4rem .7rem; }
}
@media (max-width: 480px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.italic { font-style: italic; }

/* ---- Scroll reveal JS helper target ---- */
section > * { position: relative; z-index: 1; }
