/* ============================================================
   Pétale Nail Studio · Nude minimal editorial
   Digital Bee — demo estático (tier esencial)
   ============================================================ */

:root {
  --bg: #F6F1EA;
  --surface: #FFFFFF;
  --fg: #2E2A24;
  --muted: #6B6254;         /* AA en bg (5.3), bg-deep (4.9) y surface (6.0) */
  --accent: #B98A6E;        /* claro: solo bordes, hairlines, SVG decorativo */
  --accent-dark: #86593F;   /* AA en bg (5.3), bg-deep (4.9) y surface (6.0): enlaces, labels, iconos texto */
  --line: #E3D9CC;

  --bg-deep: #EFE7DB;
  --shadow-soft: 0 18px 48px -28px rgba(46, 42, 36, 0.30);
  --shadow-card: 0 24px 60px -34px rgba(46, 42, 36, 0.35);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.30, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--fg);
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(140, 95, 69, 0.18); color: var(--fg); }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Shared atoms ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.btn {
  --btn-py: 0.92rem;
  --btn-px: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out),
              background-color 0.4s var(--ease),
              color 0.4s var(--ease),
              border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--fg);
  color: #F8F3EC;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: #423b32;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateY(-2px);
}
.btn--wa {
  background: #25D366;
  color: #06351b;
  box-shadow: 0 16px 34px -18px rgba(7, 94, 47, 0.6);
}
.btn--wa:hover {
  background: #1fbf5b;
  transform: translateY(-2px);
}
.btn__wa-ico { display: inline-flex; }

/* ---------- DEMO bar ---------- */
.db-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 34px;
  z-index: 90;
  background: var(--fg);
  color: #EDE6DB;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.db-bar__txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.db-bar__link {
  flex: none;
  font-weight: 600;
  color: #F4D9C6;
  border-bottom: 1px solid rgba(244, 217, 198, 0.45);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.db-bar__link:hover { color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 34px;
  inset-inline: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem var(--pad);
  background: rgba(246, 241, 234, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease),
              padding 0.4s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(246, 241, 234, 0.92);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__mark { display: inline-flex; }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__name em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82em;
  margin-left: 0.3em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav__links a:not(.nav__cta) {
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent-dark);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover { color: var(--fg); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease);
}
.nav__cta:hover { border-color: var(--accent); background: var(--surface); }

/* ---------- Layout helpers ---------- */
main { display: block; }
section { position: relative; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(4rem, 9vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__petal {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__petal svg { width: 100%; height: 100%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(98deg,
    var(--bg) 0%,
    var(--bg) 34%,
    rgba(246, 241, 234, 0.74) 50%,
    rgba(246, 241, 234, 0.05) 78%);
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero__copy { max-width: 38rem; }
.hero__title {
  font-size: clamp(3.1rem, 9vw, 6.4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.6rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-dark);
}
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--fg);
  max-width: 33rem;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 3.2rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 36rem;
}
.hero__stats li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--fg);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 12px;
  background: var(--accent-dark);
  animation: scrollDrop 2.4s var(--ease) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-14px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}

/* ---------- Story ---------- */
.story {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.story__card {
  position: relative;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  aspect-ratio: 34 / 40;
}
.story__art { width: 100%; height: 100%; }
.story__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.story__copy h2 em { font-style: italic; color: var(--accent-dark); font-weight: 400; }
.story__copy > p {
  color: var(--fg);
  margin-bottom: 1.2rem;
  max-width: 34rem;
}
.story__copy > p:last-of-type { color: var(--muted); }
.story__points {
  margin-top: 2.2rem;
  display: grid;
  gap: 1rem;
}
.story__points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--fg);
}
.story__ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--line);
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.services__head {
  max-width: var(--maxw);
  margin: 0 auto 3.4rem;
  text-align: center;
}
.services__head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 16ch;
  margin: 0 auto 1.1rem;
}
.services__intro {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto;
}
.services__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.6vw, 1.4rem);
}
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.1rem 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease),
              border-color 0.5s var(--ease);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.svc__ico {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.svc h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.svc p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
  flex: 1;
}
.svc__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.svc__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg);
}
.svc__time {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: lowercase;
}

