/* ============================================
   Carts by Dean — Design System
   ============================================ */

:root {
  /* Brand colors (from logo) */
  --red: #E0212B;
  --red-dark: #B4161E;
  --ink: #17181C;
  --ink-soft: #53565C;
  --ink-faint: #85888E;
  --bg: #FFFFFF;
  --bg-alt: #F6F4F1;
  --bg-dark: #121215;
  --border: #E7E4DF;
  --white: #FFFFFF;

  /* Spacing (8pt scale) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  /* Radius / shadow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(17, 18, 20, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 18, 20, 0.10);

  /* Type */
  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 var(--space-2); color: var(--ink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-2);
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}
section { padding: var(--space-7) 0; }
@media (max-width: 640px) {
  section { padding: var(--space-5) 0; }
}
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark p { color: #C7C8CC; }
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-5);
  text-align: center;
}
.section-head.left { margin: 0 0 var(--space-5); text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.icon-lg { width: 28px; height: 28px; stroke-width: 1.6; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark .icon { stroke: var(--white); width: 22px; height: 22px; }
.brand strong { color: var(--red); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.brand-logo { height: 56px; width: auto; display: block; }
.footer-logo { height: 84px; width: auto; display: block; margin-bottom: var(--space-2); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); border-color: var(--red); }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.phone-pill .icon { color: var(--red); width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .main-nav { position: static; }
  .nav-links {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--space-3);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { display: block; padding: 16px 4px; border-bottom: 1px solid var(--border); font-size: 1.1rem; }
  .header-actions .phone-pill span { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, #26272c 55%, var(--red-dark) 130%);
  color: var(--white);
  padding: var(--space-7) 0;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(224,33,43,0.35), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 { color: var(--white); margin-bottom: var(--space-2); }
.hero .eyebrow { color: #FF7B82; }
.hero p.lead { color: #D8D9DD; font-size: 1.15rem; max-width: 46ch; }
.hero-tagline {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 10px;
}
.hero-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px dashed rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
}
.hero-visual .placeholder-text { color: #D8D9DD; }
.hero-visual-photo { padding: 0; overflow: hidden; border-style: solid; border-color: rgba(255,255,255,0.12); }
.hero-visual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ Photo placeholder ============ */
.photo-ph {
  background: var(--bg-alt);
  border: 1.5px dashed #C9C6C0;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: var(--ink-faint);
  padding: var(--space-3);
  min-height: 180px;
}
.photo-ph .icon { color: var(--ink-faint); width: 30px; height: 30px; }
.photo-ph span { font-size: 0.85rem; font-weight: 600; max-width: 24ch; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-1-1 { aspect-ratio: 1/1; }

.location-media {
  overflow: hidden;
  background: var(--bg-alt);
}
.location-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-logo-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: var(--space-4);
}
.location-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============ Cards ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.service-card .card-icon .icon { color: var(--red); width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 4px; }
.service-card p { font-size: 0.94rem; margin-bottom: 4px; }
.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}
.card-link .icon { width: 16px; height: 16px; transition: transform 0.15s ease; }
.service-card:hover .card-link .icon { transform: translateX(3px); }

/* ============ Location cards ============ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (max-width: 800px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.location-card-body { padding: var(--space-3); display: flex; flex-direction: column; flex: 1; }
.location-card-body .btn-row { margin-top: auto; padding-top: var(--space-2); }
.location-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: var(--bg-alt);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: var(--space-2);
}
.location-tag .icon { width: 14px; height: 14px; color: var(--red); }

/* ============ Occasion cards ============ */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}
.occasion-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 800px) { .occasion-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .occasion-grid-4 { grid-template-columns: 1fr; } }
.occasion-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.occasion-card .card-icon { margin: 0; }
.occasion-card span { font-weight: 600; font-size: 0.92rem; color: var(--ink); }

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  display: flex;
  gap: var(--space-2);
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ Two-column feature ============ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: var(--space-4); } }
.feature-split.reverse .feature-visual { order: 2; }
.checklist { list-style: none; margin: var(--space-3) 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.checklist .icon { color: var(--red); width: 20px; height: 20px; margin-top: 2px; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============ Build cards (rotating photo carousels) ============ */
.build-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 1000px) { .build-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .build-grid { grid-template-columns: 1fr; } }

.build-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.build-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.build-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
}
.build-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.build-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(17,18,20,0.45);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
}
.build-media:hover .build-nav,
.build-nav:focus-visible {
  opacity: 1;
}
.build-nav:hover { background: rgba(17,18,20,0.7); }
.build-nav.prev { left: 10px; }
.build-nav.next { right: 10px; }
.build-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.build-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.build-dot.active { background: var(--white); transform: scale(1.25); }
.build-body { padding: var(--space-3); }
.build-body h3 { margin-bottom: 4px; }
.build-body p { font-size: 0.92rem; margin-bottom: 0; }
.listing-price {
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 2px 0 8px;
}

