/* ===== Meladens — premium Apple-style ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --line: #e4e4e7;
  --brand: #0a84c4;
  --brand-deep: #075f8e;
  --brand-soft: #e8f4fb;
  --accent: #2dd4bf;
  --radius: 22px;
  --radius-lg: 30px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0, 40, 70, 0.08);
  --shadow-sm: 0 8px 28px rgba(0, 40, 70, 0.06);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Icons */
.ico { width: 100%; height: 100%; display: block; color: inherit; }

h1, h2, h3, h4, h5 { line-height: 1.08; letter-spacing: -0.025em; font-weight: 600; }

section { padding: clamp(72px, 11vw, 140px) clamp(20px, 5vw, 56px); }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 18px;
}
.kicker--light { color: rgba(255, 255, 255, 0.75); }

.section__head { max-width: 760px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.section__sub { margin-top: 20px; color: var(--ink-soft); font-size: clamp(1.05rem, 2vw, 1.2rem); }
.section__sub--light { color: rgba(255, 255, 255, 0.72); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px; border-radius: 980px;
  font-weight: 500; font-size: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 30px rgba(10, 132, 196, 0.35); }
.btn--primary:hover { background: var(--brand-deep); transform: translateY(-2px); }
.btn--ghost { color: var(--brand); }
.btn--ghost:hover { transform: translateX(3px); }
.btn--light { background: #fff; color: var(--brand-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.2); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
  padding: 14px clamp(20px, 5vw, 40px);
}
.nav__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.03em; }
.nav__logo { width: 24px; height: 24px; color: var(--ink); display: inline-flex; flex-shrink: 0; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--brand); color: #fff; padding: 9px 20px; border-radius: 980px;
  font-size: 0.92rem; font-weight: 500; transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--brand-deep); transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 24px 24px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a { padding: 13px 4px; font-size: 1.1rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav__mobile a:last-child { border: 0; }
.nav__mobile-cta { color: var(--brand) !important; }
.nav__mobile.open { display: flex; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: 120px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 70%);
}
.hero__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(10, 132, 196, 0.12) 35%, transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero__content { position: relative; max-width: 900px; }
.hero__eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: 980px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  color: var(--brand-deep); font-size: 0.85rem; font-weight: 500; margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero__title { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 600; }
.hero__sub { margin: 26px auto 0; max-width: 620px; font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--ink-soft); }
.hero__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__meta {
  margin-top: 64px; display: flex; gap: clamp(24px, 5vw, 64px); justify-content: center; flex-wrap: wrap;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-size: 1.05rem; font-weight: 600; }
.hero__meta span { font-size: 0.85rem; color: var(--ink-soft); }

/* ===== Trust strip ===== */
.strip { padding: 0; }
.strip__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft); overflow: hidden;
  margin-top: -40px; position: relative; z-index: 2;
}
.strip__item { padding: 30px 20px; text-align: center; border-right: 1px solid var(--line); }
.strip__item:last-child { border-right: 0; }
.strip__num { display: block; font-size: 1.7rem; font-weight: 700; letter-spacing: -0.03em; color: var(--brand-deep); }
.strip__lbl { font-size: 0.88rem; color: var(--ink-soft); }

