/* ==========================================================================
   Erased — Laser Hair & Tattoo Removal
   Core stylesheet
   ========================================================================== */

:root {
  /* Brand palette — rich metallic copper on a creamy ground */
  --color-cream: #f8efe2;
  --color-cream-deep: #f1e1c9;
  --color-cream-deeper: #ead0ac;
  --color-white: #fffdfa;
  --color-copper-light: #d3986a;
  --color-copper: #a8632e;
  --color-copper-dark: #7c4620;
  --color-espresso: #3c2a1e;
  --color-espresso-deep: #2a1c13;
  --color-text: #4a3524;
  --color-text-muted: #7d6a58;
  --color-accent: #bd5f2a;
  --color-success: #5c7a52;
  --color-border: rgba(124, 70, 32, 0.18);

  --shadow-soft: 0 10px 30px -12px rgba(60, 42, 30, 0.25);
  --shadow-card: 0 6px 20px -8px rgba(60, 42, 30, 0.18);
  --shadow-lift: 0 18px 40px -16px rgba(60, 42, 30, 0.32);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --container-max: 1240px;
  --header-height: 84px;
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  font-size: 16px;
  line-height: 1.7;
  -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); color: var(--color-espresso); margin: 0 0 var(--space-sm); font-weight: 600; line-height: 1.2; }
p { margin: 0 0 var(--space-sm); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 16px; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

section { padding: var(--space-xl) 0; }
.section-alt { background: var(--color-cream-deep); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-copper);
  font-weight: 600;
  display: inline-block;
  margin-bottom: var(--space-xs);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { color: var(--color-text-muted); font-size: 17px; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-sm) auto;
  color: var(--color-copper);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  width: 48px;
  background: var(--color-border);
}
.divider .spark { font-size: 14px; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-espresso);
  color: var(--color-white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  min-height: 48px;
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--color-copper-light), var(--color-copper-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--color-espresso);
  border-color: var(--color-espresso);
}
.btn-ghost:hover { background: var(--color-espresso); color: var(--color-white); }
.btn-on-dark {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(248, 239, 226, 0.55);
}
.btn-on-dark:hover { background: var(--color-cream); color: var(--color-espresso-deep); }
.btn-block { width: 100%; }

/* ---- Header / Nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(248, 239, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: var(--header-height);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border);
}
.brand-word {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--color-espresso);
}
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--color-copper);
  font-weight: 600;
}

.main-nav {
  display: none;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.main-nav ul { display: flex; align-items: center; justify-content: center; gap: 14px; }
.main-nav li { position: relative; flex-shrink: 0; }
.main-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 8px 1px;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--color-copper); border-color: var(--color-copper); }

/* Dropdown ("Care Guides") */
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-caret { width: 9px; height: 9px; flex-shrink: 0; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  z-index: 20;
}
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-bottom: none;
  border-radius: 6px;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--color-cream-deep); }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-espresso);
  white-space: nowrap;
}
.header-phone svg { vertical-align: -3px; margin-right: 6px; }
.btn-header { display: none; padding: 12px 22px; white-space: nowrap; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-espresso);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--color-cream);
  z-index: 400;
  padding: var(--space-lg) var(--space-md);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-espresso);
}
.mobile-nav .btn { margin-top: var(--space-md); }

@media (min-width: 1080px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .btn-header { display: inline-flex; }
}

/* ---- Hero / rotating carousel -------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: var(--color-white);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide video {
  /* Source clips are tall/portrait; a wide desktop hero crops most of the
     frame away. Bias down from dead-center so the crop lands on the laser
     device meeting the skin, not the therapist/room above it. */
  object-position: center 65%;
}
.hero-slide.is-placeholder {
  background: linear-gradient(135deg, var(--color-copper-dark), var(--color-espresso-deep) 70%);
}
.hero-slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  gap: 10px;
}
.hero-slide-caption .ph-icon {
  width: 56px;
  height: 56px;
  opacity: 0.65;
}
.hero-slide-caption strong {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 239, 226, 0.75);
}
.hero-slide-caption span {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(248, 239, 226, 0.92);
  max-width: 320px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 28, 19, 0.15) 0%, rgba(42, 28, 19, 0.35) 55%, rgba(42, 28, 19, 0.82) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: var(--space-2xl);
  width: 100%;
}
.hero-content .eyebrow { color: var(--color-cream-deeper); }
.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(36px, 6vw, 64px);
  max-width: 780px;
  margin-bottom: var(--space-sm);
}
.hero-content p {
  color: rgba(248, 239, 226, 0.88);
  max-width: 520px;
  font-size: 18px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-md); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(248, 239, 226, 0.25);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(248, 239, 226, 0.9);
}
.hero-trust svg { flex-shrink: 0; color: var(--color-copper-light); }

