/* =====================================================================
   MJ FAMILY SALON — Premium dark cinematic theme
   Frontend stylesheet.  Structural base: Bootstrap 5.  Everything that
   gives the site its identity lives here.
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:        #0b0b0d;
  --bg-1:      #0e0e12;
  --bg-2:      #121218;
  --bg-3:      #17171e;
  --bg-card:   #131318;
  --bg-elev:   #1c1c24;

  /* Lines */
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);
  --line-3:    rgba(255,255,255,.22);

  /* Text */
  --text:      #ece8e1;
  --text-dim:  #a8a29a;
  --text-mute: #706b62;

  /* Accent — champagne / warm metal (used sparingly) */
  --gold:      #c9a86a;
  --gold-2:    #ddc59c;
  --gold-deep: #a5854d;
  --gold-glow: rgba(201,168,106,.28);

  /* Type */
  --f-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --f-body:    "Jost", "Helvetica Neue", system-ui, -apple-system, sans-serif;

  /* Metrics */
  --container: 1280px;
  --container-wide: 1500px;
  --radius:    14px;
  --radius-lg: 22px;
  --ease:      cubic-bezier(.22,1,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --dur:       .55s;

  --header-h:  84px;
}

/* --------------------------------------------------------------- Reset */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
/* Native, browser-default scrolling — no CSS smooth-scroll hijack on the wheel.
   Horizontal overflow is clipped (not `hidden`) so the body never becomes a
   nested scroll container, which is what made the wheel feel laggy/delayed. */
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.no-scroll { position: fixed; width: 100%; left: 0; overflow: hidden; }

img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
input,textarea,select { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #0b0b0d; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 2000;
  background: var(--gold); color: #0b0b0d; padding: 10px 18px; border-radius: 8px;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase; font-size: .8rem;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* --------------------------------------------------------- Typography */
h1,h2,h3,h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: .005em;
}
.display-hero {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(3rem, 11.5vw, 8.5rem);
  line-height: .96;
  letter-spacing: -.01em;
}
.h-xl  { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-lg  { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-md  { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.serif-italic { font-style: italic; color: var(--gold-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .7;
}
.eyebrow--center::after {
  content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .7;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.75;
}
.text-dim { color: var(--text-dim); }
.text-gold { color: var(--gold); }

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

.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(52px, 8vw, 100px); }
.section--flush-top { padding-top: 0; }
.section-head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 68px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 20px; }

.bg-1 { background: var(--bg-1); }
.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }

.divider-line { height: 1px; background: var(--line); border: 0; margin: 0; }

.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  /* Plain low-opacity overlay — no `mix-blend-mode`, which forced the browser to
     re-composite everything under each grained section on every scroll frame. */
  opacity: .035;
}

