/* ============================================================
   ChocoPrints3D — Main Stylesheet
   Fonts: Cormorant Garamond (display) + Raleway (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --choc-dark:    #7A3D1A;
  --choc-med:     #5C2D0E;
  --choc-warm:    #7B3A18;
  --gold:         #C8860A;
  --gold-light:   #E8A820;
  --gold-pale:    #FDF0CC;
  --cream-bg:     #FEF5E4;
  --cream-card:   #FFF8EE;
  --cream-rule:   #F0E0C0;
  --blush:        #C4756A;
  --blush-light:  #EDCCC8;
  --blush-dark:   #8B3D35;
  --sage:         #7A9B7A;
  --sage-light:   #D6E8D6;
  --sage-dark:    #3A5C3A;
  --text-dark:    #1E0C04;
  --text-med:     #5C2D0E;
  --text-light:   #9B6040;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --radius-xl:    24px;

  --shadow-soft:  0 4px 24px rgba(44,18,4,0.08);
  --shadow-card:  0 8px 40px rgba(44,18,4,0.12);
  --shadow-hover: 0 12px 48px rgba(44,18,4,0.18);

  --transition:   all 0.28s ease;
  --max-width:    1200px;
  --header-h:     80px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--choc-dark); }

/* Dot texture background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(120,60,20,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--choc-dark);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Header / Navigation ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #8B4A22;
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(44,18,4,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo img {
  height: 56px;
  width: auto;
  transition: var(--transition);
}
.site-logo img:hover { opacity: 0.9; transform: scale(1.02); }

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.site-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream-rule);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
}
.site-nav a:hover, .site-nav .current-menu-item a {
  color: var(--gold-light);
  background: rgba(200,134,10,0.12);
}
.site-nav .nav-cta a {
  background: var(--blush);
  color: var(--cream-rule) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}
.site-nav .nav-cta a:hover {
  background: var(--blush-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream-rule);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #8B4A22;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 3px solid var(--gold);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.15rem; }
  .site-nav a { display: block; padding: 0.6rem 1rem; }
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #A05525 0%, #7A3D1A 55%, #5C2D0E 100%);
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(200,134,10,0.12) 0%, transparent 70%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}
.hero-text .section-label { color: var(--blush); }
.hero-text h1 {
  color: var(--cream-rule);
  margin-bottom: 1.25rem;
}
.hero-text h1 span { color: var(--gold-light); font-style: italic; }
.hero-text p {
  color: rgba(240,224,192,0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(200,134,10,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-image img { max-width: 280px; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--choc-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--choc-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,134,10,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream-rule);
  border-color: rgba(240,224,192,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--choc-dark);
  color: var(--gold-light);
  border-color: var(--choc-dark);
}
.btn-dark:hover {
  background: var(--choc-med);
  transform: translateY(-2px);
}
.btn-blush {
  background: var(--blush);
  color: var(--cream-card);
  border-color: var(--blush);
}
.btn-blush:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--cream-card);
  border: 1px solid var(--cream-rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.card-dark {
  background: var(--choc-dark);
  border-color: rgba(200,134,10,0.3);
  color: var(--cream-rule);
}
.card-dark h3 { color: var(--gold-light); }
.card-blush { background: var(--blush-light); border-color: var(--blush); }
.card-sage  { background: var(--sage-light);  border-color: var(--sage); }
.card-gold  { background: var(--gold-pale);   border-color: var(--gold); }

/* ── Pillars / Feature Icons ────────────────────────────────── */
.pillar {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.pillar h3 { margin-bottom: 0.5rem; }

/* ── Pricing Tables ─────────────────────────────────────────── */
.pricing-table { display: grid; gap: 1.5rem; }
.pricing-card {
  background: var(--cream-card);
  border: 2px solid var(--cream-rule);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card.featured {
  background: var(--choc-dark);
  border-color: var(--gold);
  transform: scale(1.02);
}
.pricing-card.featured h3 { color: var(--gold-light); }
.pricing-card.featured p  { color: var(--cream-rule); }
.pricing-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-hover); }
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--choc-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--choc-dark);
  line-height: 1;
}
.price-big .cents { font-size: 1.5rem; vertical-align: super; }
.price-big .per   { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.pricing-card.featured .price-big { color: var(--gold-light); }
.pricing-card.featured .price-big .per { color: var(--cream-rule); opacity: 0.7; }

.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.92rem;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.pricing-card.featured .feature-list li { color: var(--cream-rule); }
.pricing-card.featured .feature-list li::before { color: var(--gold-light); }

/* ── Savings Badge ──────────────────────────────────────────── */
.savings-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 0.75rem;
}
.pricing-card.featured .savings-badge {
  background: rgba(122,155,122,0.25);
  color: var(--sage-light);
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { color: var(--text-med); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.section-header--left { text-align: left; }
.section-header--left p { margin-left: 0; }

/* ── Gold Rule Dividers ─────────────────────────────────────── */
.gold-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 4rem 0;
}

/* ── Occasion Chips ─────────────────────────────────────────── */
.chip-group { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.chip-choc  { background: var(--choc-dark); color: var(--gold-light); }
.chip-blush { background: var(--blush);     color: var(--cream-card); }
.chip-sage  { background: var(--sage);      color: var(--cream-card); }
.chip-gold  { background: var(--gold);      color: var(--choc-dark); }

/* ── Steps / How It Works ───────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--sage));
}
.step { text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step:nth-child(1) .step-num { background: var(--blush);     color: var(--cream-card); }
.step:nth-child(2) .step-num { background: var(--gold);      color: var(--choc-dark); }
.step:nth-child(3) .step-num { background: var(--sage);      color: var(--cream-card); }
.step h4 { margin-bottom: 0.5rem; }
.step p  { color: var(--text-med); font-size: 0.92rem; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #9B5220 0%, #7A3D1A 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,134,10,0.1) 0%, transparent 70%);
}
.cta-band h2 { color: #FFF8EE; margin-bottom: 1rem; }
.cta-band p  { color: rgba(240,224,192,0.8); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Stat Counters ──────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  background: var(--cream-card);
  border: 1px solid var(--cream-rule);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-med); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2,1fr); } }

/* ── Info Row (icon + text) ─────────────────────────────────── */
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.info-text h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.info-text p  { font-size: 0.9rem; color: var(--text-med); margin: 0; }

/* ── Contact Form ───────────────────────────────────────────── */
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--choc-med);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-rule);
  border-radius: var(--radius-md);
  background: var(--cream-card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  margin-bottom: 1.25rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.wpcf7-submit { width: 100%; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--cream-rule);
  padding: 1.25rem 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--choc-dark);
  font-size: 1.05rem;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding-top: 0.75rem; color: var(--text-med); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── Gallery Grid ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-rule);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #9B5220 0%, #7A3D1A 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(200,134,10,0.1) 0%, transparent 60%);
}
.page-hero .section-label { color: var(--blush); }
.page-hero h1 { color: var(--cream-rule); margin-bottom: 1rem; }
.page-hero p  { color: rgba(240,224,192,0.8); max-width: 580px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(240,224,192,0.55);
}
.breadcrumb a { color: rgba(240,224,192,0.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #5C2D0E;
  color: var(--cream-rule);
  padding: 4rem 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold), var(--sage));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,134,10,0.2);
}
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(240,224,192,0.7); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  color: rgba(240,224,192,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact p { font-size: 0.9rem; color: rgba(240,224,192,0.7); margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(240,224,192,0.45);
}
.footer-bottom a { color: rgba(240,224,192,0.45); }
.footer-bottom a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(200,134,10,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--choc-dark); border-color: var(--gold); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: var(--choc-dark);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}
body.has-announcement { --header-h: 112px; }
body.has-announcement .site-header { top: 36px; }

/* ── Utilities ──────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold-light) !important; }
.text-cream   { color: var(--cream-rule) !important; }
.text-blush   { color: var(--blush) !important; }
.text-sage    { color: var(--sage-dark) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Scroll Animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
