/* ==========================================================================
   Murmure du Château — Castle Bistro, Clervaux
   Design tokens: charcoal, candlelight gold, stone grey, deep wine, ivory
   ========================================================================== */

:root {
  --charcoal: #15120e;
  --charcoal-2: #1e1913;
  --charcoal-3: #292219;
  --charcoal-line: rgba(243, 237, 224, 0.12);
  --stone: #948c78;
  --stone-dim: #6c6455;
  --ivory: #f4eee0;
  --ivory-dim: #cec4ac;
  --ivory-faint: rgba(244, 238, 224, 0.62);
  --gold: #c8993f;
  --gold-bright: #e7c06c;
  --wine: #6d2230;
  --wine-bright: #8f2f3f;
  --wine-tint: rgba(109, 34, 48, 0.28);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.5);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory-dim);
  background: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ivory);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-raised { background: var(--charcoal-2); }
.section-wine {
  background: linear-gradient(160deg, var(--wine) 0%, #4a1620 100%);
  color: var(--ivory);
}
.section-wine h2, .section-wine .eyebrow { color: var(--ivory); }
.section-wine .eyebrow::before { background: var(--gold-bright); }

.section-head { max-width: 660px; margin: 0 0 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ivory-faint); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-bright); }
.btn-outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline-light { background: transparent; border-color: rgba(244, 238, 224, 0.5); color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.btn-ghost { background: rgba(244, 238, 224, 0.08); color: var(--ivory); border-color: rgba(244, 238, 224, 0.28); }
.btn-ghost:hover { background: rgba(244, 238, 224, 0.16); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.76rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--charcoal-line);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(21, 18, 14, 0.86);
  backdrop-filter: blur(10px);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.lang-switch {
  display: flex;
  gap: 0.2rem;
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-line);
  border-radius: 999px;
  padding: 0.2rem;
}
.lang-switch button {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ivory-dim);
}
.lang-switch button.active { background: var(--gold); color: var(--charcoal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-sm.call-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(150deg, #2c2115 0%, #17120d 60%);
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(21,18,14,0.15) 0%, rgba(21,18,14,0.55) 55%, rgba(21,18,14,0.92) 100%),
    linear-gradient(0deg, rgba(21,18,14,0.85) 0%, rgba(21,18,14,0.15) 42%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(200, 153, 63, 0.12);
  border: 1px solid rgba(231, 192, 108, 0.4);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1.7rem;
  letter-spacing: 0.02em;
}
.rating-badge .stars { color: var(--gold-bright); letter-spacing: 2px; }
.hero h1 { color: var(--ivory); max-width: 820px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero-sub {
  max-width: 600px;
  font-size: 1.12rem;
  color: rgba(244, 238, 224, 0.86);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.6rem;
}
.hero-tag {
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(244, 238, 224, 0.06);
  border: 1px solid rgba(244, 238, 224, 0.22);
}

@media (max-width: 640px) {
  .hero-sub { font-size: 0.9rem; }
  .hero-tags { display: none; }
}

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--charcoal-line);
}
.info-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
.info-item { display: flex; gap: 0.8rem; align-items: flex-start; }
.info-item .ico {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 153, 63, 0.4);
  background: rgba(200, 153, 63, 0.08);
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.info-item strong { display: block; font-size: 0.88rem; color: var(--ivory); letter-spacing: 0.01em; }
.info-item span { font-size: 0.82rem; color: var(--ivory-faint); }
.info-item a:hover { color: var(--gold-bright); }

@media (max-width: 760px) {
  .info-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Placeholder / photo frames ---------- */
.ph-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--charcoal-line);
  background:
    repeating-linear-gradient(135deg, rgba(244,238,224,0.03) 0 2px, transparent 2px 14px),
    linear-gradient(150deg, #3a2f1f 0%, #251d14 55%, #17120d 100%);
  display: flex;
  align-items: flex-end;
  color: rgba(244, 238, 224, 0.92);
}
.ph-image::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 55%);
}
.ph-image .ph-label {
  position: relative;
  padding: 0.9rem 1rem;
  font-size: 0.76rem;
  line-height: 1.35;
}
.ph-image .ph-label b { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold-bright); opacity: 0.9; }
.ph-16x9 { aspect-ratio: 16 / 9; }
.ph-4x3 { aspect-ratio: 4 / 3; }
.ph-1x1 { aspect-ratio: 1 / 1; }
.ph-3x4 { aspect-ratio: 3 / 4; }
.ph-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.7rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(200, 153, 63, 0.45); transform: translateY(-3px); }
.card .card-body { padding: 1.3rem 1.4rem 1.5rem; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ivory-faint); font-size: 0.92rem; margin-bottom: 0.8rem; }
.card-link { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold); }
.card-link:hover { color: var(--gold-bright); }