.hero-dots {
  position: absolute;
  z-index: 3;
  right: var(--space-md);
  bottom: var(--space-md);
  display: flex;
  gap: 8px;
}
@media (min-width: 768px) {
  .hero-dots { right: var(--space-lg); bottom: var(--space-lg); }
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(248, 239, 226, 0.7);
  background: transparent;
  padding: 0;
}
.hero-dots button.is-active { background: var(--color-cream); width: 22px; border-radius: 5px; transition: width 200ms ease; }

.hero.hero-compact { min-height: 380px; }
.tattoo-hero-img { object-position: center 22%; }
.hero-photo-tag {
  position: absolute;
  z-index: 3;
  right: var(--space-md);
  bottom: var(--space-md);
  background: rgba(42, 28, 19, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(248, 239, 226, 0.92);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(248, 239, 226, 0.25);
}
@media (min-width: 768px) {
  .hero-photo-tag { right: var(--space-lg); bottom: var(--space-lg); }
}

/* ---- Offer banner (5+1 free) --------------------------------------------- */
.offer-banner {
  background: linear-gradient(120deg, var(--color-espresso-deep), var(--color-copper-dark) 60%, var(--color-copper));
  color: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.14), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(255,255,255,0.10), transparent 40%);
}
.offer-banner > * { position: relative; z-index: 1; }
.offer-banner .eyebrow { color: var(--color-cream-deeper); }
.offer-banner h2 {
  color: var(--color-white);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 10px;
}
.offer-banner p { color: rgba(248, 239, 226, 0.9); max-width: 560px; margin: 0 auto var(--space-md); font-size: 17px; }
.offer-banner .btn-primary { background: var(--color-cream); color: var(--color-espresso-deep); }
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248, 239, 226, 0.14);
  border: 1px solid rgba(248, 239, 226, 0.35);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

/* ---- Cards --------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-card-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-cream-deeper), var(--color-copper-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.service-card-media svg { width: 48px; height: 48px; }
.service-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { font-size: 21px; margin-bottom: 6px; }
.service-card-body p { color: var(--color-text-muted); font-size: 15px; flex: 1; }
.service-card-price {
  font-family: var(--font-display);
  color: var(--color-copper);
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 var(--space-sm);
}
.service-card-body .btn { align-self: flex-start; }

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-copper);
  margin-bottom: var(--space-sm);
}

.check-list li, .cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 15.5px;
}
.check-list li:last-child, .cross-list li:last-child { border-bottom: none; }
.check-list svg { color: var(--color-success); flex-shrink: 0; margin-top: 3px; }
.cross-list svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }

/* ---- Benefits grid --------------------------------------------------------- */
.benefit-tile { text-align: left; }
.benefit-tile h3 { font-size: 18px; margin-bottom: 6px; }
.benefit-tile p { color: var(--color-text-muted); font-size: 14.5px; margin-bottom: 0; }

/* ---- Journey steps ---------------------------------------------------------- */
.journey {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}
@media (min-width: 900px) { .journey { grid-template-columns: repeat(5, 1fr); } }
.journey-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}
.journey-step .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-espresso);
  color: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  margin-bottom: 12px;
}
.journey-step p { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 0; }

