/* ============================================================
   Richmond Skin Clinic — Demo Site CSS
   Brand: Cream #F5F0E8 | Gold #C8A96E | Dark #2C2C2C | Warm Brown #8B7355
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

:root {
  --cream:       #F5F0E8;
  --cream-light: #FAF7F2;
  --gold:        #C8A96E;
  --gold-dark:   #A88A50;
  --dark:        #2C2C2C;
  --warm-brown:  #8B7355;
  --white:       #FFFFFF;
  --mid-gray:    #6B6B6B;
  --border:      rgba(200,169,110,0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --container:   1180px;
  --header-h:    72px;
  --radius:      8px;
  --radius-lg:   16px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* Media fill utility */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img, .feature-split__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; }

em { font-style: italic; color: var(--warm-brown); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s, border-color 0.25s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-full { width: 100%; }

/* ---- Section helpers ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-title { margin-bottom: 16px; }

.section-intro {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(44,44,44,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* Desktop nav */
.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; gap: 36px; }
.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  position: relative;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out);
}
.desktop-nav a:hover::after { right: 0; }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.25s, opacity 0.25s;
}

/* ============================================================
   MOBILE MENU OVERLAY — fullscreen kit component
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease-out);
}

.mobile-menu__overlay.is-open {
  transform: translateX(0);
}

/* Prevent background scroll when menu is open */
body.menu-open .mobile-menu__overlay { pointer-events: all; }

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 24px 32px 40px;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 8px; }

.mobile-menu__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__contact a {
  font-size: 0.85rem;
  color: var(--warm-brown);
  letter-spacing: 0.05em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 44, 44, 0.62) 0%,
    rgba(44, 44, 44, 0.35) 50%,
    rgba(44, 44, 44, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  max-width: 660px;
}

.hero__content .section-eyebrow { color: rgba(200,169,110,0.9); }

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em { color: var(--gold); font-style: italic; }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-stars {
  display: flex;
  gap: 2px;
}

.trust-bar__score {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.trust-bar__divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.trust-bar__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.trust-bar__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}

.trust-bar__label {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.trust-bar__quote {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 380px;
}

.trust-bar__quote p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  font-style: italic;
  line-height: 1.5;
}

.trust-bar__quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.82rem;
}

/* ============================================================
   BEHANDELINGEN
   ============================================================ */
.behandelingen {
  padding: 96px 0;
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,44,44,0.1);
}

.card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.card__desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--warm-brown);
  margin-bottom: 16px;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s, color 0.2s;
}
.card__cta::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: width 0.2s;
}
.card:hover .card__cta { color: var(--gold-dark); gap: 10px; }
.card:hover .card__cta::after { width: 20px; }

/* ============================================================
   FEATURE SPLIT — PDRN / Over Ons
   ============================================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--cream-light);
}

.feature-split__media {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-split__content {
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-split__title {
  margin-bottom: 20px;
}

.feature-split__lead {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-list__item strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.feature-list__item p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.25s;
}

.review-card:hover { box-shadow: 0 8px 32px rgba(44,44,44,0.08); }

.review-card--featured {
  background: var(--dark);
  border-color: var(--dark);
}

.review-card--featured .review-text { color: rgba(255,255,255,0.88); }
.review-card--featured .review-author { color: var(--gold); }

.review-stars {
  display: flex;
  gap: 3px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-brown);
  font-style: normal;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--dark);
  padding: 80px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band__text .section-eyebrow { color: var(--gold); }

.cta-band__title {
  color: var(--white);
  margin-bottom: 12px;
  max-width: 500px;
}

.cta-band__text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-band .btn-outline-dark {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
.cta-band .btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 96px 0;
  background: var(--cream-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info__title {
  margin-bottom: 16px;
}

.contact-info__lead {
  color: var(--mid-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-details a:hover { color: var(--gold); }

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B7355' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 90px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin-top: -8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 72px 0 32px;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo-main {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  display: block;
}

.footer-brand .logo-sub {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-contact address { margin-bottom: 24px; }
.footer-contact address p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-contact address a:hover { color: var(--gold); }

.footer-hours h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-hours dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; }
.footer-hours dt { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-hours dd { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-demo-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header */
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; max-width: 300px; }

  /* Trust bar */
  .trust-bar__divider:last-of-type { display: none; }
  .trust-bar__quote { display: none; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Feature split */
  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-split__media {
    aspect-ratio: 16/9;
    min-height: unset;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-bar__inner { gap: 20px; }
  .trust-bar__stat { flex-direction: column; gap: 2px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
