/* ============================================================
   Hairpond -hair salon Timișoara & Dumbrăvița
   Shared stylesheet. Recreated from the Claude Design handoff.
   Palette + type mirror the prototype exactly; hover states,
   responsiveness and the marquee motion are added for the real site.
   ============================================================ */

:root {
  --bg:        #f7f4ef;   /* warm paper */
  --paper:     #ffffff;
  --ink:       #17140f;   /* near-black */
  --ink-soft:  #423d34;   /* nav links */
  --body:      #4c463c;   /* body copy */
  --muted:     #7a7365;
  --muted-2:   #8a8375;
  --gold:      #a9895a;
  --gold-dark: #8a6d40;
  --gold-lite: #c9a878;   /* eyebrow on dark */
  --slot:      #e9e4db;   /* image-slot beige */
  --line:      rgba(23,20,15,0.08);
  --maxw:      1240px;
  --font:      'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
::selection { background: #e4dccb; color: var(--ink); }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(72px, 9vw, 130px) 32px; }
.eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow--on-dark { color: var(--gold-lite); }
.section-title {
  font-weight: 700; font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02; letter-spacing: -0.02em; margin: 0;
}
.prose p {
  font-size: 18px; line-height: 1.8; color: var(--body); font-weight: 300;
}
.prose p + p { margin-top: 22px; }
.prose strong { font-weight: 600; color: var(--ink); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border-radius: 2px;
  text-transform: uppercase; letter-spacing: 0.2em;
  transition: background .25s ease, color .25s ease;
}
.btn--nav      { background: var(--ink);  color: var(--bg); padding: 12px 26px; font-size: 12px;   white-space: nowrap; }
.btn--nav:hover{ background: var(--gold); color: var(--bg); }
.btn--gold-lg  { background: var(--gold); color: #fff;      padding: 16px 40px; font-size: 12.5px; }
.btn--gold-lg:hover { background: var(--ink); color: #fff; }
.btn--dark-lg  { background: var(--ink);  color: var(--bg); padding: 16px 44px; font-size: 12.5px; }
.btn--dark-lg:hover { background: var(--gold); color: var(--bg); }
.btn--gold-xl  { background: var(--gold); color: #fff;      padding: 17px 48px; font-size: 12.5px; }
.btn--gold-xl:hover { background: var(--ink); color: #fff; }

.link-underline {
  color: var(--ink); padding: 16px 8px; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.2em;
  border-bottom: 1px solid var(--ink);
  transition: color .2s ease, border-color .2s ease;
}
.link-underline:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 400;
}
.nav-links a { color: var(--ink-soft); transition: color .2s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 48px; height: 48px; padding: 10px; color: var(--ink);
}
.nav-toggle svg { width: 100%; height: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--bg);
  /* nav + hero + marquee = exactly one viewport; heights measured in main.js */
  min-height: calc(100vh - var(--nav-h, 77px) - var(--marquee-h, 56px));
  min-height: calc(100svh - var(--nav-h, 77px) - var(--marquee-h, 56px));
}
.hero-img {
  position: absolute; top: 0; right: 0; height: 100%; width: 64%;
  object-fit: cover; object-position: 40% 30%;
  -webkit-mask-image: linear-gradient(108deg, transparent 8%, rgba(0,0,0,0.35) 26%, #000 46%);
          mask-image: linear-gradient(108deg, transparent 8%, rgba(0,0,0,0.35) 26%, #000 46%);
}
.hero-fade {
  position: absolute; top: 0; bottom: 0; left: 0; width: 55%; z-index: 1;
  background: linear-gradient(90deg, #f7f4ef 62%, rgba(247,244,239,0) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: clamp(48px, 6vw, 92px) 32px;
}
.hero-copy { max-width: 540px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-weight: 600; font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 18px;
}
.hero-tags {
  font-size: clamp(15px, 1.7vw, 21px); font-weight: 500; letter-spacing: 0.04em;
  color: var(--gold); margin: 0 0 34px; font-style: italic;
}
.hero-tags .sep { color: #c3b9a6; }
.hero-lead {
  font-size: 17.5px; line-height: 1.75; color: var(--body);
  max-width: 440px; margin: 0 0 40px; font-weight: 300;
}
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--bg);
  overflow: hidden; white-space: nowrap; padding: 18px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-group {
  display: flex; align-items: center; gap: 40px; padding-right: 40px; flex-shrink: 0;
  font-weight: 500; font-size: 16px; letter-spacing: 0.03em; text-transform: uppercase;
}
.marquee-group .dot { color: var(--gold); font-size: 22px; line-height: 0.9; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .marquee-group { flex-wrap: wrap; justify-content: center; row-gap: 12px; padding-right: 0; }
  .marquee-group[aria-hidden="true"] { display: none; }
  .marquee-group .dot:last-child { display: none; }
}

/* ============================================================
   DESPRE
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.about-media { position: relative; aspect-ratio: 4 / 5; background: var(--slot); }
.about-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  filter: saturate(0.85) sepia(0.04);
}
/* Warm wash so the photo sits in the site's beige/gold palette */
.about-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(233,228,219,0.35), rgba(169,137,90,0.28));
  mix-blend-mode: multiply;
}
.about-grid .section-title { margin-bottom: 28px; }
.about-grid .prose { margin-bottom: 38px; }
.manifesto p {
  font-size: 16.5px; line-height: 1.55; color: var(--body);
  font-weight: 300; margin: 0 0 14px;
}
.manifesto .m-end { font-size: 19px; font-weight: 500; color: var(--ink); margin: 18px 0 0; }
.manifesto .m-highlight { color: var(--gold); font-style: italic; }
.manifesto-keys {
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}
.stats { display: flex; gap: 48px; flex-wrap: wrap; }
.manifesto-keys + .stats { margin-top: 30px; }
.stat-num {
  font-weight: 700; font-size: 46px; line-height: 1;
  color: var(--ink); letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted); margin-top: 8px;
}

/* ============================================================
   SERVICII
   ============================================================ */
.services { background: #fff; border-top: 1px solid rgba(23,20,15,0.07); border-bottom: 1px solid rgba(23,20,15,0.07); }
.services-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 60px; flex-wrap: wrap;
}
.services-head .section-title { line-height: 1.0; }
.services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(40px, 6vw, 96px); }
.service {
  padding: 24px 0;
}
.service-head { display: flex; align-items: baseline; gap: 16px; }
.service-name {
  font-weight: 600; font-size: 21px; line-height: 1.2;
  color: var(--ink); letter-spacing: -0.01em;
}
.service-desc { font-size: 13px; color: var(--muted-2); font-weight: 300; margin-top: 5px; }
.service-dots {
  flex: 1; border-bottom: 1px dotted rgba(23,20,15,0.25); transform: translateY(-4px);
}
.service-price {
  flex-shrink: 0; font-size: 15px; letter-spacing: 0.04em;
  color: var(--gold); white-space: nowrap; font-weight: 500;
}
/* Per-length price rows under a service */
.service-tiers { margin-top: 14px; }
.tier { display: flex; align-items: baseline; gap: 12px; padding: 6px 0; }
.tier-name {
  font-size: 14px; font-weight: 300; color: var(--body); letter-spacing: 0.02em;
}
.tier-price {
  flex-shrink: 0; font-size: 14.5px; letter-spacing: 0.04em;
  color: var(--gold); white-space: nowrap; font-weight: 500;
}
.services-cta { margin-top: 56px; display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-head { text-align: center; margin-bottom: 56px; }
.gallery-head .section-title { line-height: 1.0; }
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 1fr; gap: 14px; }
.g-item { position: relative; background: var(--slot); overflow: hidden; }
.g-mobile-only { display: none; }
.g-item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(to top, rgba(23,20,15,0.58) 0%, rgba(23,20,15,0.26) 42%, rgba(23,20,15,0) 100%);
  pointer-events: none;
}
.g-label {
  position: absolute; left: 18px; bottom: 15px; z-index: 1;
  color: #f7f4ef; font-size: 13.25px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  user-select: none; -webkit-user-select: none;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) sepia(0.18) contrast(1.02) brightness(1.03);
}
.g-wide { grid-column: span 3; aspect-ratio: 16 / 11; }
.g-tall { grid-column: span 2; aspect-ratio: 3 / 4; }

/* image-slot placeholder */
.slot {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center;
  padding: 18px; color: #9a917f; background: var(--slot);
  box-shadow: inset 0 0 0 1px rgba(23,20,15,0.05);
}
.slot svg { width: 30px; height: 30px; opacity: 0.55; }
.slot .cap { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: #7f7663; }
.slot .hint { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: #b3aa98; }

/* ============================================================
   RECENZII (dark)
   ============================================================ */
.reviews { background: var(--ink); color: #f2ede4; }
.reviews-head { text-align: center; margin-bottom: 64px; }
.reviews-head .section-title { line-height: 1.0; }
/* Carousel: same 3-up look as the original grid, but the row scrolls.
   Chevrons page the whole view; swipe works natively on touch. */
.reviews-carousel { position: relative; }
.reviews-grid {
  display: flex; gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.reviews-grid:focus-visible { outline: 1px solid var(--gold-lite); outline-offset: 8px; }
.review {
  flex: 0 0 calc((100% - 56px) / 3);   /* 3 per view -same width as the old grid */
  scroll-snap-align: start;
  border: 1px solid rgba(242,237,228,0.16); padding: 40px 34px;
  display: flex; flex-direction: column;
}
.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; background: none; border: 0; padding: 4px; cursor: pointer;
  color: rgba(242,237,228,0.6);
  transition: color .2s ease, opacity .2s ease;
}
.rev-nav svg { width: 28px; height: 28px; }
.rev-nav:hover:not(:disabled) { color: var(--gold-lite); }
.rev-nav:disabled { opacity: 0.25; cursor: default; }
/* Swipe-position dots -phones only (shown via the 620px media query) */
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 18px; }
.carousel-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(23,20,15,0.18); transition: background .2s ease;
}
.carousel-dots span.is-on { background: var(--gold); }
.reviews .carousel-dots span { background: rgba(242,237,228,0.25); }
.reviews .carousel-dots span.is-on { background: var(--gold-lite); }

/* Narrow viewports: no gutter -chevrons tuck into the cards' padding zone */
.rev-nav--prev { left: -10px; }
.rev-nav--next { right: -10px; }
/* Wide viewports: enough gutter beside the 1240px container -chevrons sit fully outside the cards */
@media (min-width: 1320px) {
  .rev-nav--prev { left: -56px; }
  .rev-nav--next { right: -56px; }
}
.stars { color: var(--gold-lite); letter-spacing: 0.3em; font-size: 15px; margin-bottom: 24px; }
.review-text {
  font-weight: 500; font-size: 16px; line-height: 1.6; color: #f2ede4;
  margin: 0 0 28px; flex: 1; letter-spacing: -0.01em;
}
.review-name { font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em; }
.review-meta { font-size: 12px; color: #9c9384; font-weight: 300; margin-top: 5px; }

/* ============================================================
   PROGRAM
   ============================================================ */
.program-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.program-grid .section-title { line-height: 1.0; margin-bottom: 24px; }
.program-grid .prose p { max-width: 430px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid rgba(23,20,15,0.1);
}
.hours-day { font-size: 15px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); }
.hours-time { font-weight: 600; font-size: 19px; color: var(--body); letter-spacing: -0.01em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 7vw, 96px) 32px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.footer-head { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 20px; }
.footer-contact { font-size: 14.5px; line-height: 2; color: var(--body); font-weight: 300; }
.f-line { display: flex; align-items: center; gap: 10px; }
.f-ico { width: 15px; height: 15px; color: var(--ink); flex-shrink: 0; }
.footer-contact a { color: var(--body); }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 12px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; }
.footer-social a { color: var(--body); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #9c9384; letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px, 8vw, 110px) 32px clamp(40px, 5vw, 64px); }
.contact-h1 {
  font-weight: 700; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.0;
  letter-spacing: -0.035em; margin: 0 0 22px; text-transform: uppercase;
}
.contact-h1 span { color: var(--gold); }
.contact-lead { font-size: 17px; line-height: 1.75; color: var(--body); font-weight: 300; max-width: 520px; margin: 0; }
.contact-section { max-width: var(--maxw); margin: 0 auto; padding: 0 32px clamp(72px, 9vw, 120px); }
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 56px); align-items: stretch;
}
.info-col { display: flex; flex-direction: column; gap: 14px; }
.card { background: #fff; border: 1px solid var(--line); padding: 34px 32px; }
.card--dark { background: var(--ink); color: #f2ede4; border: 0; }
.card-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 14px; }
.card--dark .card-label { color: var(--gold-lite); margin-bottom: 16px; }
.card-lg { font-weight: 600; font-size: 20px; line-height: 1.35; letter-spacing: -0.01em; color: var(--ink); }
.card-xl { font-weight: 600; font-size: 22px; line-height: 1.4; letter-spacing: -0.01em; }
.card-xl a { color: var(--ink); }
.card-note { font-size: 14px; color: var(--muted); font-weight: 300; margin-top: 8px; }
.card-sub { font-size: 15px; margin-top: 6px; }
.card-sub a { color: var(--body); }

.social-list { display: flex; flex-direction: column; }
.social-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink);
}
.social-list a:last-child { border-bottom: 0; }
.social-list a:hover { color: var(--gold-dark); }
.social-list a span { color: var(--gold); }