/* Infographic-style step cards (pre/post care) */
.care-steps { display: grid; gap: var(--space-md); }
@media (min-width: 700px) { .care-steps { grid-template-columns: 1fr 1fr; } }
.care-step {
  display: flex;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
}
.care-step .icon-tile { flex-shrink: 0; margin-bottom: 0; }
.care-step h3 { font-size: 18px; margin-bottom: 4px; }
.care-step p { font-size: 14.5px; color: var(--color-text-muted); margin-bottom: 0; }
.care-step-index {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.callout-note {
  background: var(--color-cream-deep);
  border: 1px dashed var(--color-copper);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-size: 14.5px;
  color: var(--color-text-muted);
}
.callout-note strong { color: var(--color-espresso); }

/* ---- Price tables ------------------------------------------------------------ */
.price-block { margin-bottom: var(--space-lg); }
.price-block h3 {
  font-size: 22px;
  border-bottom: 2px solid var(--color-copper);
  padding-bottom: 10px;
  margin-bottom: var(--space-sm);
}
.price-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  min-width: 480px;
}
table.price-table th, table.price-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
}
table.price-table thead th {
  background: var(--color-espresso);
  color: var(--color-cream);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
table.price-table td:not(:first-child), table.price-table th:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
table.price-table tbody tr:nth-child(odd) { background: var(--color-cream); }
table.price-table td.pay-upfront { color: var(--color-copper); font-weight: 700; }
table.price-table tbody tr.total-row { background: var(--color-cream-deeper) !important; font-weight: 700; }
.price-note { font-size: 13px; color: var(--color-text-muted); margin-top: 8px; }

/* ---- Testimonials carousel ------------------------------------------------- */
.testimonial-track-wrap { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: var(--space-md);
  animation: scroll-testimonials 40s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes scroll-testimonials {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.testimonial-stars { color: var(--color-copper); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-card p.quote { font-size: 15px; color: var(--color-text); margin-bottom: var(--space-sm); }
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--color-espresso); }
.testimonial-source { font-size: 12.5px; color: var(--color-text-muted); }
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; overflow-x: auto; }
}

/* ---- Location / map ---------------------------------------------------------- */
.location-grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); min-height: 360px; border: 1px solid var(--color-border); }
.location-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.location-card { background: var(--color-white); border-radius: var(--radius-md); padding: var(--space-lg); box-shadow: var(--shadow-card); border: 1px solid var(--color-border); }
.location-detail { display: flex; gap: 14px; margin-bottom: var(--space-md); }
.location-detail svg { color: var(--color-copper); flex-shrink: 0; margin-top: 3px; }
.location-detail strong { display: block; color: var(--color-espresso); }
.location-detail a { color: var(--color-text); }
.location-detail a:hover { color: var(--color-copper); }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--color-espresso-deep); color: rgba(248, 239, 226, 0.85); padding: var(--space-2xl) 0 var(--space-md); }
.footer-grid { display: grid; gap: var(--space-lg); grid-template-columns: 1fr; margin-bottom: var(--space-lg); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-sm); }
.footer-brand img { height: 48px; width: 48px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-size: 20px; color: var(--color-white); }
.site-footer p { color: rgba(248, 239, 226, 0.65); font-size: 14px; }
.footer-col h4 {
  color: var(--color-cream-deeper);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14.5px; color: rgba(248, 239, 226, 0.8); transition: color 160ms ease; }
.footer-col a:hover { color: var(--color-copper-light); }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-sm); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(248, 239, 226, 0.3);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--color-copper); border-color: var(--color-copper); }
.footer-bottom {
  border-top: 1px solid rgba(248, 239, 226, 0.15);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(248, 239, 226, 0.55);
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 239, 226, 0.55);
  transition: color 160ms ease;
}
.footer-credit:hover { color: var(--color-copper-light); }
.footer-credit img { height: 26px; width: auto; flex-shrink: 0; }

/* ---- Page hero (inner pages) ------------------------------------------------ */
.page-hero-content h1 { font-size: clamp(32px, 5vw, 52px); }

/* ---- Utility --------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mb-0 { margin-bottom: 0; }
.stack { display: flex; flex-direction: column; gap: var(--space-sm); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-cream-deep);
  color: var(--color-copper-dark);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
