/* ============================================================
   Estetica Avanzata — Premium beauty centre
   Palette: warm ivory, espresso, soft gold
   ============================================================ */

:root {
  --ivory: #FBF7F1;
  --sand: #F1E8DC;
  --sand-deep: #E7DAC8;
  --espresso: #211A15;
  --espresso-soft: #3A2F27;
  --gold: #B8915A;
  --gold-deep: #9B7741;
  --muted: #7C7065;
  --line: rgba(33, 26, 21, 0.12);
  --line-light: rgba(251, 247, 241, 0.18);

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

  --container: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--espresso);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.section { padding-block: clamp(64px, 9vw, 130px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); }

.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 64px); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--ivory); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn--lg { --pad-y: 17px; padding-inline: 38px; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn--dark { background: var(--espresso); color: var(--ivory); }
.btn--dark:hover { background: var(--espresso-soft); transform: translateY(-2px); }
.btn--ghost { border-color: var(--line); color: var(--espresso); }
.btn--ghost:hover { border-color: var(--espresso); background: var(--espresso); color: var(--ivory); }

/* ---------- Arrow link ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 14px; color: var(--espresso); }
.link-arrow--dark { color: var(--espresso); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--espresso);
  color: rgba(251, 247, 241, 0.78);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-block: 9px;
}
.topbar__divider { opacity: 0.4; }
.topbar__link { transition: color 0.3s; }
.topbar__link:hover { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.header-wrap.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px -28px rgba(33, 26, 21, 0.5);
}
.header__glass {
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 241, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}
.header { position: relative; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--espresso);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand__sub {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__link {
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: var(--espresso-soft);
  position: relative;
  padding-block: 6px;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--espresso); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 62;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--espresso);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--sand) 100%);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(184, 145, 90, 0.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 18% 90%, rgba(184, 145, 90, 0.10) 0%, transparent 55%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
          mask-image: radial-gradient(70% 70% at 50% 50%, #000 30%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__content { max-width: 620px; }
.hero__media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 50px 90px -50px rgba(33, 26, 21, 0.65);
}
.hero__media img {
  width: 100%;
  height: clamp(380px, 52vw, 600px);
  object-fit: cover;
}
.hero__media-tag {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(33, 26, 21, 0.82);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid rgba(184, 145, 90, 0.45);
}
.hero__media-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.hero__media-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.8);
  line-height: 1.3;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__lead {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 560px;
  color: var(--espresso-soft);
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__tech {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: inline-block;
}

/* ---------- Categorie ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
  overflow: hidden;
}
.cat-card__media { overflow: hidden; }
.cat-card__media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__body {
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cat-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -38px rgba(33, 26, 21, 0.55);
  border-color: transparent;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card--featured { background: var(--espresso); color: var(--ivory); border-color: transparent; }
.cat-card--featured .cat-card__num { color: var(--gold); }
.cat-card--featured .cat-card__text { color: rgba(251, 247, 241, 0.7); }
.cat-card--featured .link-arrow { color: var(--gold); }
.cat-card--featured .link-arrow:hover { color: #fff; }
.cat-card__num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-deep);
  font-style: italic;
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
}
.cat-card__text { font-size: 14.5px; color: var(--muted); flex: 1; }
.cat-card--featured .cat-card__title { color: #fff; }
.cat-card__num { line-height: 1; }
.cat-card .link-arrow { margin-top: 6px; }

/* ---------- Tecnologia ---------- */
.tech { background: var(--espresso); color: var(--ivory); }
.tech__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.tech__lead { color: rgba(251, 247, 241, 0.74); font-size: 16px; margin-bottom: 28px; max-width: 520px; }
.tech__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.tech__tags li {
  border: 1px solid var(--line-light);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: border-color 0.3s, color 0.3s;
}
.tech__tags li:hover { border-color: var(--gold); color: var(--gold); }
.tech__panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line-light);
  padding-left: clamp(24px, 4vw, 48px);
}
.tech__stat { padding-block: 18px; border-bottom: 1px solid var(--line-light); }
.tech__stat:last-child { border-bottom: 0; }
.tech__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.tech__stat span { font-size: 13px; letter-spacing: 0.1em; color: rgba(251, 247, 241, 0.65); text-transform: uppercase; }

/* ---------- Servizi ---------- */
.services { background: var(--sand); }
.services__list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(20px, 4vw, 60px);
  padding-block: 36px;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
}
.service-row__text { color: var(--espresso-soft); font-size: 15.5px; }

/* ---------- Nails ---------- */
.nails__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.nails__lead { color: var(--espresso-soft); font-size: 16px; margin-block: 16px 26px; max-width: 540px; }
.nails__art {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -50px rgba(33, 26, 21, 0.6);
}
.nails__art img {
  width: 100%;
  height: clamp(360px, 44vw, 520px);
  object-fit: cover;
}
.nails__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--ivory);
  background: rgba(33, 26, 21, 0.7);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
  border-radius: 4px;
  border: 1px solid rgba(184, 145, 90, 0.4);
}