/* ------------------------------------------------------------ Buttons */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--line-3);
  position: relative;
  display: inline-flex; align-items: center; gap: .8em;
  padding: 1.05em 1.9em;
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.btn > * { position: relative; z-index: 2; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { color: #0b0b0d; border-color: var(--gold); }
.btn:hover::before { transform: translateY(0); }
.btn:hover .fa-arrow-right-long { transform: translateX(5px); }
.btn .fa-arrow-right-long { transition: transform .4s var(--ease); }
.btn--pill { border-radius: 999px; }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #0b0b0d; --btn-bd: var(--gold); }
.btn--gold::before { background: #fff; }
.btn--gold:hover { color: #0b0b0d; border-color: #fff; }
.btn--ghost { --btn-bd: var(--line-2); }
.btn--sm { padding: .8em 1.4em; font-size: .74rem; }
.btn--lg { padding: 1.2em 2.4em; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  background-image: linear-gradient(var(--gold),var(--gold));
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease);
}
.link-arrow i { transition: transform .4s var(--ease); }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover i { transform: translateX(6px); }

/* --------------------------------------------------------- Preloader */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  display: grid; place-content: center; gap: 26px;
  background: var(--bg);
  transition: opacity .7s var(--ease), visibility .7s;
  /* Resilience: fade out on its own if JS never runs / fails to load. */
  animation: preloaderFailsafe 0s linear 5s forwards;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
@keyframes preloaderFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.preloader__mark { text-align: center; overflow: hidden; }
.preloader__mark img { max-height: 60px; margin-inline: auto; filter: brightness(0) invert(1); }
.preloader__mark span {
  display: block; font-family: var(--f-display); font-size: 2.6rem; letter-spacing: .12em;
  color: var(--text);
}
.preloader__mark small {
  display: block; font-size: .66rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); margin-top: 6px;
}
.preloader__bar { width: 180px; height: 2px; background: var(--line-2); overflow: hidden; margin-inline: auto; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s linear; }

/* ----------------------------------------------------------- Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  max-width: var(--container-wide); margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 56px);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header.is-scrolled {
  background: rgba(11,11,13,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
  --header-h: 70px;
  box-shadow: 0 20px 50px -30px rgba(0,0,0,.9);
}
.site-header.is-hidden { transform: translateY(-100%); }

.brand { display: flex; align-items: center; z-index: 2; }
.brand__logo { max-height: 46px; width: auto; transition: max-height .4s var(--ease); }
.site-header.is-scrolled .brand__logo { max-height: 38px; }
.brand__logo--mobile { display: none; }
.brand__text { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .06em; color: var(--text); }
.brand__mj { color: var(--gold); }

.site-nav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 36px); }
.site-nav__link {
  position: relative; display: inline-block; padding: 6px 2px;
  font-size: .78rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim);
  transition: color .35s var(--ease);
}
.site-nav__link span { position: relative; }
.site-nav__link span::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.site-nav__link:hover,
.site-nav__link.active { color: var(--text); }
.site-nav__link:hover span::after,
.site-nav__link.active span::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }
.header-book { padding: .85em 1.5em; font-size: .74rem; }

.nav-toggle { display: none; width: 42px; height: 42px; position: relative; }
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--text);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------------------------------- Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1200;
  visibility: hidden;
  transition: visibility .6s;
}
.mobile-menu.is-open { visibility: visible; }
.mobile-menu__bg {
  position: absolute; inset: 0; background: var(--bg-1);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path .7s var(--ease);
}
.mobile-menu.is-open .mobile-menu__bg { clip-path: circle(150% at calc(100% - 44px) 44px); }
.mobile-menu__inner {
  position: relative; height: 100%; display: flex; flex-direction: column;
  padding: 26px clamp(24px,7vw,54px) calc(28px + env(safe-area-inset-bottom));
  opacity: 0; transition: opacity .3s var(--ease) .1s;
}
.mobile-menu.is-open .mobile-menu__inner { opacity: 1; transition-delay: .25s; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__brand { font-family: var(--f-display); font-size: 1.25rem; letter-spacing: .05em; }
.mobile-menu__close { width: 44px; height: 44px; font-size: 1.4rem; color: var(--text); }
.mobile-menu__list { margin: auto 0; display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--f-display); font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1;
  color: var(--text-dim);
  padding: 8px 0;
  opacity: 0; transform: translateY(24px);
  transition: color .3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__link {
  animation: menuIn .6s var(--ease) forwards;
  animation-delay: calc(.3s + var(--i) * .06s);
}
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu__link.active,
.mobile-menu__link:hover { color: var(--text); }
.mobile-menu__index { font-family: var(--f-body); font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu__contact { display: flex; gap: 26px; font-size: .82rem; letter-spacing: .08em; color: var(--text-dim); }
.mobile-menu__contact a { display: inline-flex; align-items: center; gap: 8px; }
.mobile-menu__contact i { color: var(--gold); }

/* ------------------------------------------------------------- Hero */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
/* Gentle one-time ken-burns — a slow drift that is NOT tied to scroll,
   so it never competes with the wheel. */
@media (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: heroKenburns 22s ease-out forwards; transform-origin: 50% 45%; }
}
@keyframes heroKenburns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.12); }
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.15) 35%, rgba(11,11,13,.75) 78%, var(--bg) 100%),
    radial-gradient(120% 80% at 15% 90%, rgba(11,11,13,.7), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container-wide); margin-inline: auto;
  padding: 0 clamp(20px,5vw,56px) clamp(60px, 9vw, 110px);
}
.hero__label { margin-bottom: 26px; }
.hero__brand {
  font-family: var(--f-body); font-size: .8rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 18px;
}
.hero__title { margin-bottom: 30px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__sub { max-width: 560px; margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-mute);
}
.hero__scroll span::after {
  content: ""; display: block; width: 1px; height: 46px; margin: 8px auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.hero__float {
  position: absolute; z-index: 1; border: 1px solid var(--line-2); border-radius: 50%;
  pointer-events: none;
}
.hero__float--1 { width: 320px; height: 320px; right: -80px; top: 18%; opacity: .5; }
.hero__float--2 { width: 160px; height: 160px; left: 6%; bottom: 24%; opacity: .3; }

/* ---------------------------------------------------------- Marquee */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-1);
  padding-block: 22px;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__item {
  font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic;
  color: var(--text-dim);
  padding-inline: clamp(20px, 4vw, 46px);
  white-space: nowrap;
}
.marquee__item::after { content: "✦"; color: var(--gold); margin-left: clamp(20px,4vw,46px); font-style: normal; font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------------- About block */
.about-editorial { position: relative; }
.about-editorial__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 6vw, 90px); align-items: center;
}
.about-editorial__statement {
  font-family: var(--f-display); font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05;
  margin-bottom: 30px;
}
.about-editorial__statement em { color: var(--gold-2); }
.about-editorial__media { position: relative; }
.about-editorial__media img { width: 100%; border-radius: var(--radius-lg); }
.about-editorial__media--stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.about-editorial__media--stack img:first-child { grid-row: span 2; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; left: -34px; bottom: 34px;
  background: var(--bg-elev); border: 1px solid var(--line-2);
  padding: 20px 26px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.about-badge strong { font-family: var(--f-display); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; }
.about-badge span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); }
.stat-row { display: flex; gap: clamp(24px,5vw,54px); margin-top: 40px; flex-wrap: wrap; }
.stat-row__item strong { font-family: var(--f-display); font-size: 2.6rem; color: var(--text); display: block; line-height: 1; }
.stat-row__item span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); }

