/* ═══════════════════════════════════════════════════════════
   BISOU VOLÉ  - design system
   Enduit à la chaux rose-argile, arches dorées, chêne blond
   - clair, poudré, lumineux · une seule police (Bricolage Grotesque)
═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;

  /* — palette de référence (décor réel du salon) — */
  --sable:         #F5EBE0;  /* fond dominant, ~60% des surfaces */
  --creme:         #EADCCB;  /* sections alternées, cartes */
  --chene:         #E3CDB0;  /* bandeaux, bordures d'images */
  --argile-clair:  #CB8558;  /* enduit clair, dégradés — terre cuite plus soutenue */
  --argile:        #AD5A34;  /* couleur signature (titres, halos) — ton terre battue franc */
  --argile-fonce:  #7A3B22;  /* texte courant, footer, boutons — terre battue brûlée */
  --argile-fonce-2:#632D19;  /* survol des boutons, un cran plus profond */
  --dore:          #D9A86A;  /* halos de niches, filets, survols — jamais du texte */
  --kaki:          #A99A63;  /* séparateurs, micro-filets */
  --vert-fauteuil: #2C4438;  /* accents minuscules (labels), <1% de surface */
  --rouge-levres:  #C0392B;  /* réservé au logo, jamais en CSS */

  /* — tokens fonctionnels dérivés de la palette ci-dessus — */
  --text:          var(--argile-fonce);
  --title:         var(--argile);
  --accent-line:   rgba(169, 154, 99, .45);   /* kaki — filets 1px entre sections */
  --hairline:      rgba(162, 114, 102, .22);  /* argile — bordures fines génériques */
  --shadow-soft:   rgba(128, 87, 78, .12);    /* ombre teintée argile, jamais grise/noire */
  --shadow-strong: rgba(128, 87, 78, .22);
  --halo-dore:     rgba(217, 168, 106, .38);  /* halo diffus au survol (cartes, galerie) */
  --header-bg:     rgba(245, 235, 224, .86);  /* sable translucide, header au scroll */
  --scrim-sable:   rgba(245, 235, 224, .55);

  --font: 'Bricolage Grotesque', sans-serif;
  --display: 'Playfair Display', serif;

  --px:  22px;
  --pxd: 64px;
  --py:  84px;
  --pyd: 140px;
  --container: 1180px;

  --ease: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);

  /* grain d'enduit très léger, 3% d'opacité, sur les fonds colorés */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: auto; }

body {
  position: relative;
  background: var(--sable);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* grain d'enduit, fixe, non interactif, au-dessus des fonds mais sous le header */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .03;
  mix-blend-mode: multiply;
  background-image: var(--grain);
  background-size: 140px 140px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }

.inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--px); }

::selection { background: var(--argile); color: var(--sable); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reviews-track { animation-play-state: paused !important; }
}

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

/* ─────────────────────────────────────────────────────────
   LOADER
───────────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--sable);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease-soft);
}
#loader-bisou {
  width: 90px; height: auto;
  opacity: 0;
  transform: scale(.7);
  filter: drop-shadow(0 16px 32px var(--shadow-strong));
}
#loader.done { opacity: 0; pointer-events: none; }

/* ─────────────────────────────────────────────────────────
   TYPO
───────────────────────────────────────────────────────── */
h1, h2 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -.005em; color: var(--title); }

.i { font-family: var(--display); font-style: italic; font-weight: 600; color: var(--argile-fonce); }

.kicker {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--argile-fonce);
  margin-bottom: 22px;
}

h2 { font-size: clamp(32px, 5.2vw, 54px); margin-bottom: 28px; }

.body {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text);
  max-width: 460px;
  font-weight: 400;
}

/* ─────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────── */
#hd {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 20px 0;
  transition: background .4s var(--ease-soft), padding .35s var(--ease-soft), border-color .4s;
  border-bottom: 1px solid transparent;
}
#hd.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px 0;
  border-color: var(--accent-line);
}

.hd-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }

.brand { display: inline-flex; align-items: center; gap: 12px; grid-column: 1; justify-self: start; white-space: nowrap; }
.brand-mark { width: 44px; height: auto; transition: transform .3s var(--ease-soft); }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.005em; color: var(--argile-fonce); }