/* Touch devices: keep nav controls visible instead of relying on hover */
@media (hover: none) {
  .build-nav { opacity: 1; background: rgba(17,18,20,0.35); }
}

.build-img { cursor: zoom-in; }

/* ============ Lightbox ============ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,12,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 18px; right: 20px; width: 44px; height: 44px; font-size: 1.7rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-nav.lightbox-prev { left: 20px; }
.lightbox-nav.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox-close { width: 36px; height: 36px; font-size: 1.4rem; top: 10px; right: 10px; }
}

/* ============ Home scroll carousel ============ */
.scroll-carousel-wrap { position: relative; }
.scroll-carousel {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--space-3) var(--space-2);
  scrollbar-width: none;
}
.scroll-carousel::-webkit-scrollbar { display: none; }
.scroll-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.scroll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scroll-card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.scroll-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scroll-card h3 { font-size: 1.02rem; margin: 10px 14px 2px; }
.scroll-card-price { color: var(--red); font-weight: 700; font-family: var(--font-head); margin: 0 14px 14px; }
.scroll-card-tag {
  display: inline-block;
  margin: 12px 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.scroll-card .scroll-card-tag ~ h3 { margin-bottom: 14px; }
.tag-sale { background: #FDEBEC; color: var(--red-dark); }
.tag-build { background: var(--bg-alt); color: var(--ink-soft); }
.scroll-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1.3rem;
  color: var(--ink);
}
.scroll-arrow:hover { background: var(--bg-alt); }
.scroll-arrow.prev { left: 8px; }
.scroll-arrow.next { right: 8px; }
@media (max-width: 700px) { .scroll-arrow { display: none; } }

/* ============ CTA banner ============ */
.cta-banner {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: #C7C8CC; margin-bottom: 0; }

/* ============ Contact blocks ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  text-align: center;
}
.contact-card .card-icon { margin: 0 auto 10px; }
.contact-card a { font-weight: 700; color: var(--red); }
.contact-card p { font-size: 0.9rem; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: #C7C8CC;
  padding: var(--space-6) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #C7C8CC; font-size: 0.94rem; }
.footer-links a:hover { color: var(--white); }
.footer-brand .brand { color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 0.9rem; max-width: 32ch; }
.social-row { display: flex; gap: 10px; margin-top: var(--space-2); }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-btn:hover { background: var(--red); }
.social-btn .icon { color: var(--white); width: 18px; height: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: var(--space-3);
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ============ Page header (sub-pages) ============ */
.page-hero {
  background: var(--bg-alt);
  padding: var(--space-6) 0 var(--space-5);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-faint);
  margin-bottom: var(--space-2);
}
.breadcrumb a:hover { color: var(--red); }
.page-hero p.lead { max-width: 60ch; font-size: 1.08rem; }

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.note-banner {
  background: #FFF4E5;
  border: 1px solid #F3D9A6;
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-3);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #6B4E14;
}
.note-banner .icon { color: #B47D0F; width: 22px; height: 22px; flex-shrink: 0; }
