/* ============================================
   StudioBooth13 — Feuille de style partagée
   Location Photobooth & Cabine 360° à Marseille
   Thème : clair + doré, élégant & festif · SF Pro
   ============================================ */

:root {
  /* Couleurs */
  --bg: #faf7f1;
  --bg-2: #f3ede2;
  --surface: #ffffff;
  --ink: #1c1a17;
  --ink-2: #2e2a24;
  --muted: #6b6459;
  --muted-2: #9a9183;
  --gold: #c2982f;
  --gold-deep: #a07b1f;
  --gold-soft: #e7cf94;
  --gold-pale: #faf2dd;
  --line: rgba(28, 26, 23, 0.09);
  --line-soft: rgba(28, 26, 23, 0.06);

  --grad-gold: linear-gradient(135deg, #d9b65e, #b8893a);
  --grad-gold-soft: linear-gradient(135deg, #f3e2b0, #d9b65e);

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 8px 24px -14px rgba(28, 26, 23, 0.25);
  --shadow: 0 24px 50px -28px rgba(28, 26, 23, 0.35);
  --shadow-gold: 0 18px 40px -16px rgba(184, 137, 58, 0.45);

  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* SF Pro en priorité, display géométrique en repli pour la marque/titres */
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Outfit",
    "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

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

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 840px; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Boutons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn--primary { background: var(--grad-gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(184, 137, 58, 0.6); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold-soft); }
.btn--light { background: rgba(255, 255, 255, 0.15); color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--light:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-3px); }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; }
.brand__logo { height: 40px; width: auto; display: block; }
.footer .brand__logo { height: 44px; }
.brand__name { color: var(--ink); }
.brand__name b { color: var(--gold-deep); font-weight: 800; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { color: var(--muted); font-weight: 500; font-size: 0.96rem; transition: color 0.2s; position: relative; }
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--gold-deep); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad-gold); border-radius: 2px;
}
.nav__cta {
  background: var(--grad-gold);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(820px 460px at 82% -8%, rgba(217, 182, 94, 0.28), transparent 60%),
    radial-gradient(620px 460px at 0% 12%, rgba(231, 207, 148, 0.25), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--bg));
  overflow: hidden;
}
.hero--page { padding: 140px 0 70px; }
.hero__inner { position: relative; z-index: 2; max-width: 860px; }
.hero--center .hero__inner { margin: 0 auto; text-align: center; }
.hero__eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--gold-pale);
  border: 1px solid var(--gold-soft);
  padding: 8px 17px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  padding-bottom: 0.05em;
}
.hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 660px; margin-bottom: 36px; }
.hero--center .hero__subtitle { margin-inline: auto; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero--center .hero__actions { justify-content: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 54px; }
.hero--center .hero__stats { justify-content: center; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--gold-deep); }
.hero__stats span { color: var(--muted-2); font-size: 0.9rem; }

/* ===== Bandeau confiance ===== */
.trust { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.trust__item:first-child { color: var(--gold-deep); font-weight: 600; }
.trust__sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--tint { background: var(--bg-2); }
.section--surface { background: var(--surface); }
.section__head { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.section__head--left { text-align: left; margin-left: 0; }
.section__eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; font-weight: 700; color: var(--gold-deep); margin-bottom: 14px; }
.section__title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section__lead { color: var(--muted); font-size: 1.08rem; }

/* ===== Grilles de cartes ===== */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card--featured { border-color: var(--gold-soft); box-shadow: var(--shadow-gold); }
.card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #fff; font-size: 0.78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.card__icon {
  width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem;
  background: var(--gold-pale); border: 1px solid var(--gold-soft); border-radius: 16px; margin-bottom: 20px;
}
.card__title { font-size: 1.4rem; margin-bottom: 11px; }
.card__text { color: var(--muted); font-size: 0.98rem; }