/* ---------- Process ---------- */
.process {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.process__head { margin-bottom: 3.4rem; max-width: 40rem; }
.process__head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.step {
  position: relative;
  padding-top: 2.6rem;
  border-top: 1px solid var(--line);
}
.step__n {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
}
.step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 38px; height: 2px;
  background: var(--accent);
}
.step h3 {
  font-size: 1.32rem;
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---------- Reviews / Confianza ---------- */
.reviews {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.reviews__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  text-align: center;
}
.reviews__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.4rem;
}
.reviews__score {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.reviews__score-n {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
}
.reviews__score-stars { color: var(--accent-dark); letter-spacing: 0.12em; font-size: 0.95rem; }
.reviews__score-l { font-size: 0.82rem; color: var(--muted); }
.reviews__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.9rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.review__stars-row { color: var(--accent-dark); letter-spacing: 0.16em; font-size: 0.95rem; }
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.008em;
}
.review figcaption {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.reviews__badges {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.reviews__badges li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
}
.badge__ico { flex: none; display: inline-flex; }

/* ---------- Location ---------- */
.location {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.location__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.3rem;
}
.location__lede {
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 2.2rem;
}
.location__info { display: grid; gap: 1.3rem; }
.location__info li {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--muted);
}
.location__info strong { color: var(--fg); font-weight: 600; }
.location__ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  margin-top: 1px;
}
.location__map {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  aspect-ratio: 42 / 36;
}
.location__art { width: 100%; height: 100%; }

/* ---------- Contact / Reserva ---------- */
.contact {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.contact__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.3rem;
}
.contact__copy > p {
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 2rem;
}
.contact__wa { align-self: flex-start; }

/* ---------- Form ---------- */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1.1rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 0.95rem;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #8a8070; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(140, 95, 69, 0.14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238C5F45' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.form__submit {
  width: 100%;
  margin-top: 0.4rem;
}
.form__note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
.form__note.is-ok { color: var(--accent-dark); font-weight: 500; }

/* ---------- Digital Bee CTA ---------- */
.db-cta {
  background: var(--fg);
  color: #F1E9DD;
  padding: clamp(4.5rem, 10vh, 7rem) var(--pad);
  text-align: center;
}
.db-cta__inner { max-width: 44rem; margin: 0 auto; }
.db-cta .eyebrow { color: #E4B89C; }
.db-cta .eyebrow::before { background: #E4B89C; }
.db-cta h2 {
  color: #FBF6EF;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1.1rem;
}
.db-cta__lede {
  color: #C9BFB1;
  font-size: 1.05rem;
  max-width: 40ch;
  margin: 0 auto 2.2rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  padding: clamp(3.5rem, 7vh, 5rem) var(--pad) 2rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__brand .nav__mark { margin-bottom: 0.2rem; }
.footer__tag {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.92rem;
}
.footer__nav a {
  color: var(--muted);
  transition: color 0.3s var(--ease);
  width: max-content;
}
.footer__nav a:hover { color: var(--fg); }
.footer__meta {
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
  align-content: start;
}
.footer__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__base a {
  color: var(--accent-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.footer__base a:hover { border-color: var(--accent-dark); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 95;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(7, 94, 47, 0.55);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px -10px rgba(7, 94, 47, 0.6);
}

/* ============================================================
   Reveal (FOUC-safe: hidden only under html.js-on)
   ============================================================ */
.js-on .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.js-on .reveal.is-in {
  opacity: 1;
  transform: none;
}
.js-on [data-rv].reveal { transition-delay: var(--rv-delay, 0ms); }

@media (prefers-reduced-motion: reduce) {
  .js-on .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__scroll-line::after { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .services__grid,
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__badges { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav { gap: 0.8rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .story__grid,
  .location__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .story__media,
  .location__map { max-width: 30rem; }
  .hero__copy { max-width: 100%; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(246, 241, 234, 0.55) 0%,
      var(--bg) 46%,
      var(--bg) 100%);
  }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .services__grid,
  .reviews__grid,
  .reviews__badges,
  .process__steps,
  .form__row { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.4rem 2rem; }
  .db-bar__txt { font-size: 0.66rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { justify-content: flex-start; }
}