/* ---------- Review highlights ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 960px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: rgba(244, 238, 224, 0.05);
  border: 1px solid rgba(244, 238, 224, 0.16);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  position: relative;
}
.review-card .stars { color: var(--gold-bright); margin-bottom: 0.7rem; display: block; letter-spacing: 2px; }
.review-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; font-style: italic; margin: 0.9rem 0 0; color: rgba(244, 238, 224, 0.7); }
.review-card p { font-size: 0.92rem; color: rgba(244, 238, 224, 0.92); margin: 0; }
.review-source {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* ---------- Event / karaoke cards ---------- */
.event-card {
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,153,63,0.18) 0%, transparent 70%);
}
.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(200, 153, 63, 0.12);
  border: 1px solid rgba(200, 153, 63, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.event-card h3 { position: relative; margin-bottom: 0.5rem; }
.event-card p { position: relative; font-size: 0.94rem; }
.event-meta {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal-line);
}

/* ---------- Menu ---------- */
.menu-note {
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  font-size: 0.9rem;
  color: var(--ivory-faint);
  margin-bottom: 2.6rem;
}
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.6rem;
}
.filter-btn {
  border: 1px solid var(--charcoal-line);
  background: var(--charcoal-2);
  color: var(--ivory-dim);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.menu-category { margin-bottom: 3.2rem; }
.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--charcoal-line);
  padding-bottom: 0.7rem;
  margin-bottom: 1.5rem;
}
.menu-category-head span { font-size: 0.8rem; color: var(--stone); font-style: italic; font-family: var(--font-display); }

.menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem 2.6rem; }
@media (max-width: 720px) { .menu-items { grid-template-columns: 1fr; } }

.menu-item { display: flex; gap: 1rem; align-items: flex-start; }
.menu-item .ph-image { flex: none; width: 78px; height: 78px; border-radius: var(--radius-sm); }
.menu-item .ph-image .ph-label { display: none; }
.menu-item-body { flex: 1; }
.menu-item-body h4 { margin: 0 0 0.3rem; font-size: 1.08rem; color: var(--ivory); font-family: var(--font-display); font-weight: 600; }
.menu-item-body p { margin: 0; font-size: 0.86rem; color: var(--ivory-faint); }
.tbc {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.tasting-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 780px) { .tasting-feature { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Hours / location ---------- */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours-table td { padding: 0.65rem 0; border-bottom: 1px solid var(--charcoal-line); }
.hours-table td:last-child { text-align: right; color: var(--ivory-faint); }
.hours-table tr.closed td { color: var(--stone-dim); }
.hours-table tr.open-day td { font-weight: 700; color: var(--gold-bright); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.contact-block { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-block .ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(200, 153, 63, 0.4);
  background: rgba(200, 153, 63, 0.08); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.contact-block strong { display: block; color: var(--ivory); }
.contact-block span, .contact-block a { font-size: 0.92rem; color: var(--ivory-faint); }
.contact-block a:hover { color: var(--gold-bright); }

.todo-pill {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--wine-tint);
  color: var(--gold-bright);
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--charcoal-3);
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ivory); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--charcoal-line);
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--ivory);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--stone); margin-top: 1.1rem; }
.form-success {
  display: none;
  background: rgba(200, 153, 63, 0.1);
  border: 1px solid var(--gold);
  color: var(--ivory);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 1.2rem;
}
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--wine) 0%, #45141c 100%);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(231, 192, 108, 0.2);
}
.cta-band h2, .cta-band .eyebrow { color: var(--ivory); }
.cta-band .eyebrow { opacity: 0.9; }
.cta-band .eyebrow::before { background: var(--gold-bright); }
.cta-band .btn-outline-light { border-color: rgba(244,238,224,0.6); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal-2);
  border-top: 1px solid var(--charcoal-line);
  color: rgba(244, 238, 224, 0.75);
  padding: 4rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--charcoal-line);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-grid a { font-size: 0.9rem; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand { font-family: var(--font-display); font-size: 1.55rem; color: var(--ivory); margin-bottom: 0.6rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--stone);
}
.social-row { display: flex; gap: 0.7rem; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--charcoal-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
}
.social-row a:hover { background: rgba(200, 153, 63, 0.12); border-color: var(--gold); color: var(--gold-bright); }

/* ---------- Utilities ---------- */
.stack-sm > * + * { margin-top: 0.6rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