/* visuel produit (placeholder dégradé) */
.product__img { height: 210px; border-radius: var(--radius-sm); margin-bottom: 22px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 16px; }
.product__img span { position: relative; z-index: 2; background: rgba(28,26,23,0.5); color: #fff; font-size: 0.85rem; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.product__img--1 { background: linear-gradient(135deg, #e7cf94, #c2982f); }
.product__img--2 { background: linear-gradient(135deg, #d8c2a0, #8a6f4a); }
.product__img--3 { background: linear-gradient(135deg, #f0d9a0, #b8893a); }

/* Photos réelles (logo + visuels produits) */
.hero__logo { height: 96px; width: auto; margin: 0 auto 26px; display: block; }
.product__photo { width: 100%; height: 210px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 22px; border: 1px solid var(--line); display: block; }
.split__photo { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
/* Recadrage : afficher le haut de l'image (ex. photobooth vintage en portrait) */
.product__photo.is-top, .split__photo.is-top { object-position: center 28%; }

/* ===== Liste à puces dorées ===== */
.checklist { display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 30px; color: var(--muted); font-size: 0.98rem; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: var(--grad-gold); color: #fff; border-radius: 50%; font-size: 0.7rem; font-weight: 700;
}

/* ===== Split (texte + visuel) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__visual { height: 100%; min-height: 360px; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.split__visual span { position: absolute; bottom: 18px; left: 18px; z-index: 2; background: rgba(28,26,23,0.5); color: #fff; font-size: 0.85rem; padding: 6px 13px; border-radius: 999px; backdrop-filter: blur(4px); }
.split__visual--wood { background: linear-gradient(135deg, #d8c2a0, #8a6f4a); }
.split__visual--gold { background: linear-gradient(135deg, #f0d9a0, #b8893a); }
.split__visual--360 { background: linear-gradient(135deg, #efe0bb, #b8893a); }
.split__visual--keys { background: linear-gradient(135deg, #e7cf94, #a07b1f); }
.split h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 18px; }

/* ===== Étapes ===== */
.steps__list { display: grid; gap: 26px; counter-reset: step; }
.steps__list--3 { grid-template-columns: repeat(3, 1fr); }
.steps__list--4 { grid-template-columns: repeat(4, 1fr); }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step__num { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--grad-gold); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 18px; box-shadow: var(--shadow-gold); }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== Galerie ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 18px; }
.gallery__item { border-radius: var(--radius-sm); position: relative; overflow: hidden; border: 1px solid var(--line); display: flex; align-items: flex-end; padding: 16px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease); }
.gallery__item span { position: relative; z-index: 2; font-weight: 500; font-size: 0.9rem; color: #fff; background: rgba(28,26,23,0.5); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.gallery__item::before { content: ""; position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.gallery__item:hover::before { transform: scale(1.08); }
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item--1::before { background: linear-gradient(135deg, #e7cf94, #b8893a); }
.gallery__item--2 { grid-row: span 2; }
.gallery__item--2::before { background: linear-gradient(160deg, #d8c2a0, #8a6f4a); }
.gallery__item--3::before { background: linear-gradient(135deg, #f0d9a0, #c2982f); }
.gallery__item--4::before { background: linear-gradient(135deg, #efe0bb, #a07b1f); }
.gallery__item--5 { grid-column: span 2; }
.gallery__item--5::before { background: linear-gradient(120deg, #e7cf94, #8a6f4a); }
.gallery__item--6::before { background: linear-gradient(135deg, #f3e2b0, #b8893a); }
.gallery__cta { text-align: center; margin-top: 36px; }

/* ===== Témoignages ===== */
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.testimonial__stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1.01rem; margin-bottom: 16px; color: var(--ink-2); }
.testimonial figcaption { color: var(--gold-deep); font-weight: 600; font-size: 0.92rem; }

/* ===== Tarifs ===== */
.pricing-group { margin-bottom: 70px; }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group__head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.pricing-group__head h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.pricing-group__head p { color: var(--muted); }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { border-color: var(--gold-soft); box-shadow: var(--shadow-gold); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-gold); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.plan__name { font-size: 1.3rem; margin-bottom: 12px; }
.plan__detail { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.plan__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.plan__price strong { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--gold-deep); }
.plan__price del { color: var(--muted-2); font-size: 1.2rem; }
.plan__features { display: grid; gap: 11px; margin-bottom: 28px; flex-grow: 1; }
.plan__features li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.93rem; }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* tableau tarifs */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface); }
.price-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table thead th { background: var(--gold-pale); font-family: var(--font-display); font-size: 0.9rem; color: var(--ink); letter-spacing: 0.02em; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td:first-child { font-weight: 600; color: var(--ink); }
.price-table .price-cell strong { color: var(--gold-deep); font-size: 1.15rem; font-family: var(--font-display); }
.price-table .price-cell del { color: var(--muted-2); margin-right: 8px; }

/* options / suppléments */
.options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.option { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.option__price { font-family: var(--font-display); color: var(--gold-deep); font-weight: 800; font-size: 1.3rem; }
.option h4 { font-size: 1.05rem; margin: 4px 0 6px; }
.option p { color: var(--muted); font-size: 0.9rem; }

.included-banner { background: var(--gold-pale); border: 1px solid var(--gold-soft); border-radius: var(--radius); padding: 30px 34px; margin-bottom: 56px; }
.included-banner h3 { font-size: 1.3rem; margin-bottom: 12px; }
.included-banner p { color: var(--muted); margin-bottom: 16px; }
.included-banner .checklist { grid-template-columns: repeat(2, 1fr); }

/* ===== FAQ ===== */
.faq__list { display: grid; gap: 14px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 24px; box-shadow: var(--shadow-sm); transition: border-color 0.3s; }
.faq__item[open] { border-color: var(--gold-soft); }
.faq__item summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--gold-deep); transition: transform 0.3s; font-weight: 400; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 22px; font-size: 0.98rem; }

/* ===== CTA bandeau ===== */
.cta-band { background: linear-gradient(135deg, #2a2620, #1c1a17); color: #fff; border-radius: var(--radius); padding: 60px 50px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -20%, rgba(217,182,94,0.3), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ===== Contact ===== */
.contact__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact__intro { position: sticky; top: 100px; }
.contact__intro .section__title { text-align: left; }
.contact__details { display: grid; gap: 16px; margin-top: 28px; }
.contact__details li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 1rem; }
.contact__details span { font-size: 1.2rem; }
.contact__details a:hover { color: var(--gold-deep); }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; display: grid; gap: 18px; box-shadow: var(--shadow); }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--ink); font-family: inherit; font-size: 0.96rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(194, 152, 47, 0.18); }
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.form__status { font-size: 0.94rem; min-height: 1.2em; text-align: center; }
.form__status.is-success { color: #2e8b57; }
.form__status.is-error { color: #c0392b; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: rgba(255,255,255,0.72); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer .brand__name { color: #fff; }
.footer .brand__name b { color: var(--gold-soft); }
.footer__brand p { margin-top: 16px; max-width: 320px; font-size: 0.95rem; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer__col a, .footer__col li { color: rgba(255,255,255,0.7); font-size: 0.95rem; display: block; margin-bottom: 10px; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__socials { display: flex; gap: 12px; margin-top: 14px; }
.footer__socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,0.08); font-size: 1.1rem; }
.footer__socials a:hover { background: var(--grad-gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; }
.footer__bottom p { color: rgba(255,255,255,0.5); font-size: 0.86rem; text-align: center; }

/* ===== Boutons flottants ===== */
.floating { position: fixed; right: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.floating--bottom { bottom: 20px; }
.fab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 18px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: #fff;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.4); transition: transform 0.3s var(--ease);
}
.fab:hover { transform: translateY(-3px); }
.fab__icon { width: 22px; height: 22px; flex: none; }
.fab--wa { background: #25d366; }
.fab--book { background: var(--grad-gold); }
.fab--reveal { transform: translateY(120px); }
.fab--reveal.is-visible { transform: translateY(0); }

/* ===== Reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps__list--3, .steps__list--4 { grid-template-columns: repeat(2, 1fr); }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split__visual { min-height: 280px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__intro { position: static; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--5 { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; top: 76px; right: 0; width: min(82vw, 330px); height: calc(100vh - 76px);
    flex-direction: column; align-items: flex-start; gap: 6px; padding: 26px;
    background: var(--surface); border-left: 1px solid var(--line);
    transform: translateX(110%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__cta { width: 100%; text-align: center; margin-top: 12px; }
  .nav__toggle { display: flex; }
  .section { padding: 70px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .steps__list--3, .steps__list--4 { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .options-grid { grid-template-columns: 1fr; }
  .included-banner .checklist { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__stats { gap: 28px; }
  .cta-band { padding: 44px 26px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__socials { justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--2, .gallery__item--5 { grid-column: auto; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