.nav { display: none; align-items: center; gap: 30px; grid-column: 2; justify-self: center; }
.nav a:not(.nav-cta) {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--argile-fonce);
  position: relative;
  transition: color .25s;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--argile);
  transition: width .25s var(--ease-soft);
}
.nav a:not(.nav-cta):hover { color: var(--argile); }
.nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  display: none;
  font-size: 14px; font-weight: 600;
  background: var(--argile-fonce);
  color: var(--sable) !important;
  padding: 11px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 18px var(--shadow-soft);
  transition: background .25s, box-shadow .25s, transform .2s;
  grid-column: 3;
  justify-self: end;
}
.nav-cta:hover { background: var(--argile-fonce-2); box-shadow: 0 8px 22px var(--shadow-strong); transform: translateY(-1px); }

.burger { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; z-index: 202; grid-column: 3; justify-self: end; }
.burger span { display: block; height: 2px; background: var(--argile-fonce); transition: transform .3s var(--ease), opacity .2s, width .25s, background .25s; }
.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 14px; }
.burger span:nth-child(3) { width: 22px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 20px; background: var(--argile); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 20px; background: var(--argile); }

/* header sur la photo (avant scroll) : texte clair pour rester lisible
   quelle que soit la zone de la photo derrière ; bascule en terracotta
   foncé dès que le header a un fond plein (.scrolled). */
#hd:not(.scrolled):not(.menu-open) .brand-word,
#hd:not(.scrolled):not(.menu-open) .nav a:not(.nav-cta) {
  color: var(--sable);
  text-shadow: 0 1px 10px rgba(30,14,6,.35);
}
#hd:not(.scrolled):not(.menu-open) .nav a:not(.nav-cta)::after { background: var(--sable); }
#hd:not(.scrolled):not(.menu-open) .burger span { background: var(--sable); box-shadow: 0 1px 6px rgba(30,14,6,.3); }

#mob-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--sable);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 90px var(--px) 24px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-soft);
}
#mob-menu.open { opacity: 1; pointer-events: all; }
#mob-menu a {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-weight: 700; font-size: clamp(28px, 11vw, 52px); letter-spacing: -.01em; color: var(--title);
  opacity: 0; transform: translateY(14px);
  transition: opacity .35s var(--ease-soft), transform .35s var(--ease-soft);
}
#mob-menu.open a { opacity: 1; transform: translateY(0); }
#mob-menu.open a:nth-child(1) { transition-delay: .05s; }
#mob-menu.open a:nth-child(2) { transition-delay: .1s; }
#mob-menu.open a:nth-child(3) { transition-delay: .15s; }
#mob-menu.open a:nth-child(4) { transition-delay: .2s; }
#mob-menu.open a:nth-child(5) { transition-delay: .25s; }
#mob-menu.open a:nth-child(6) { transition-delay: .3s; margin-top: 18px; }
.mob-cta {
  font-size: 14px !important; font-weight: 600 !important;
  background: var(--argile-fonce);
  color: var(--sable) !important;
  padding: 16px 28px; border-radius: 100px;
  box-shadow: 0 8px 22px var(--shadow-strong);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   BOUTONS
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 14.5px; font-weight: 600;
  padding: 16px 28px;
  border-radius: 100px;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
}
.btn i { font-style: normal; transition: transform .25s var(--ease-soft); }
.btn:hover i { transform: translateX(3px); }
.btn-fill {
  background: var(--argile-fonce);
  color: var(--sable);
  box-shadow: 0 8px 24px var(--shadow-soft);
}
.btn-fill:hover { background: var(--argile-fonce-2); box-shadow: 0 10px 30px var(--shadow-strong); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--argile-fonce); border: 1px solid var(--argile); }
.btn-ghost:hover { border-color: var(--argile-fonce); background: rgba(162,114,102,.08); }
.btn-lg { padding: 20px 38px; font-size: 15.5px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; width: 100%; }
.section-feature .cta-row { justify-content: center; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 92svh;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  overflow: hidden;
  background: var(--sable);
}
.hero-wash {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 40% at 85% 6%, rgba(217,168,106,.20) 0%, transparent 62%),
    linear-gradient(180deg,
      rgba(40,20,12,.38) 0%,
      rgba(203,133,88,.22) 16%,
      rgba(245,235,224,.40) 26%,
      rgba(245,235,224,.52) 48%,
      rgba(245,235,224,.68) 68%,
      rgba(245,235,224,.86) 84%,
      var(--sable) 100%);
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .96;
}
.hero-lips {
  position: absolute;
  z-index: 2;
  bottom: 6%; right: 4%;
  width: 160px;
  height: auto;
  opacity: .28;
  pointer-events: none;
  filter: drop-shadow(0 16px 32px var(--shadow-strong));
}
/* sous ~480px, le bisou se place derrière le bloc de texte (bottom-aligné
   comme lui) plutôt qu'en haut : opacité réduite pour que le titre et la
   description restent parfaitement lisibles devant. */