/* ---------------------------------------------------------- Services */
.svc-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.svc-card {
  position: relative; grid-column: span 4;
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.svc-card:nth-child(4n+1) { grid-column: span 5; }
.svc-card:nth-child(4n+2) { grid-column: span 7; }
.svc-card:nth-child(4n+3) { grid-column: span 7; }
.svc-card:nth-child(4n+4) { grid-column: span 5; }
.svc-card:hover { border-color: var(--line-3); transform: translateY(-4px); }
.svc-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter .6s var(--ease);
  filter: grayscale(.2) brightness(.86);
}
.svc-card:hover .svc-card__media img { transform: scale(1.07); filter: grayscale(0) brightness(1); }
.svc-card__tag {
  position: absolute; top: 16px; left: 16px;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  background: rgba(11,11,13,.6); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: var(--gold-2);
  padding: 6px 12px;
}
.svc-card__body { padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card__name { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.svc-card__desc { color: var(--text-dim); font-size: .95rem; flex: 1; }
.svc-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
.svc-card__meta { display: flex; flex-direction: column; }
.svc-card__price { font-family: var(--f-display); font-size: 1.3rem; color: var(--gold); }
.svc-card__dur { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.svc-card__go {
  width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-content: center; color: var(--text);
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.svc-card:hover .svc-card__go { background: var(--gold); color: #0b0b0d; transform: rotate(-45deg); }

/* horizontal scroller variant (mobile / services strip) */
.svc-scroller {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 16px; margin-inline: calc(clamp(20px,5vw,56px) * -1); padding-inline: clamp(20px,5vw,56px);
  scrollbar-width: none;
}
.svc-scroller::-webkit-scrollbar { display: none; }
.svc-scroller .svc-card { flex: 0 0 82%; scroll-snap-align: start; }

/* ------------------------------------------------------- Why choose us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.why-item {
  background: var(--bg-1); padding: clamp(30px, 4vw, 52px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .5s var(--ease);
}
.why-item:hover { background: var(--bg-3); }
.why-item__num { font-family: var(--f-display); font-size: 1rem; color: var(--gold); letter-spacing: .1em; }
.why-item__icon { font-size: 1.6rem; color: var(--gold); }
.why-item h3 { font-size: 1.5rem; }
.why-item p { color: var(--text-dim); font-size: .94rem; }

/* --------------------------------------------------- Full-width image */
.fw-image {
  position: relative; min-height: 78vh; display: grid; place-content: center; text-align: center;
  overflow: hidden;
}
.fw-image__bg { position: absolute; inset: 0; z-index: 0; }
.fw-image__bg img { width: 100%; height: 120%; object-fit: cover; }
.fw-image__bg::after { content: ""; position: absolute; inset: 0; background: rgba(11,11,13,.58); }
.fw-image__content { position: relative; z-index: 2; padding: 40px 20px; }
.fw-image__content h2 { font-size: clamp(2.4rem, 8vw, 6rem); line-height: 1; }
.fw-image__content .eyebrow { margin-bottom: 22px; }

/* ---------------------------------------------------------- Gallery */
.gal-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: clamp(10px, 1.6vw, 18px);
}
.gal-item { position: relative; overflow: hidden; background: var(--bg-3); cursor: pointer; }
/* Let every pointer event on a tile fall through to the <a>, so the cursor is a
   consistent pointer whether it is over the image, the caption or the overlay. */
.gal-item > * { pointer-events: none; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); filter: brightness(.9); }
.gal-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,13,.8));
  opacity: 0; transition: opacity .5s var(--ease);
}
.gal-item:hover::after { opacity: 1; }
.gal-item__cap {
  position: absolute; left: 18px; bottom: 14px; right: 18px; z-index: 2;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text);
  transform: translateY(10px); opacity: 0; transition: .5s var(--ease);
}
.gal-item:hover .gal-item__cap { transform: translateY(0); opacity: 1; }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }
.gal-item--big  { grid-row: span 2; grid-column: span 2; }

