/* ============================================================
   VIP Dental Clinic — Quetta
   Hand-written, mobile-first stylesheet.
   Aesthetic: fresh, calm, trustworthy medical.
   Display font: Fraunces (soft serif) · Body: Plus Jakarta Sans
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --teal:        #0E7C9D;   /* primary */
  --teal-deep:   #0A6076;
  --aqua:        #1FB6B6;   /* accent */
  --mint:        #C9F0EC;
  --mint-soft:   #E6F7F5;
  --navy:        #0B3954;   /* headings / text */
  --ink:         #143C4E;
  --slate:       #5B7585;   /* muted text */
  --bg:          #F4FAFB;   /* page background */
  --bg-2:        #ECF6F8;
  --white:       #ffffff;
  --gold:        #F5A623;   /* stars */

  /* Effects */
  --radius:      10px;
  --radius-lg:   14px;
  --radius-sm:   8px;
  --border-c:    rgba(11, 57, 84, .1);
  --shadow-sm:   0 1px 2px rgba(11, 57, 84, .05);
  --shadow:      0 18px 40px -22px rgba(11, 57, 84, .26);
  --shadow-lg:   0 36px 80px -36px rgba(11, 57, 84, .34);
  --ring:        0 0 0 3px rgba(14, 124, 157, .28);

  --maxw:        1180px;
  --gutter:      clamp(1.1rem, 4vw, 2.4rem);

  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); line-height: 1.14; font-weight: 500; letter-spacing: -0.018em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .9rem; letter-spacing: .005em;
  padding: .85rem 1.5rem; border-radius: var(--radius-sm);
  transition: transform .35s cubic-bezier(.23,1,.32,1), box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  will-change: transform; white-space: nowrap;
}
.btn--lg { padding: 1.02rem 1.9rem; font-size: .95rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(14,124,157,.65); }