@media (min-width: 481px) {
  .hero-lips {
    top: 50%; bottom: auto; right: 6%;
    transform: translateY(-50%);
    width: clamp(140px, 22vw, 340px);
    opacity: .8;
  }
}
@media (min-width: 481px) and (max-height: 700px) {
  .hero-lips { width: 110px; opacity: .5; }
}
.hero-body { position: relative; z-index: 3; width: 100%; }
.hero-h1 { font-size: clamp(42px, 8.4vw, 92px); margin-bottom: 24px; }
.hero-sub { font-size: 17px; line-height: 1.75; color: var(--text); max-width: 420px; }

/* ─────────────────────────────────────────────────────────
   SECTIONS  - BASE
───────────────────────────────────────────────────────── */
.section { padding: var(--py) 0; position: relative; background: var(--creme); border-top: 1px solid var(--accent-line); }
.section-tint { background: var(--sable); }

/* SPLIT LAYOUT  - Le salon / Valentin */
.split-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.split-grid--reverse .split-photo { order: -1; }

.facts-row { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.fact { border-top: 1px solid var(--accent-line); padding-top: 14px; }
.fact-mark { font-size: 13px; font-weight: 700; color: var(--vert-fauteuil); display: block; margin-bottom: 6px; }
.fact p { font-size: 13.5px; color: var(--text); }

.split-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: var(--creme);
  box-shadow: 0 24px 50px var(--shadow-soft);
}
.split-photo--portrait { aspect-ratio: 3 / 4; }
.split-photo--arch {
  aspect-ratio: 3 / 4.3;
  border-radius: clamp(90px, 20vw, 200px) clamp(90px, 20vw, 200px) 8px 8px;
}
.split-photo.is-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--creme);
}
.split-photo.is-placeholder::after {
  content: 'photo à venir';
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--argile-fonce);
}
.split-photo.is-placeholder img { display: none; }

.quote {
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 34px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.36;
  color: var(--title);
  margin-bottom: 26px;
}
.quote em { font-weight: 700; font-style: italic; color: var(--argile-fonce); }

/* PRESTATIONS */
.services { margin-top: 8px; border-top: 1px solid var(--accent-line); }
.service {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--accent-line);
  border-radius: 4px;
  transition: padding-left .3s var(--ease-soft), background .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.service:hover { padding-left: 14px; background: var(--sable); box-shadow: inset 0 -18px 30px -18px var(--halo-dore); }
.service-name { font-size: clamp(19px, 3vw, 27px); font-weight: 700; flex: 1; color: var(--argile-fonce); transition: color .3s; }
.service:hover .service-name { color: var(--argile); }
.service-price { font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; }
.service-arrow {
  color: var(--argile);
  transform: translateX(-6px);
  opacity: 0;
  transition: transform .3s var(--ease-soft), opacity .3s var(--ease-soft);
}
.service:hover .service-arrow { opacity: 1; transform: translateX(0); }
.note { font-size: 14px; font-style: italic; color: var(--text); margin-top: 26px; }

/* GALERIE  - carrousel horizontal, cartes en arche comme les niches du salon */
.gallery-grid {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: clamp(30px, 9vw, 60px) clamp(30px, 9vw, 60px) 10px 10px;
  background: var(--creme);
  box-shadow: 0 0 0 1px var(--hairline);
  flex: 0 0 auto;
  width: 74vw;
  aspect-ratio: 4/5;
  scroll-snap-align: center;
  transition: box-shadow .35s var(--ease-soft), transform .35s var(--ease-soft);
}
.gallery-item img { transition: transform .5s var(--ease-soft); }
.gallery-item:hover { box-shadow: 0 0 0 1px var(--hairline), 0 20px 46px var(--halo-dore); transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.is-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: var(--creme);
}
.gallery-item.is-placeholder::after { content: '✦'; color: var(--argile-clair); font-size: 18px; }
.gallery-item.is-placeholder img { display: none; }

.insta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--argile-fonce);
  margin-top: 30px;
  transition: color .25s;
}
.insta-link:hover { color: var(--argile); }