/* full gallery page grid + filters */
.gal-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.gal-filter {
  padding: .7em 1.4em; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--line-2); color: var(--text-dim);
  transition: .4s var(--ease);
}
.gal-filter.is-active, .gal-filter:hover { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }
.gal-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 22px); }
.gal-page-grid .gal-item { aspect-ratio: 4/5; }
.gal-page-grid .gal-item.is-hidden { display: none; }

/* --------------------------------------------------- GLightbox overrides
   Keep the viewer above every fixed element, give the image a clear
   zoom-out cursor, and make the close / prev / next controls sit on top
   of the photo with a comfortable tap target (mobile). */
.glightbox-container { z-index: 100000 !important; }
.glightbox-container .goverlay { background: rgba(8,8,10,.94); }
.glightbox-container .gslide-image img { cursor: zoom-out; }
.glightbox-container .gslide-media { box-shadow: 0 30px 90px rgba(0,0,0,.6); }
.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
  z-index: 100001; cursor: pointer;
  width: 46px; height: 46px;
  background: rgba(20,20,24,.72);
  border-radius: 50%;
  opacity: 1;
}
.glightbox-container .gclose svg,
.glightbox-container .gnext svg,
.glightbox-container .gprev svg { width: 20px; height: 20px; }
.glightbox-container .gclose:hover,
.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover { background: var(--gold); }
.glightbox-container .gclose:hover svg path,
.glightbox-container .gnext:hover svg path,
.glightbox-container .gprev:hover svg path { fill: #0b0b0d; }
.glightbox-container .gslide-description { background: var(--bg-1); }
.glightbox-container .gslide-desc,
.glightbox-container .gslide-title { color: var(--text); }
.gslide-description .gslide-title { font-family: var(--f-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0; }
.glightbox-clean .gslide-description { padding: 16px 20px; }

/* ------------------------------------------------------------- Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); }
.team-card { position: relative; overflow: hidden; background: var(--bg-3); }
.team-card__media { aspect-ratio: 3/4; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.82); transition: transform 1s var(--ease-out), filter .6s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.team-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(11,11,13,.92));
}
.team-card__name { font-size: 1.35rem; }
.team-card__role { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.team-card__bio {
  color: var(--text-dim); font-size: .86rem; margin-top: 10px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .6s var(--ease), opacity .5s var(--ease), margin-top .5s var(--ease);
}
.team-card:hover .team-card__bio { max-height: 160px; opacity: 1; }

/* ---------------------------------------------------------- Reviews */
.reviews-slider { overflow: hidden; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 18px; height: 100%;
}
.review-card__quote { font-family: var(--f-display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.review-card__text { font-family: var(--f-display); font-size: clamp(1.15rem, 2vw, 1.5rem); font-style: italic; color: var(--text); line-height: 1.5; flex: 1; }
.review-card__meta { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bg-elev);
  display: grid; place-content: center; font-family: var(--f-display); font-size: 1.2rem; color: var(--gold);
  border: 1px solid var(--line-2); flex: 0 0 auto; overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__who strong { display: block; font-family: var(--f-body); font-weight: 500; font-size: .95rem; letter-spacing: .04em; }
.review-card__who span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); }
.stars { color: var(--gold); font-size: .82rem; letter-spacing: 2px; }
.stars .fa-regular { color: var(--line-3); }

.reviews-nav { display: flex; gap: 10px; margin-top: 34px; }
.reviews-nav button {
  width: 48px; height: 48px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-content: center; color: var(--text);
  transition: .4s var(--ease);
}
.reviews-nav button:hover { background: var(--gold); color: #0b0b0d; border-color: var(--gold); }

/* ----------------------------------------------------- Working hours */
.hours-list { border-top: 1px solid var(--line); }
.hours-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.hours-list li.is-today { color: var(--gold); }
.hours-list li.is-today .hours-list__day::after { content: " · Today"; color: var(--gold); font-size: .7em; letter-spacing: .12em; }
.hours-list__day { font-family: var(--f-display); font-size: 1.3rem; }
.hours-list__time { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); text-align: right; }
.hours-list li.is-today .hours-list__time { color: var(--gold); }
.open-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--text-dim);
}
.open-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--text-mute); }
.open-pill.is-open { color: #9ede9e; border-color: rgba(120,220,120,.3); }
.open-pill.is-open::before { background: #7ede7e; box-shadow: 0 0 8px #7ede7e; }

/* --------------------------------------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-info__row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info__row:first-child { border-top: 1px solid var(--line); }
.contact-info__ico {
  width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-content: center; color: var(--gold);
}
.contact-info__row h4 { font-family: var(--f-body); font-weight: 500; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 5px; }
.contact-info__row p, .contact-info__row a { font-size: 1.02rem; color: var(--text); }
.map-embed { border: 1px solid var(--line); overflow: hidden; border-radius: var(--radius); }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; display: block; filter: grayscale(.4) invert(.9) contrast(.9); }

/* ------------------------------------------------------------ Forms */
.form-card {
  background: var(--bg-card); border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 10px;
}
.field .req { color: var(--gold); }
.input, .textarea, .select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line-3);
  padding: 15px 16px; color: var(--text); font-size: .98rem;
  border-radius: 8px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--text-mute); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); background: var(--bg-elev); box-shadow: 0 0 0 3px var(--gold-glow); }