/* ===== Notices (obvestila) ===== */
.notices { padding-bottom: clamp(40px, 6vw, 70px); }
.notices__list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.notice {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: 16px; padding: 22px 26px;
}
.notice__icon { display: block; width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.notice__date { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 5px; }
.notice__body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.notice__body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== About ===== */
.about__grid { max-width: var(--maxw); margin: 0 auto; }
.about__lead {
  font-size: clamp(1.35rem, 3.2vw, 2rem); font-weight: 500; letter-spacing: -0.02em;
  max-width: 880px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; line-height: 1.35;
}
.about__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about__card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 38px 32px;
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.about__card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.about__icon { width: 34px; height: 34px; margin-bottom: 22px; color: var(--ink); }
.about__card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.about__card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== Services ===== */
.services { background: var(--bg-soft); }
.services__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: #fff; border-radius: var(--radius); padding: 36px 30px;
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc__icon { width: 34px; height: 34px; margin-bottom: 22px; color: var(--ink); }
.svc h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc p { color: var(--ink-soft); font-size: 0.97rem; }

/* ===== Aesthetic (light) ===== */
.aesthetic { position: relative; color: var(--ink); overflow: hidden; }
.aesthetic__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #eef8fc 0%, #ecfbf5 100%);
}
.aesthetic__bg::after {
  content: ''; position: absolute; top: -20%; right: -12%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,.18), transparent 70%); filter: blur(30px);
}
.aesthetic .section__head, .aesthetic__grid { position: relative; z-index: 1; }
.aesthetic .section__head h2 { color: var(--ink); }
.aesthetic .kicker--light { color: var(--brand); }
.aesthetic .section__sub--light { color: var(--ink-soft); }
.aesthetic__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aest {
  background: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius); padding: 32px 28px; backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease;
}
.aest:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.aest__icon { display: block; width: 32px; height: 32px; margin-bottom: 18px; color: var(--ink); }
.aest h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--ink); }
.aest p { color: var(--ink-soft); font-size: 0.95rem; }
.aest--cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%); border: 0;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  box-shadow: 0 14px 36px rgba(10,132,196,.28);
}
.aest--cta h3 { color: #fff; }
.aest--cta p { color: rgba(255,255,255,0.9); margin-bottom: 18px; }

/* ===== Team ===== */
.team__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.member {
  text-align: center; padding: 44px 30px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.member__avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; font-weight: 600; color: #fff; letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 10px 26px rgba(10,132,196,.3);
}
.member h3 { font-size: 1.3rem; }
.member__role { color: var(--brand); font-weight: 500; font-size: 0.95rem; margin: 6px 0 14px; }
.member__bio { color: var(--ink-soft); font-size: 0.96rem; }

/* ===== Hours ===== */
.hours { background: var(--bg-soft); }
.hours__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center;
}
.hours__col h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.hours__note { margin-top: 22px; color: var(--ink-soft); font-size: 1.05rem; }
.hours__hyg { margin-top: 30px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 18px; }
.hours__hyg h4 { font-size: 1rem; margin-bottom: 6px; color: var(--brand-deep); }
.hours__hyg p { color: var(--ink-soft); font-size: 0.95rem; }
.hours__table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 28px; box-shadow: var(--shadow-sm); }
.hrow { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.hrow:last-child { border-bottom: 0; }
.hrow__day { font-weight: 500; }
.hrow__time { color: var(--brand-deep); font-weight: 600; font-variant-numeric: tabular-nums; }
.hrow--off .hrow__time { color: var(--ink-soft); font-weight: 500; }

/* ===== Booking ===== */
.booking__card {
  max-width: var(--maxw); margin: 0 auto; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px); box-shadow: var(--shadow);
}
.booking__methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 40px; }
.bmethod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .25s ease, box-shadow .25s ease;
}
a.bmethod:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.bmethod__icon { display: block; width: 28px; height: 28px; color: var(--ink); margin-bottom: 8px; }
.bmethod__lbl { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.bmethod__val { font-weight: 600; font-size: 1.02rem; word-break: break-word; }
.booking__times { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.booking__times h4 { font-size: 1.05rem; margin-bottom: 16px; }
.booking__times ul { list-style: none; }
.booking__times li { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.booking__times li span { color: var(--ink-soft); }
.booking__times li strong { font-variant-numeric: tabular-nums; }
.booking__pain { margin-top: 22px; display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--brand-soft); border-radius: 16px; }
.booking__pain-icon { display: block; width: 26px; height: 26px; color: var(--ink); flex-shrink: 0; }
.booking__pain p { font-size: 0.96rem; color: var(--ink); }

/* ===== Contact ===== */
.contact__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: 26px; }
.cinfo { display: flex; flex-direction: column; gap: 4px; }
.cinfo__lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); }
.cinfo__val { font-size: 1.1rem; font-weight: 500; }
.cinfo__val a { color: var(--brand); }
.cinfo__val a:hover { text-decoration: underline; }
.contact__mapbtn { align-self: flex-start; margin-top: auto; }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; box-shadow: var(--shadow-sm); }
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ===== Footer (light) ===== */
.footer { background: var(--bg-soft); color: var(--ink-soft); border-top: 1px solid var(--line); padding: clamp(56px, 8vw, 90px) clamp(20px, 5vw, 56px) 32px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2.6fr; gap: 40px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer__cols h5 { color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer__cols p { font-size: 0.95rem; line-height: 1.9; }
.footer__cols a:hover { color: var(--brand); }
.footer__bottom {
  max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; color: var(--ink-soft);
}

/* ===== FAB ===== */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(10,132,196,.45); transition: transform .25s;
}
.fab .ico { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.08); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Cookie banner ===== */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; display: flex; justify-content: center; }
.cookie[hidden] { display: none; }
.cookie__inner {
  max-width: 780px; width: 100%; padding: 20px 24px;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.cookie__inner p { font-size: 0.92rem; color: var(--ink-soft); flex: 1 1 300px; }
.cookie__inner a { color: var(--brand); text-decoration: underline; }
.cookie__btns { display: flex; gap: 10px; margin-left: auto; }
.cookie__btns .btn { padding: 11px 22px; font-size: 0.9rem; }

/* ===== Map consent overlay ===== */
.contact__map { position: relative; }
.map-consent {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  padding: 28px; text-align: center; cursor: pointer;
  background: var(--bg-soft); color: var(--ink-soft); border: 0; font-family: inherit; font-size: 0.95rem;
}
.map-consent strong { color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.map-consent span:not(.btn) { max-width: 320px; }
.map-consent .btn { pointer-events: none; padding: 11px 24px; }
.map-consent[hidden] { display: none; }

/* ===== Legal pages ===== */
.legal-top { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--line); }
.legal-top__inner { max-width: 880px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px clamp(20px, 5vw, 40px); }
.legal-brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.03em; color: var(--ink); }
.legal-brand svg { width: 24px; height: 24px; color: var(--ink); }
.legal-back { color: var(--brand); font-weight: 500; font-size: 0.95rem; }
.legal-back:hover { text-decoration: underline; }
.legal-main { max-width: 760px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 40px); }
.legal-main h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 12px; }
.legal-updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 36px; }
.legal-main h2 { font-size: 1.4rem; margin: 42px 0 14px; }
.legal-main h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal-main p, .legal-main li { color: #3a3a3e; font-size: 1rem; line-height: 1.75; }
.legal-main p { margin-bottom: 14px; }
.legal-main ul { padding-left: 22px; margin-bottom: 16px; }
.legal-main li { margin-bottom: 6px; }
.legal-main a { color: var(--brand); }
.legal-main a:hover { text-decoration: underline; }
.legal-note { background: var(--brand-soft); border-radius: 14px; padding: 18px 20px; font-size: 0.92rem; color: var(--ink); margin: 24px 0; }
.legal-contact { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin: 8px 0 24px; }
.legal-contact p { margin: 0; }
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: #3a3a3e; }
.legal-table th { font-weight: 600; color: var(--ink); }
.legal-foot { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 32px clamp(20px, 5vw, 40px); }
.legal-foot__inner { max-width: 760px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.88rem; color: var(--ink-soft); }
.legal-foot__inner nav { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-foot__inner a:hover { color: var(--brand); }

/* ===== Footer legal links ===== */
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--brand); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about__cards, .services__grid, .aesthetic__grid, .team__grid, .booking__methods { grid-template-columns: 1fr 1fr; }
  .hours__inner, .contact__grid, .footer__inner { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__item:nth-child(2) { border-right: 0; }
  .strip__item:nth-child(1), .strip__item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .fab { display: flex; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about__cards, .services__grid, .aesthetic__grid, .team__grid, .booking__methods, .footer__cols { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px; }
  .hero__meta div { flex: 1 1 40%; }
  .footer__bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