/* AVIS  - marquee CSS deux rangées, sens opposés, comme sur polowagency.fr */
.reviews-marquee {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.reviews-track { display: flex; gap: 16px; width: max-content; margin-bottom: 16px; }
.reviews-track:last-child { margin-bottom: 0; }
.reviews-track-1 { animation: reviews-marquee-l 32s linear infinite; }
.reviews-track-2 { animation: reviews-marquee-r 26s linear infinite; }
@keyframes reviews-marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes reviews-marquee-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (hover: hover) and (pointer: fine) {
  .reviews-marquee:hover .reviews-track { animation-play-state: paused; }
}

.review-card {
  position: relative;
  flex: 0 0 auto;
  width: min(340px, 82vw);
  background: var(--creme);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 10px 26px var(--shadow-soft);
}
.review-card::before {
  content: '“';
  position: absolute;
  top: 6px; left: 18px;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--argile-clair);
  opacity: .6;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(162,114,102,.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px var(--halo-dore);
}
.review-stars { color: var(--dore); font-size: 14px; letter-spacing: .1em; margin-bottom: 16px; }
.review-card blockquote {
  position: relative;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--argile-fonce);
  flex: 1;
}
.review-card figcaption {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--accent-line);
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text);
}
.review-card--empty { align-items: center; justify-content: center; text-align: center; width: 100%; max-width: 460px; margin: 0 auto; }
.review-card--empty p { font-size: 15px; color: var(--text); line-height: 1.7; }

/* RÉSERVATION  - le moment signature, clair et chaleureux, jamais sombre */
.section-feature {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(199,152,133,.32) 0%, transparent 55%),
    radial-gradient(ellipse 46% 55% at 50% 78%, var(--halo-dore) 0%, transparent 70%),
    var(--sable);
  overflow: hidden;
}
.section-feature .inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-feature .kicker { justify-content: center; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0 8px; width: 100%; }
.pills span {
  font-size: 12.5px; font-weight: 500;
  border: 1px solid rgba(162,114,102,.35);
  background: var(--creme);
  border-radius: 100px;
  padding: 9px 16px;
  color: var(--argile-fonce);
}

/* CONTACT / FOOTER  - toujours clair, jamais sombre */
#contact { background: var(--creme); padding-bottom: 36px; border-top: 1px solid var(--accent-line); }
#contact .tag { font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--vert-fauteuil); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
.contact-block p, .contact-block a { font-size: 15px; margin-top: 8px; color: var(--argile-fonce); }
.contact-block a { transition: color .25s; }
.contact-block a:hover { color: var(--argile); }
.footer-row {
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
  padding-top: 26px; border-top: 1px solid var(--accent-line);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark { width: 34px; height: auto; }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 22px; font-style: italic; color: var(--argile-fonce); }
.footer-copy { font-size: 12px; font-weight: 500; letter-spacing: .05em; color: var(--argile-fonce); }

.footer-legal {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--accent-line);
}
.footer-legal p { font-size: 12px; color: var(--argile-fonce); }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { font-size: 12px; color: var(--argile-fonce); transition: color .25s; }
.footer-legal-links a:hover { color: var(--argile); }

/* ─────────────────────────────────────────────────────────
   STICKY CTA MOBILE
───────────────────────────────────────────────────────── */
#sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 12px 18px calc(20px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgba(245,235,224,.97) 65%, transparent);
  transform: translateY(0);
  transition: transform .35s var(--ease-soft);
}
#sticky.hide { transform: translateY(120%); }
#sticky .btn { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────
   MEDIA QUERIES
───────────────────────────────────────────────────────── */
@media (min-width: 700px) {
  .split-grid { grid-template-columns: 1fr .82fr; gap: 64px; }
  .facts-row { flex-direction: row; gap: 26px; }
  .fact { flex: 1; }
  .contact-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-row { flex-direction: row; align-items: center; justify-content: space-between; }
  .gallery-grid { gap: 16px; }
  .gallery-item { width: 320px; }
  .review-card { width: 380px; }
  .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; }
  .burger { display: none; }
  #sticky { display: none; }

  #hero { padding: 150px 0 96px; }
  .section { padding: var(--pyd) 0; }
  .service-name { font-size: 30px; }
  .brand-mark { width: 52px; }
}

@media (min-width: 1100px) {
  .inner { padding: 0 var(--pxd); }
}
