/* ==========================================================================
   BAKKER EDELMETAAL — Design tokens & styles
   Palette gekozen in lijn met de bestaande huisstijl (marineblauw + goud),
   met een "stempel"-motief (gehaltestempel) als terugkerend signatuurelement.
   Pas onderstaande tokens aan om de huisstijl exact te laten aansluiten.
   ========================================================================== */

:root {
  /* --- Kleuren (design tokens) ---
     Beige / goud / zwart, aansluitend bij de bestaande huisstijl.
     (De variabelen heten nog --navy-* om de rest van het stylesheet
     niet te hoeven omschrijven, maar bevatten nu warme zwart/bruintinten.) */
  --navy-950: #171310;
  --navy-900: #221c16;
  --navy-800: #2f2721;
  --navy-700: #4a3d2e;
  --gold-600: #a3801f;
  --gold-500: #c6a34d;
  --gold-300: #e3cd8f;
  --gold-100: #f4ead0;
  --cream-50: #f8f5ec;
  --cream-100: #f0e9d8;
  --paper-line: #e2d7b8;
  --ink-900: #171b22;
  --ink-700: #3c4453;
  --ink-500: #6b7280;
  --white: #ffffff;
  --success: #2f6b4f;
  --shadow-color: 30 25 15;

  /* --- Typografie --- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* --- Ritme --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --container: 1180px;
  --header-h: 76px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; font-weight: 600; letter-spacing: -0.01em; color: var(--navy-950); }
p { margin: 0 0 1em; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold-500);
  color: var(--navy-950); padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / kickers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-600); font-weight: 500; margin-bottom: 12px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(198,163,77,0.25);
}

/* ---------- Stempel / seal motif (signature element) ---------- */
.seal {
  --seal-size: 84px;
  width: var(--seal-size); height: var(--seal-size);
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.seal::before {
  content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1px dashed currentColor; opacity: 0.55;
}
.seal-mark { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.02em; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(198,163,77,0.25);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .seal { --seal-size: 42px; color: var(--gold-400, var(--gold-500)); }
.brand .seal-mark { font-size: 14px; }
.brand-logo { height: 44px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .brand-logo { height: 50px; }
.brand-name { font-family: var(--font-display); font-size: 19px; line-height: 1.15; font-weight: 600; }
.brand-name span { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300); font-weight: 500; margin-top: 2px; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--cream-100); font-size: 14.5px; font-weight: 500; padding: 8px 0; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold-300); }

.header-cta { display: none; align-items: center; gap: 14px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-weight: 600; font-size: 14.5px; }
.phone-link svg { width: 16px; height: 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-300); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-300); }
.btn-outline-dark { background: transparent; border-color: rgba(20,34,56,0.3); color: var(--navy-950); }
.btn-outline-dark:hover { border-color: var(--navy-900); background: rgba(20,34,56,0.05); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

.nav-toggle {
  display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; color: var(--white);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none; flex-direction: column; background: var(--navy-900); border-top: 1px solid rgba(198,163,77,0.2);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--cream-100); padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; font-weight: 500;
}
.mobile-nav a[aria-current="page"] { color: var(--gold-300); }
.mobile-nav .header-cta { display: flex; flex-direction: column; padding: 16px 24px 22px; gap: 12px; }
.mobile-nav .phone-link { justify-content: center; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: radial-gradient(120% 140% at 15% 0%, var(--navy-800) 0%, var(--navy-950) 55%);
  color: var(--white);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(198,163,77,0.18) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-grid { display: grid; gap: 40px; position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: clamp(30px, 5.4vw, 48px); line-height: 1.08; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold-300); }
.hero-lead { color: var(--cream-100); font-size: 17px; max-width: 46ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px 28px; font-size: 13.5px; color: var(--cream-100); }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--gold-500); flex-shrink: 0; }