.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--teal-deep); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--call { background: var(--teal); color: #fff; }
.btn--call:hover { background: var(--teal-deep); transform: translateY(-2px); }

/* ---------- Helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--teal); opacity: .7; }
.section__head .eyebrow { justify-content: center; }
.accent-text { color: var(--teal); font-style: italic; }
.hero .accent-text { color: #8fe3df; }
.pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .85rem; border-radius: 999px; font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.pill--light { background: rgba(255,255,255,.08); color: #eafaf9; border: 1px solid rgba(255,255,255,.22); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); display: inline-block; }
.dot--live { background: #5fe39a; box-shadow: 0 0 0 0 rgba(95,227,154,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(95,227,154,.55);} 70%{box-shadow:0 0 0 7px rgba(95,227,154,0);} 100%{box-shadow:0 0 0 0 rgba(95,227,154,0);} }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section__head { max-width: 660px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); text-align: center; }
.section__title { font-size: clamp(1.85rem, 1.2rem + 2.8vw, 3rem); font-weight: 500; }
.section__lead { color: var(--slate); margin-top: 1rem; font-size: 1.075rem; line-height: 1.6; }

.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border-c); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(244,250,251,.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav.is-scrolled { background: rgba(255,255,255,.9); box-shadow: 0 6px 24px -16px rgba(11,57,84,.5); border-bottom-color: rgba(11,57,84,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 9px;
  background: var(--teal); color: #fff; flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--navy); letter-spacing: -.01em; }
.brand__text em { font-style: normal; font-size: .68rem; color: var(--slate); letter-spacing: .1em; text-transform: uppercase; margin-top: .1rem; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__link { padding: .55rem .8rem; border-radius: 9px; font-weight: 600; font-size: .95rem; color: var(--ink); position: relative; transition: color .2s ease, background .2s ease; }
.nav__link:hover { color: var(--teal); background: var(--mint-soft); }
.nav__call { margin-left: .5rem; }

.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 11px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: var(--white); box-shadow: var(--shadow-sm); }
.nav__toggle span { width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: #fff; isolation: isolate; padding-top: clamp(3rem, 8vw, 5.5rem); padding-bottom: clamp(5rem, 12vw, 8rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background: url("images/dental-hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(90% 80% at 88% 10%, rgba(31,182,182,.28), transparent 55%),
    linear-gradient(120deg, rgba(8,48,62,.96) 0%, rgba(11,57,84,.88) 50%, rgba(10,60,74,.7) 100%);
}
.hero__inner { position: relative; min-height: 60vh; display: flex; align-items: center; }
.hero__content { max-width: 740px; }
.hero__title { font-size: clamp(2.4rem, 1.3rem + 5vw, 4.4rem); color: #fff; font-weight: 400; margin: 1.4rem 0 1.3rem; letter-spacing: -0.025em; line-height: 1.08; }
.hero__sub { font-size: clamp(1.05rem, .96rem + .55vw, 1.28rem); color: #d4eaeb; max-width: 580px; font-weight: 400; }
.hero__sub strong { color: #fff; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 2.4rem; }

.trust { display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.16); }
.trust__item { display: flex; flex-direction: column; }
.trust__num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 400; color: #fff; line-height: 1; letter-spacing: -.02em; }
.trust__label { font-size: .72rem; color: #a9d4d4; letter-spacing: .14em; text-transform: uppercase; margin-top: .45rem; }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: -1; line-height: 0; }
.hero__wave svg { width: 100%; height: clamp(50px, 8vw, 110px); }
.hero__wave path { fill: var(--bg); }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.about__badge {
  position: absolute; bottom: -18px; left: 18px; display: flex; align-items: center; gap: .55rem;
  background: #fff; padding: .8rem 1.1rem; border-radius: 16px; box-shadow: var(--shadow); font-weight: 700; color: var(--navy); font-size: .95rem;
}
.about__badge-star { color: var(--gold); font-size: 1.2rem; }
.about__badge strong { color: var(--teal); }

.about__body p { color: var(--slate); margin-top: 1rem; }
.about__points { margin: 1.5rem 0; display: grid; gap: .6rem; }
.about__points li { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--ink); }
.about__points span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--mint); color: var(--teal-deep); font-size: .8rem; flex: none; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--border-c); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 1rem + 2.4vw, 2.7rem); font-weight: 400; color: var(--teal); line-height: 1; letter-spacing: -.02em; }
.stat__label { font-size: .76rem; color: var(--slate); margin-top: .5rem; display: block; text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service { padding: 2rem 1.75rem; transition: transform .4s cubic-bezier(.23,1,.32,1), box-shadow .35s ease, border-color .35s ease; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(14,124,157,.3); }
.service__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 10px; background: var(--mint-soft); color: var(--teal); margin-bottom: 1.2rem; transition: background .35s ease, color .35s ease; }
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon { background: var(--teal); color: #fff; }
.service__title { font-size: 1.22rem; font-weight: 500; margin-bottom: .5rem; }
.service__desc { color: var(--slate); font-size: .94rem; }

.service--accent { background: var(--navy); border: none; }
.service--accent .service__title { color: #fff; }
.service--accent .service__desc { color: #b6cdd8; }
.service--accent .service__icon { background: rgba(255,255,255,.12); color: #fff; }
.service--accent:hover .service__icon { background: var(--aqua); color: var(--navy); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.grid--why { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.why__item { display: flex; gap: 1.1rem; padding: 1.4rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid rgba(11,57,84,.05); transition: transform .25s ease, box-shadow .3s ease; }
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__icon { flex: none; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--mint-soft); color: var(--teal); }
.why__icon svg { width: 26px; height: 26px; }
.why__item h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: .35rem; }
.why__item p { color: var(--slate); font-size: .93rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid; gap: clamp(.8rem, 1.6vw, 1.2rem);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,57,84,.25)); opacity: 0; transition: opacity .35s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.carousel { max-width: 760px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); }
.carousel__track { display: flex; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.carousel__slide { min-width: 100%; padding: .4rem; }

.review { padding: clamp(2rem, 4vw, 3rem); text-align: center; box-shadow: var(--shadow); position: relative; }
.review::before { content: "\201C"; font-family: var(--font-display); position: absolute; top: .4rem; left: 1.6rem; font-size: 4.5rem; color: var(--mint); line-height: 1; opacity: .8; }
.review__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .2em; margin-bottom: 1.1rem; }
.review__text { font-family: var(--font-display); font-size: clamp(1.25rem, 1rem + 1.2vw, 1.7rem); color: var(--navy); font-weight: 400; line-height: 1.4; }
.review__author { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 1.8rem; }
.review__avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 600; font-size: .85rem; letter-spacing: .02em; }
.review__author span:not(.review__avatar) { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.review__author strong { color: var(--navy); }
.review__author em { font-style: normal; font-size: .8rem; color: var(--slate); }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.carousel__btn { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--teal); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, background .25s ease, color .25s ease; }
.carousel__btn:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.carousel__dots { display: flex; gap: .5rem; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(11,57,84,.2); transition: background .25s ease, width .25s ease; }
.carousel__dot.is-active { background: var(--teal); width: 26px; border-radius: 6px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__banner {
  text-align: center; color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: clamp(2rem, 5vw, 3rem);
  background: radial-gradient(80% 120% at 90% 0%, rgba(31,182,182,.22), transparent 55%), var(--navy);
  box-shadow: var(--shadow-lg);
}
.contact__banner h2 { color: #fff; font-size: clamp(1.8rem, 1.1rem + 2.6vw, 2.7rem); font-weight: 400; }
.contact__banner p { color: #c6dde2; margin: 1rem auto 2rem; max-width: 520px; }

.contact__grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); grid-template-columns: 1fr; }

.contact__form-wrap { padding: clamp(1.6rem, 3vw, 2.4rem); }
.contact__form-wrap h3 { font-size: 1.45rem; }
.contact__form-note { color: var(--slate); font-size: .92rem; margin: .4rem 0 1.4rem; }

.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: .4rem; }
.form__field span { font-weight: 600; font-size: .88rem; color: var(--navy); }
.form__field input, .form__field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid rgba(11,57,84,.14);
  background: var(--bg); font: inherit; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form__field input:focus, .form__field textarea:focus { border-color: var(--aqua); background: #fff; box-shadow: 0 0 0 4px rgba(31,182,182,.16); outline: none; }
.form__field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__status { font-size: .9rem; font-weight: 600; min-height: 1.2em; text-align: center; }
.form__status.is-success { color: #0a8f5b; }
.form__status.is-error { color: #c0392b; }

.info-list { display: grid; gap: 1.2rem; margin-bottom: 1.6rem; }
.info-list li { display: flex; gap: 1rem; }
.info-list__icon { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--mint-soft); color: var(--teal); }
.info-list__icon svg { width: 24px; height: 24px; }
.info-list li div { color: var(--ink); line-height: 1.5; }
.info-list strong { display: block; color: var(--navy); margin-bottom: .15rem; font-family: var(--font-display); font-size: 1.05rem; }
.info-list a { color: var(--teal); font-weight: 700; }
.info-list__sub { display: block; font-size: .82rem; color: var(--slate); margin-top: .2rem; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(11,57,84,.08); }
.map iframe { width: 100%; height: 280px; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: #c6dbe4; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; gap: 2.2rem; grid-template-columns: 1.6fr 1fr 1fr 1fr; padding-bottom: 2.6rem; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text em { color: #8fb2c1; }
.footer__about { margin-top: 1rem; font-size: .92rem; color: #9cbccb; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer__col a, .footer__col span { display: block; color: #abc8d4; font-size: .92rem; margin-bottom: .55rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--aqua); }
.footer__col strong { color: #fff; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); color: #fff; transition: background .25s ease, transform .2s ease; margin: 0; }
.footer__social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #87a6b5; }

/* ---------- Floating call button (mobile) ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
  background: var(--teal); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(14,124,157,.7);
  animation: fab-pulse 2.8s infinite;
}
@keyframes fab-pulse { 0%{box-shadow:0 12px 28px -8px rgba(14,124,157,.7), 0 0 0 0 rgba(31,182,182,.45);} 70%{box-shadow:0 12px 28px -8px rgba(14,124,157,.7), 0 0 0 14px rgba(31,182,182,0);} 100%{box-shadow:0 12px 28px -8px rgba(14,124,157,.7), 0 0 0 0 rgba(31,182,182,0);} }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1.15fr; }
  .gallery__item--wide { grid-column: span 2; }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; padding: 1rem var(--gutter) 1.6rem;
    box-shadow: 0 24px 40px -20px rgba(11,57,84,.4);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    max-height: calc(100vh - 74px); overflow-y: auto;
    border-bottom: 1px solid rgba(11,57,84,.08);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: .85rem .8rem; font-size: 1.05rem; }
  .nav__call { margin: .6rem 0 0; justify-content: center; }
  .nav__toggle { display: flex; }
  .fab { display: grid; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .stats { gap: .5rem; }
  .gallery__grid { grid-auto-rows: 150px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar-inner { justify-content: center; text-align: center; }
  .trust { gap: 1.3rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Preview mode (for screenshot testing) ---------- */
.preview .reveal { opacity: 1 !important; transform: none !important; }