.textarea { min-height: 130px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a86a' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-error { color: #ef9a9a; font-size: .8rem; margin-top: 6px; display: block; }
.input.is-invalid, .textarea.is-invalid, .select.is-invalid { border-color: #ef9a9a; }

.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 6px; }
.rating-input input { position: absolute; opacity: 0; width: 0; }
.rating-input label { font-size: 1.5rem; color: var(--line-3); cursor: pointer; transition: color .2s, transform .2s; margin: 0; }
.rating-input label:hover, .rating-input label:hover ~ label,
.rating-input input:checked ~ label { color: var(--gold); }
.rating-input label:hover { transform: scale(1.15); }

.form-note { font-size: .82rem; color: var(--text-mute); margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success {
  text-align: center; padding: clamp(30px, 6vw, 60px);
  border: 1px solid var(--line-2); background: var(--bg-card);
}
.form-success__ico {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-content: center; font-size: 1.6rem;
  color: var(--gold); border: 1px solid var(--gold);
}

/* --------------------------------------------------------------- CTA */
.cta-final {
  position: relative; text-align: center; overflow: hidden;
  padding-block: clamp(90px, 14vw, 180px);
}
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,.8), rgba(11,11,13,.92)); }
.cta-final__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; }
.cta-final h2 { font-size: clamp(2.6rem, 8vw, 6rem); line-height: 1; margin-bottom: 24px; }
.cta-final p { margin-bottom: 40px; }

/* ------------------------------------------------------------ Footer */
.site-footer { background: var(--bg-1); border-top: 1px solid var(--line); padding-block: clamp(56px, 8vw, 96px) 40px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 56px); }
.footer-brand { display: inline-block; font-family: var(--f-display); font-size: 1.6rem; letter-spacing: .05em; margin-bottom: 20px; }
.footer-brand img { max-height: 44px; }
.site-footer__desc { color: var(--text-dim); font-size: .92rem; max-width: 40ch; }
.site-footer__social { display: flex; gap: 12px; margin-top: 24px; }
.site-footer__social a {
  width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 50%;
  display: grid; place-content: center; color: var(--text-dim);
  transition: .4s var(--ease);
}
.site-footer__social a:hover { color: #0b0b0d; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.site-footer__h { font-family: var(--f-body); font-weight: 500; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 20px; }
.site-footer__col ul li { margin-bottom: 12px; }
.site-footer__col ul a { color: var(--text-dim); font-size: .92rem; transition: color .3s var(--ease); }
.site-footer__col ul a:hover { color: var(--gold); }
.site-footer__address p { color: var(--text-dim); font-size: .9rem; margin-bottom: 12px; display: flex; gap: 10px; }
.site-footer__address i { color: var(--gold); margin-top: 4px; }
.site-footer__hours { margin-top: 20px; }
.site-footer__hours li { display: flex; justify-content: space-between; gap: 12px; font-size: .8rem; color: var(--text-mute); padding: 5px 0; }
.site-footer__bottom {
  margin-top: clamp(40px, 6vw, 70px); padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--text-mute);
}
.site-footer__credit a { color: var(--text-dim); }
.site-footer__credit a:hover { color: var(--gold); }