/* Ticker card */
.ticker-card {
  background: var(--cream-50); color: var(--navy-950); border-radius: var(--radius-lg);
  padding: 26px 24px 20px; box-shadow: 0 24px 60px -18px rgba(0,0,0,0.55);
  border: 1px solid rgba(198,163,77,0.4);
}
.ticker-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.ticker-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); }
.status-dot { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; color: var(--success); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.status-dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.ticker-rows { display: flex; flex-direction: column; }
.ticker-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px dashed var(--paper-line);
}
.ticker-row:last-child { border-bottom: none; }
.ticker-metal { font-weight: 600; font-size: 14.5px; }
.ticker-metal small { display: block; font-weight: 400; color: var(--ink-500); font-size: 12px; font-family: var(--font-mono); margin-top: 2px;}
.ticker-price { font-family: var(--font-mono); font-size: 19px; font-weight: 600; color: var(--navy-900); }
.ticker-price sup { font-size: 11px; color: var(--ink-500); font-weight: 400; margin-left: 3px; }
.ticker-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--paper-line); font-size: 12px; color: var(--ink-500); }
.ticker-foot a { color: var(--gold-600); font-weight: 600; }
#ticker-updated { font-family: var(--font-mono); }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-navy { background: var(--navy-950); color: var(--white); }
.section-navy h2 { color: var(--white); }
.section-cream-alt { background: var(--cream-100); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 34px); }
.section-head p { color: var(--ink-700); font-size: 16px; }
.section-navy .section-head p { color: var(--cream-100); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.hairline { border: none; border-top: 1px solid var(--paper-line); margin: 0; }

/* Trust strip */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--paper-line); }
.trust-strip ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; padding: 22px 0; }
.trust-strip li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-700); }
.trust-strip strong { display: block; color: var(--navy-950); font-size: 14.5px; }
.trust-strip svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }
@media (min-width: 720px) { .trust-strip ul { grid-template-columns: repeat(4,1fr); } }

/* Price teaser table (home) */
.price-teaser-card {
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--paper-line);
  overflow: hidden; box-shadow: 0 30px 70px -40px rgba(13,24,38,0.35);
}
.price-teaser-head { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding: 22px 26px; background: var(--navy-950); color: var(--white); }
.price-teaser-head h3 { color: var(--white); margin: 0; font-size: 19px; }
table.price-table { width: 100%; border-collapse: collapse; }
table.price-table caption { text-align: left; padding: 16px 26px 0; font-size: 13px; color: var(--ink-500); }
table.price-table th, table.price-table td { padding: 14px 26px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--cream-100); }
table.price-table thead th { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-500); background: var(--cream-50); border-bottom: 1px solid var(--paper-line); }
table.price-table tbody tr:hover { background: var(--cream-50); }
table.price-table td.num, table.price-table th.num { text-align: right; font-family: var(--font-mono); font-weight: 600; color: var(--navy-900); }
table.price-table tbody tr:last-child td { border-bottom: none; }
.price-teaser-foot { padding: 18px 26px 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.price-note { font-size: 12.5px; color: var(--ink-500); }

/* Services grid */
.card-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid.cols-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .card-grid.cols-3 { grid-template-columns: repeat(3,1fr); } .card-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-md);
  padding: 26px 24px; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -24px rgba(13,24,38,0.4); border-color: var(--gold-300); }
.service-card .icon { width: 42px; height: 42px; border-radius: 10px; background: var(--gold-100); color: var(--gold-600); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card .icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--ink-700); margin-bottom: 10px; }
.service-card .link { font-size: 13.5px; font-weight: 600; color: var(--gold-600); display: inline-flex; align-items: center; gap: 6px; }

/* Process steps (stempel-nummering) */
.steps { display: grid; gap: 28px; counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3,1fr); } }
.step { position: relative; padding-top: 8px; }
.step .seal { color: var(--gold-500); margin-bottom: 18px; }
.step .seal-mark { font-family: var(--font-mono); font-size: 20px; }
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { color: var(--ink-700); font-size: 14.5px; }
.section-navy .step p { color: var(--cream-100); }