.hours-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; font-weight: 300; }
.hours-line.is-closed { color: #9c9384; }

.map-col { min-height: 520px; border: 1px solid var(--line); overflow: hidden; position: relative; }
.map-col iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.7) contrast(1.03); }
.contact-cta { margin-top: 56px; text-align: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid,
  .program-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .review { flex-basis: calc((100% - 28px) / 2); }  /* 2 per view */
  .services-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-col { min-height: 380px; order: -1; }  /* map above the info cards on mobile */
}

@media (max-width: 820px) {
  /* anchor jumps stop ~20px sooner so section headings clear the sticky nav */
  html { scroll-padding-top: 20px; }
  /* nav → hamburger; the booking CTA lives in the hero on mobile */
  .nav { padding: 10px 32px; }
  .nav .btn--nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(247,244,239,0.98);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 4px 32px 18px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }

  /* hero → full-bleed photo + scrim, copy at the bottom, one viewport
     (base min-height calc keeps the marquee pinned at the fold) */
  .hero { flex-direction: column; align-items: stretch; }
  .hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-position: 55% 30%;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-fade {
    left: 0; right: 0; top: 0; bottom: 0; width: auto;
    background: linear-gradient(180deg,
      rgba(23,20,15,0) 44%, rgba(23,20,15,0.5) 68%, rgba(23,20,15,0.82) 100%);
  }
  .hero-inner { margin-top: auto; padding: 0 32px 30px; }
  .hero-copy { max-width: none; }
  .hero-copy .eyebrow {
    color: var(--gold-lite); margin-bottom: 10px;
    font-size: 11px; letter-spacing: 0.22em;
  }
  .eyebrow-extra { display: none; }        /* one-line eyebrow over the photo */
  .hero h1 { color: #f7f4ef; margin-bottom: 10px; }
  .hero-tags { color: var(--gold-lite); margin-bottom: 20px; }
  .hero-tags .sep { color: rgba(247,244,239,0.4); }
  .hero-lead, .hero .link-underline { display: none; }
}

@media (max-width: 620px) {
  .review { flex-basis: 86%; scroll-snap-align: center; }  /* next card peeks in */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .g-mobile-only { display: block; }
  .hero-tags .tag-line { display: block; }
  /* mobile-only gallery order: swap 4↔2 and 3↔6 */
  .gallery > :nth-child(1) { order: 1; }
  .gallery > :nth-child(2) { order: 4; }
  .gallery > :nth-child(3) { order: 6; }
  .gallery > :nth-child(4) { order: 2; }
  .gallery > :nth-child(5) { order: 5; }
  .gallery > :nth-child(6) { order: 3; }
  .gallery > :nth-child(7) { order: 7; }
  /* gallery → swipe strip, uniform tiles, next one peeking in */
  .gallery {
    display: flex; gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .g-item { flex: 0 0 78%; aspect-ratio: 3 / 4; scroll-snap-align: center; }
  /* reviews → swipe + dots, no arrows */
  .rev-nav { display: none; }
  .carousel-dots { display: flex; }
  .stats { gap: 32px; }
  .services-head { margin-bottom: 44px; }
}

@media (max-width: 400px) {
  .btn--nav { padding: 11px 18px; letter-spacing: 0.14em; }
  .nav { gap: 12px; }
}