/* -------------------------------------------------- Floating contact */
.floating-contact { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.floating-contact__menu { display: flex; flex-direction: column; gap: 10px; }
.floating-contact__menu[hidden] { display: none; }
.floating-contact__item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-elev); border: 1px solid var(--line-2);
  padding: 10px 16px; border-radius: 999px;
  font-size: .78rem; letter-spacing: .06em; color: var(--text);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.8);
  animation: fcIn .4s var(--ease) backwards;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.floating-contact__item:hover { transform: translateX(-4px); border-color: var(--gold); }
.floating-contact__item i { font-size: 1rem; }
.floating-contact__item--wa i { color: #4ade80; }
.floating-contact__item--call i { color: var(--gold); }
.floating-contact__item:nth-child(2) { animation-delay: .06s; }
@keyframes fcIn { from { opacity: 0; transform: translateY(10px); } }
.floating-contact__toggle {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); color: #0b0b0d;
  display: grid; place-content: center; font-size: 1.3rem;
  box-shadow: 0 14px 40px -8px var(--gold-glow);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.floating-contact__toggle:hover { transform: scale(1.06); }
.floating-contact__ico { grid-area: 1/1; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.floating-contact__ico--close { opacity: 0; transform: rotate(-90deg) scale(.5); }
.floating-contact.is-open .floating-contact__ico--open { opacity: 0; transform: rotate(90deg) scale(.5); }
.floating-contact.is-open .floating-contact__ico--close { opacity: 1; transform: rotate(0) scale(1); }
.floating-contact__pulse {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--gold);
  animation: fcPulse 2.6s var(--ease) infinite;
}
@keyframes fcPulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

/* ------------------------------------------------------ Sticky CTA bar */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 850;
  display: none; grid-template-columns: 1fr 1.2fr 1fr; gap: 8px;
  background: rgba(17,17,22,.82); backdrop-filter: blur(16px);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 8px;
  transform: translateY(140%); transition: transform .5s var(--ease);
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 9px 4px; border-radius: 10px;
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim);
}
.sticky-cta__item i { font-size: 1rem; color: var(--gold); }
.sticky-cta__item--primary { background: var(--gold); color: #0b0b0d; }
.sticky-cta__item--primary i { color: #0b0b0d; }

/* --------------------------------------------------------- Back to top */
.to-top {
  position: fixed; right: 20px; bottom: 88px; z-index: 880;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--bg-elev); color: var(--text);
  display: grid; place-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .4s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #0b0b0d; }

/* ------------------------------------------------------------- Flash */
.flash-stack { position: fixed; top: calc(var(--header-h) + 14px); left: 50%; transform: translateX(-50%); z-index: 1500; width: min(92vw, 460px); display: flex; flex-direction: column; gap: 10px; }
.flash {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-elev); border: 1px solid var(--line-2);
  border-left: 3px solid var(--gold);
  padding: 14px 16px; border-radius: 10px; font-size: .88rem;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.85);
  animation: flashIn .4s var(--ease);
}
.flash--success { border-left-color: #6ee7a8; }
.flash--error { border-left-color: #ef9a9a; }
.flash i { color: var(--gold); }
.flash--success i { color: #6ee7a8; }
.flash--error i { color: #ef9a9a; }
.flash span { flex: 1; }
.flash__x { color: var(--text-mute); font-size: 1.2rem; line-height: 1; }
@keyframes flashIn { from { opacity: 0; transform: translateY(-12px); } }

/* --------------------------------------------------------- Empty state */
.empty-state {
  text-align: center; padding: clamp(40px, 8vw, 90px) 20px;
  border: 1px dashed var(--line-2); border-radius: var(--radius);
  color: var(--text-dim);
}
.empty-state i { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.empty-state h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--text); }

/* -------------------------------------------------------- Page hero */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(60px, 10vw, 120px)); padding-bottom: clamp(50px, 8vw, 90px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; opacity: .28; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,.4), var(--bg)); z-index: 1; }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.8rem, 9vw, 6rem); line-height: 1; margin-block: 20px 18px; }
.breadcrumbs { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--gold); }