/* Why us */
.feature-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--paper-line); }
.feature-row:last-child { border-bottom: none; }
.feature-row .icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-row .icon svg { width: 19px; height: 19px; }
.feature-row h3 { font-size: 15.5px; margin-bottom: 4px; }
.feature-row p { font-size: 14px; color: var(--ink-700); margin: 0; }

/* Testimonials */
.testimonial { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-md); padding: 24px; }
.stars { color: var(--gold-500); letter-spacing: 2px; font-size: 15px; margin-bottom: 10px; }
.testimonial p { font-size: 14.5px; color: var(--ink-700); }
.testimonial footer { font-size: 13px; font-weight: 600; color: var(--navy-900); margin-top: 12px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-950)); color: var(--white); border-radius: var(--radius-lg); padding: 44px 32px; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(22px,3vw,30px); }
.cta-band p { color: var(--cream-100); max-width: 52ch; margin: 0 auto 24px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--paper-line); }
.faq-item:first-child { border-top: 1px solid var(--paper-line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 4px; display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 15.5px; color: var(--navy-950); gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold-600); transition: transform 0.2s ease; }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 4px 20px; color: var(--ink-700); font-size: 14.5px; max-width: 70ch; }

/* Breadcrumb */
.breadcrumb { font-size: 13px; color: var(--ink-500); padding: 18px 0; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--gold-600); }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .current { color: var(--navy-950); font-weight: 600; }

/* Page hero (subpages) */
.page-hero { background: var(--navy-950); color: var(--white); padding: 40px 0 52px; }
.page-hero h1 { color: var(--white); font-size: clamp(26px,4.4vw,40px); max-width: 22ch; }
.page-hero p { color: var(--cream-100); max-width: 60ch; font-size: 16px; }

/* Content layout (article + sidebar) */
.content-layout { display: grid; gap: 40px; }
@media (min-width: 960px) { .content-layout { grid-template-columns: 1fr 320px; align-items: start; } }
.prose h2 { font-size: 22px; margin-top: 1.6em; }
.prose h3 { font-size: 17.5px; margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-700); font-size: 15.5px; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.prose ul li { margin-bottom: 6px; }
.sidebar-card { background: var(--white); border: 1px solid var(--paper-line); border-radius: var(--radius-md); padding: 22px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-mono); color: var(--ink-500); margin-bottom: 14px; }

/* Contact page */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-list li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--paper-line); font-size: 14.5px; }
.info-list li:last-child { border-bottom: none; }
.info-list svg { width: 19px; height: 19px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.info-list strong { display: block; color: var(--navy-950); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--navy-950); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14.5px; background: var(--white); color: var(--ink-900);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold-500); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-500); margin-top: 10px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--paper-line); aspect-ratio: 16/11; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-950); color: var(--cream-100); padding: 56px 0 26px; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: rgba(240,233,216,0.75); max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-300); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(240,233,216,0.85); }
.footer-col a:hover { color: var(--gold-300); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-300); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(240,233,216,0.6); }
.footer-bottom .legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-300); }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; background: var(--navy-950); border-top: 1px solid rgba(198,163,77,0.35);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.mobile-sticky-cta a { flex: 1; }
@media (min-width: 960px) { .mobile-sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 74px; }
@media (min-width: 960px) { body.has-sticky-cta { padding-bottom: 0; } }

/* Fotoplekken (tijdelijke, rustige placeholders — vervang door echte foto's) */
.photo-placeholder {
  aspect-ratio: 4/3; border-radius: var(--radius-md); border: 1.5px dashed var(--paper-line);
  background: var(--cream-100); display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--ink-500); text-align: center; padding: 20px;
}
.photo-placeholder svg { width: 34px; height: 34px; color: var(--gold-600); opacity: 0.8; }
.photo-placeholder span { font-size: 12.5px; max-width: 22ch; line-height: 1.4; }
.photo-placeholder small { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-600); }

/* Utility */
.text-gold { color: var(--gold-600); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
