/* ============================================================
   ASHLYN'S HAIRSTYLZ — Demo site stylesheet
   Palette: #2e4a3e (green) | #f5f5f0 (off-white) | #1a1a1a (text) | #8a7a5a (sand/gold)
   ============================================================ */

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

:root {
  --green:      #2e4a3e;
  --green-dark: #1e3329;
  --green-mid:  #3d6353;
  --cream:      #f5f5f0;
  --white:      #ffffff;
  --sand:       #8a7a5a;
  --gold:       #c8a96e;
  --text:       #1a1a1a;
  --text-muted: #5a5a52;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
  --transition: 220ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

/* ── Media fill helper — images MUST fill containers ── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img,
.hero__img, .split__img, .photo-break__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p { color: var(--text-muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn--white:hover { background: var(--cream); }

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--header {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: .6rem 1.4rem;
  font-size: .875rem;
}
.btn--header:hover { background: var(--green-dark); }

.btn--mobile-cta {
  display: block;
  margin: 1.5rem auto 0;
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
  text-align: center;
  font-weight: 700;
}
.btn--mobile-cta:hover { background: #b8983e; }

.btn--full { width: 100%; justify-content: center; }

/* ── Layout helpers ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 720px; }
.container--split {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section { padding: 5rem 0; }
.section--light { background: var(--white); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green); color: var(--white); }
.section--green p { color: rgba(255,255,255,.8); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header.section-header--left { text-align: left; margin-left: 0; }

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: .5rem;
}
.section-eyebrow--light { color: var(--gold); }

.section-title { color: var(--text); margin-bottom: 1rem; }
.section-title--light { color: var(--white); }
.section-lead { color: var(--text-muted); font-size: 1.05rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── Logo badge ── */
.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.logo-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -.01em;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
}

.logo-badge--light .logo-script { color: var(--white); }
.logo-badge--light .logo-sub { color: var(--gold); }
.logo-badge--footer .logo-script { color: var(--white); font-size: 1.8rem; }
.logo-badge--footer .logo-sub { color: var(--gold); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46,74,62,.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo { margin-right: auto; }

.desktop-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.desktop-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.desktop-nav a:hover { color: var(--green); text-decoration: none; }

/* ── Mobile menu trigger ── */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--text);
  margin-left: .5rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X when open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu overlay (fullscreen kit) ── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--green);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel { padding: 1.5rem 2rem 2.5rem; flex: 1; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: .5rem;
  transition: transform var(--transition);
}
.mobile-menu__close:hover { transform: rotate(90deg); }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .5rem; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,51,41,.75) 0%,
    rgba(46,74,62,.6) 50%,
    rgba(20,38,28,.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 7rem 1.5rem 3rem;
  color: var(--white);
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero__lead {
  color: rgba(255,255,255,.9);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--green);
  padding: 2rem 0;
}

.trust-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.trust-badge__score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.trust-badge__stars { margin-bottom: .3rem; }

.trust-badge__count {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.trust-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.trust-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-stat__label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Card grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(46,74,62,.1);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,74,62,.25);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(46,74,62,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  color: var(--text);
}

.card__text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Photo break ── */
.photo-break {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.photo-break__media {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,51,41,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.photo-quote {
  text-align: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  max-width: 640px;
}
.photo-quote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Over ons / split ── */
.split__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.split__img-wrap:hover .split__img { transform: scale(1.03); }

.split__copy h2 { margin-bottom: 1.25rem; }
.split__copy p { margin-bottom: 1rem; }

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
}
.feature-list svg { color: var(--gold); flex-shrink: 0; }

/* ── Reviews ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(46,74,62,.08);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.review-card__stars { display: block; }

.review-card__quote {
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-size: .95rem;
  quotes: "\201E" "\201D";
}
.review-card__quote::before { content: open-quote; }
.review-card__quote::after { content: close-quote; }

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.review-card__author strong { font-size: .95rem; color: var(--text); }
.review-card__author span { font-size: .8rem; color: var(--text-muted); }

.review-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── CTA band ── */
.cta-band {
  background: var(--green);
  padding: 4.5rem 0;
}

.cta-band__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__copy h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .5rem; }
.cta-band__copy p { color: rgba(255,255,255,.8); max-width: 480px; }

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Openingstijden ── */
.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(46,74,62,.08);
}

.hours-grid { display: flex; flex-direction: column; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.5rem;
  border-bottom: 1px solid rgba(46,74,62,.06);
  gap: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row--closed { color: var(--text-muted); opacity: .5; }
.hours-row--late .hours-time { color: var(--green); font-weight: 600; }

.hours-day { font-weight: 600; font-size: .95rem; color: var(--text); }
.hours-time { font-size: .9rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

.hours-badge {
  font-size: .7rem;
  font-weight: 700;
  background: rgba(46,74,62,.1);
  color: var(--green);
  padding: .2rem .6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: 1rem 1.5rem;
  background: rgba(46,74,62,.05);
  font-size: .82rem;
  color: var(--text-muted);
}
.hours-note svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(46,74,62,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-item p { font-size: .95rem; color: var(--text); }
.contact-item a { color: var(--green); font-weight: 500; }
.contact-item a:hover { color: var(--green-dark); }

.contact-form-wrap h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid rgba(46,74,62,.15);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

/* ── Footer ── */
.footer-kit {
  background: var(--green-dark);
  color: var(--white);
}

.footer-kit__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-score {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  background: rgba(200,169,110,.15);
  padding: .5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(200,169,110,.3);
}
.footer-score__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.footer-score__label { font-size: .78rem; color: rgba(255,255,255,.6); }

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  line-height: 1.4;
}
.footer-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-list a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-list a:hover { color: var(--gold); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  gap: 1rem;
}
.footer-hours li span:first-child { font-weight: 600; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.footer-credit a { color: rgba(255,255,255,.55); }
.footer-credit a:hover { color: var(--gold); }

/* ── Accessibility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-kit__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Mobile trigger visible */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .btn--header { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Container split → stacked */
  .container--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .split__img-wrap { max-height: 320px; }

  /* Contact grid → stacked */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Trust bar */
  .trust-bar__inner { gap: 1.5rem; }
  .trust-divider { display: none; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  /* Hero */
  .hero__content { padding-top: 6rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-kit__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  /* Photo break */
  .photo-break { height: 280px; }

  /* Card grid */
  .card-grid { grid-template-columns: 1fr; }

  /* Review grid */
  .review-grid { grid-template-columns: 1fr; }

  /* Section padding */
  .section { padding: 3.5rem 0; }
}

/* Small mobile */
@media (max-width: 480px) {
  .trust-stats { gap: 1.5rem; }
  .trust-badge__score { font-size: 2.8rem; }
  .cta-band__actions { flex-direction: column; width: 100%; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