/* --------------------------------------------------------------- 404 */
.err-page { min-height: 100svh; display: grid; place-content: center; text-align: center; padding: 40px 20px; }
.err-code { font-family: var(--f-display); font-size: clamp(7rem, 28vw, 20rem); line-height: .8; color: var(--text); position: relative; }
.err-code span { color: var(--gold); }
.err-page p { max-width: 460px; margin: 24px auto 34px; }

/* ---------------------------------------------------- Reveal on scroll
   Elements are only hidden when JS is confirmed running (html.js). If JS
   is disabled or main.js fails to load, an inline <head> failsafe adds
   html.reveal-all after a few seconds so content can never stay hidden. */
html.js [data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js [data-reveal="fade"] { transform: none; }
html.js [data-reveal="left"] { transform: translateX(-46px); }
html.js [data-reveal="right"] { transform: translateX(46px); }
html.js [data-reveal="scale"] { transform: scale(.92); }
html.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
/* show rules — specificity matches the html.js hide rules above, placed after */
html.js [data-reveal].is-in,
html.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
html.reveal-all [data-reveal],
html.reveal-all [data-reveal-stagger] > *,
html.reveal-all .reveal-mask > span { opacity: 1 !important; transform: none !important; }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .19s; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .26s; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .33s; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .40s; }
[data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: .47s; }
[data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: .54s; }

.reveal-mask { overflow: hidden; display: inline-block; }
html.js .reveal-mask > span { display: inline-block; transform: translateY(105%); transition: transform 1s var(--ease); }
html.js .is-in .reveal-mask > span,
html.js .reveal-mask.is-in > span { transform: translateY(0); }

/* --------------------------------------------------------- Utilities */
.mt-section { margin-top: clamp(40px, 6vw, 80px); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 60ch; }
.d-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,4vw,48px); }
.gap-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1200px) {
  .svc-card, .svc-card:nth-child(n) { grid-column: span 6 !important; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  :root { --header-h: 72px; }
  .site-nav, .header-book { display: none; }
  .nav-toggle { display: block; }
  .about-editorial__grid { grid-template-columns: 1fr; }
  .about-badge { left: auto; right: 20px; bottom: -24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .gal-page-grid { grid-template-columns: repeat(2, 1fr); }
  .d-grid-2 { grid-template-columns: 1fr; }
  .to-top { bottom: 150px; }
}

@media (max-width: 768px) {
  body { font-size: .96rem; }
  .section { padding-block: clamp(56px, 14vw, 90px); }
  .svc-card, .svc-card:nth-child(n) { grid-column: span 12 !important; }
  .svc-grid--home { display: none; }        /* homepage swaps its grid for the scroller */
  .svc-scroller { display: flex; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-card__bio { display: none; }
  .gal-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-item--big { grid-column: span 2; grid-row: span 2; }
  .gal-item--wide { grid-column: span 2; }
  .fw-image { min-height: 60vh; }
  .hero { min-height: 92svh; }
  .sticky-cta { display: grid; }
  .floating-contact { bottom: 84px; }
  .to-top { bottom: 154px; right: 16px; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
  .field-row { grid-template-columns: 1fr; }
  .flash-stack { top: auto; bottom: 100px; }
}

@media (min-width: 769px) {
  .svc-scroller { display: none; }
  .svc-grid, .svc-grid--home { display: grid; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .gal-page-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 24px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .about-editorial__media--stack { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  /* Full-width uppercase buttons don't fit two-up on a phone — stack them. */
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; flex: 0 0 auto; }
  .gap-btns .btn { flex: 1 1 100%; justify-content: center; }
  .btn { letter-spacing: .12em; padding-inline: 1.4em; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .reveal-mask > span { transform: none !important; }
  .marquee__track { animation: none !important; }
  .preloader { display: none !important; }
  .hero__media img { transform: none !important; }
}