/* ---------- Prodotti ---------- */
.products__top {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.products__top .section__head { margin-bottom: 0; }
.products__intro { color: var(--muted); font-size: 16px; margin-top: 18px; max-width: 460px; }
.products__feature {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 40px 80px -54px rgba(33, 26, 21, 0.55);
}
.products__feature img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  object-fit: cover;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}
.prod-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -40px rgba(33, 26, 21, 0.55); }
.prod-card__brand {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.prod-card__title { font-family: var(--font-display); font-size: 25px; font-weight: 500; }
.prod-card__text { font-size: 14.5px; color: var(--muted); flex: 1; }
.prod-card__note {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 4px;
}

/* ---------- Brand ---------- */
.brands { background: var(--sand); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.brand-item {
  background: var(--sand);
  padding: 36px 32px;
  transition: background 0.4s;
}
.brand-item:hover { background: #fff; }
.brand-item__name {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 12px;
}
.brand-item__text { font-size: 14.5px; color: var(--muted); }

/* ---------- Listino ---------- */
.pricing { background: var(--espresso); color: var(--ivory); }
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(30px, 5vw, 80px); }
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line-light);
}
.price-row__name {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
}
.price-row__cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.6);
  text-align: right;
}
.pricing__note {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(251, 247, 241, 0.55);
}

/* ---------- Promo ---------- */
.promo { position: relative; overflow: hidden; }
.promo__bg {
  position: absolute; inset: 0;
  background: url('assets/img/promo.jpg') center / cover no-repeat;
}
.promo__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33, 26, 21, 0.82) 0%, rgba(33, 26, 21, 0.7) 100%);
}
.promo__inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.promo .eyebrow { color: var(--gold); }
.promo__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--ivory);
}
.promo__lead { color: rgba(251, 247, 241, 0.82); font-size: 17px; margin-bottom: 32px; }
.promo__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: var(--ivory); padding-bottom: 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-light);
}
.brand--footer .brand__mark { background: var(--gold); color: var(--espresso); }
.brand--footer .brand__name,
.brand--footer .brand__sub { color: var(--ivory); }
.footer__tagline { color: rgba(251, 247, 241, 0.66); font-size: 14.5px; margin-top: 18px; max-width: 320px; }
.footer__heading {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer__line { font-size: 14.5px; color: rgba(251, 247, 241, 0.82); margin-bottom: 8px; }
.footer__line--muted { color: rgba(251, 247, 241, 0.5); }
.footer__line a { transition: color 0.3s; }
.footer__line a:hover { color: var(--gold); }
.footer__nav { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a { font-size: 14.5px; color: rgba(251, 247, 241, 0.82); transition: color 0.3s; }
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(251, 247, 241, 0.5);
  text-transform: uppercase;
}

/* ---------- Floating action button (mobile) ---------- */
.fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 45;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 16px 36px -16px rgba(155, 119, 65, 0.85);
  display: none;
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 44px; }
  .hero__content { max-width: 640px; }
  .hero__media img { height: clamp(280px, 60vw, 420px); }
  .products__top { grid-template-columns: 1fr; }
  .products__feature { order: -1; }
  .tech__inner { grid-template-columns: 1fr; }
  .tech__panel { border-left: 0; border-top: 1px solid var(--line-light); padding-left: 0; padding-top: 18px; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .tech__stat { border-bottom: 0; flex: 1 1 120px; }
  .nails__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 761px) {
  .header-wrap {
    display: grid;
    grid-template-areas: 'bar';
  }
  .header { grid-area: bar; }
  .nav {
    grid-area: bar;
    justify-self: end;
    align-self: center;
    justify-content: flex-end;
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 56px);
    padding-block: 16px;
    pointer-events: none;
    z-index: 2;
  }
  .nav > * { pointer-events: auto; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    height: 100dvh;
    background: var(--ivory);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 80px 40px;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.45s var(--ease), visibility 0.45s;
    box-shadow: -8px 0 32px -16px rgba(33, 26, 21, 0.25);
    z-index: 60;
    visibility: hidden;
    pointer-events: none;
  }
  .nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav__link { font-size: 18px; }
  .nav__cta { margin-left: 0; margin-top: 6px; }
  .burger { display: flex; }

  /* Invisibile: serve solo per chiudere il menu al tap fuori */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: transparent;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-backdrop.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-row__cat { text-align: left; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .fab { display: inline-flex; }
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (max-width: 420px) {
  .brand__sub { display: none; }
  .topbar__inner { flex-wrap: wrap; gap: 6px 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
