/* =============================================================
   SARA — Benessere & Massaggi
   Foglio di stile principale
   Palette: blush chiaro e marrone espresso, coerente con il logo
   ============================================================= */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic-500.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic-600.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/mulish-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --cream:        #FEEEEF;
  --cream-soft:   #FFF7F6;
  --sand:         #F3E4E1;
  --sand-deep:    #E5CFCC;
  --sage:         #A49389;
  --sage-deep:    #635750;
  --sage-soft:    #E5DCD8;
  --terra:        #B77D6D;
  --terra-soft:   #D7AAA2;
  --terra-deep:   #5A302E;
  --ink:          #32171B;
  --ink-soft:     #6A5858;
  --line:         #E8D6D3;
  --white:        #FFFCFB;

  /* Tipografia */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Mulish", "Segoe UI", system-ui, sans-serif;

  /* Ombre */
  --shadow-sm: 0 2px 10px rgba(50, 23, 27, 0.06);
  --shadow-md: 0 14px 40px rgba(50, 23, 27, 0.10);
  --shadow-lg: 0 30px 70px rgba(50, 23, 27, 0.16);

  /* Raggi */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.is-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.02rem;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
svg { display: block; }

.client-hidden {
  display: none !important;
}

.generated-icon,
.btn-icon,
.tag-icon,
.socials img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-icon,
.tag-icon,
.socials img {
  flex: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  mix-blend-mode: multiply;
}

.tag-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.38);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
  position: relative;
  scroll-margin-top: 90px;
}

.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--terra);
  display: inline-block;
}

.about-quote {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--terra-deep);
  margin-block: 1.5rem;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin-top: .8rem;
  color: var(--ink);
}
#prodotti .section-title {
  font-size: clamp(1.35rem, 5.7vw, 3.05rem);
  white-space: nowrap;
}

.section-lead {
  margin-top: 1rem;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section-title .title-line,
.section-lead--split span,
.about-copy-lines span {
  display: block;
}
.section-lead--split {
  display: grid;
  gap: .18rem;
}

.section-head { max-width: 70ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  will-change: transform;
}
.btn:active {
  transform: translateY(-1px) scale(.992);
}
.btn:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}
.btn--primary {
  background: var(--terra);
  color: #fffdfc;
  box-shadow: 0 12px 28px rgba(166, 106, 76, .32);
  text-shadow: 0 1px 1px rgba(50, 23, 27, .18);
}
.btn--primary .btn-icon {
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: #fffdfc;
  box-shadow: 0 0 0 1px rgba(255,255,255,.45), 0 5px 12px rgba(50,23,27,.18);
  mix-blend-mode: normal;
  object-fit: cover;
}
.btn--primary:hover { background: var(--terra-deep); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(166, 106, 76, .42); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--sand-deep);
}
.btn--ghost:hover { background: var(--white); border-color: var(--sage); transform: translateY(-3px); }
.btn--dark {
  background: var(--sage-deep);
  color: var(--white);
}
.btn--dark .btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--cream-soft);
  box-shadow: 0 0 0 1px rgba(255,255,255,.34), 0 4px 10px rgba(50,23,27,.12);
  mix-blend-mode: normal;
  object-fit: cover;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.btn--dark:hover { background: var(--ink); transform: translateY(-3px); }
.product-body .btn--dark:hover .btn-icon,
.product-body .btn--dark:focus-visible .btn-icon {
  transform: translateX(4px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.46), 0 6px 14px rgba(50,23,27,.16);
}
.product-body .btn--dark.is-tapping .btn-icon {
  animation: buy-arrow-tap .36s cubic-bezier(.2,.8,.2,1);
}
@keyframes buy-arrow-tap {
  0% { transform: translateX(0) scale(1); }
  45% { transform: translateX(5px) scale(1.04); }
  100% { transform: translateX(0) scale(1); }
}
.btn--block { width: 100%; }
.btn--sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn--disabled {
  cursor: not-allowed;
  background: #E7DEDB;
  color: var(--ink-soft);
  box-shadow: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.1rem;
  background: rgba(255, 247, 246, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 214, 211, .7);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header.scrolled {
  background: rgba(254, 238, 239, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(50, 23, 27, .08);
  padding-block: .7rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 16px;
  background: #feeef0;
  border: 1px solid rgba(105, 61, 52, .12);
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(101, 58, 47, .12);
}
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand small { display:block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative;
  overflow: hidden;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: rgba(183,125,109,.12); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .35rem;
  height: 1px;
  background: currentColor;
  opacity: .42;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}
.nav-cta { margin-left: .6rem; }
.nav a.nav-cta {
  background: #845148;
  color: #fffdfc;
  gap: .75rem;
  padding-right: .78rem;
  box-shadow: 0 12px 28px rgba(90, 48, 46, .28);
}
.nav a.nav-cta:hover {
  color: #fff;
  background: var(--terra-deep);
}
.nav-cta .btn-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: block;
}

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .55rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(540px, 86svh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1f1718;
}
.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-frame picture {
  display: contents;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,23,24,.18), rgba(31,23,24,.02) 36%, rgba(31,23,24,.5)),
    linear-gradient(90deg, rgba(31,23,24,.78), rgba(90,48,46,.42) 34%, rgba(31,23,24,.08) 66%),
    linear-gradient(135deg, rgba(183,125,109,.34), transparent 46%);
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(3.3rem, 8.5vw, 6rem);
  max-width: none;
  color: #fffdfc;
}
.hero-overlay::before {
  content: "";
  display: block;
  width: clamp(3.8rem, 9vw, 6.2rem);
  height: 1px;
  margin-bottom: clamp(.9rem, 2vw, 1.25rem);
  background: rgba(254,238,239,.78);
  box-shadow: 0 0 22px rgba(254,238,239,.42);
}
.hero-title {
  max-width: none;
  margin: 0;
  color: #fffdfc;
  font-size: 4.75rem;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 14px 38px rgba(31,23,24,.5);
}
.hero-title em {
  position: relative;
  display: inline-block;
  color: #fff7f6;
  font-style: italic;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -.05em;
  right: -.05em;
  bottom: .04em;
  z-index: -1;
  height: .18em;
  border-radius: 999px;
  background: rgba(183,125,109,.62);
}
.hero-title.is-buzz-title {
  max-width: none;
}
.buzz-word {
  position: relative;
  display: inline-block;
  padding-inline: .04em;
  color: #fff7f6;
  font-style: italic;
}
.buzz-word::before {
  content: "";
  position: absolute;
  inset: -.17em -.28em -.07em -.22em;
  z-index: -1;
  border: 2px dashed rgba(255,247,246,.82);
  border-radius: 58% 42% 56% 44%;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 10px rgba(254,238,239,.34));
  animation: buzz-trace 5.2s ease-in-out infinite;
}
.buzz-word::after {
  content: "";
  position: absolute;
  width: .16em;
  height: .16em;
  right: -.28em;
  top: .02em;
  border-radius: 999px;
  background: #fff7f6;
  box-shadow:
    -.07em .03em 0 .015em rgba(255,247,246,.55),
    0 0 14px rgba(255,247,246,.8);
  animation: buzz-dot 3.8s ease-in-out infinite;
}
@keyframes buzz-trace {
  0%, 100% { transform: rotate(-8deg) scale(1); opacity: .78; }
  50% { transform: rotate(-2deg) scale(1.035); opacity: 1; }
}
@keyframes buzz-dot {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(.18em, .16em) scale(.9); }
  62% { transform: translate(-.12em, .34em) scale(1.08); }
}

/* ---------- About ---------- */
.about { background: var(--cream-soft); }
.about-grid {
  display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem,5vw,5rem); align-items:center;
}
.about--presentation .about-grid {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}
.about-photo {
  position: relative;
}
.about-photo > img {
  width:100%; aspect-ratio: 4/5; object-fit:cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.about-photo::before {
  content:""; position:absolute; inset: -16px -16px auto auto; width: 60%; height: 60%;
  border: 2px solid var(--terra-soft); border-radius: var(--r-lg); z-index:-1;
}
.about-photo .tag {
  position:absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(50,23,27,.84); color:#fff; backdrop-filter: blur(8px);
  padding: .7rem 1.05rem; border-radius: 14px; font-size: .85rem; font-weight:600;
  display:flex; align-items:center; gap:.5rem;
  max-width: calc(100% - 2.4rem);
  overflow: hidden;
}
.about-text p + p { margin-top: 1rem; }
.about-story-deck { margin-top: 1rem; }
.about-story-deck p:first-child { margin-top: 0; }
.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.4rem;
}
.about-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: .7rem;
  padding: .85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.about-mini-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid rgba(50,23,27,.08);
}
.about-mini-card img {
  border-radius: inherit;
  transform: scale(1.08);
}
.about-mini-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .86rem;
  line-height: 1.4;
}
.about-mini-card b {
  color: var(--terra-deep);
}
.community-cta--disabled {
  cursor: default;
  opacity: .78;
}

.mobile-carousel-controls {
  display: none;
}
.signature {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--terra-deep);
}
.values-list {
  margin-top: 2rem; display:grid; gap:.6rem;
}
.values-list li { display:flex; gap:.8rem; align-items:flex-start; }
.values-list .v-ic {
  flex:none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--sand); color: var(--terra-deep);
  display:grid; place-items:center; font-weight:700; font-size:.85rem;
}
.values-list b { font-weight: 700; }

/* ---------- Services ---------- */
.services-grid {
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.45rem, 3vw, 2rem);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  position: relative; overflow:hidden;
  min-height: 100%;
}
.service-card::after {
  content:""; position:absolute; top:0; left:0; right:0; height:4px;
  background: linear-gradient(90deg, var(--terra-soft), var(--terra-deep));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-ic,
.cert-card:hover .cert-seal,
.benefits-box li:hover .ic {
  transform: translateY(-2px) rotate(-2deg) scale(1.035);
}
.service-ic {
  --icon-color: var(--sage-deep);
  --icon-bg: rgba(243,228,225,.95);
  --icon-bg-2: rgba(215,170,162,.35);
  width: 58px; height:58px; border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.85), transparent 34%),
    linear-gradient(145deg, var(--icon-bg), var(--icon-bg-2));
  display:grid; place-items:center; margin-bottom: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(50,23,27,.08);
  color: var(--icon-color);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 12px 24px rgba(50,23,27,.08);
  transition: transform .34s ease, box-shadow .34s ease;
}
.service-ic--body,
.service-ic--calm,
.service-ic--foot,
.service-ic--oil,
.service-ic--lymph,
.service-ic--mother { --icon-color: var(--ink); --icon-bg: rgba(243,228,225,.95); --icon-bg-2: rgba(255,247,246,.92); }
.service-ic .generated-icon { border-radius: inherit; transform: scale(1.12); }
.service-card h3 { font-size: clamp(1.35rem, 2.4vw, 1.55rem); margin-bottom: .5rem; }
.service-card .service-title--nowrap {
  white-space: nowrap;
  font-size: clamp(1.3rem, 2.1vw, 1.5rem);
}
.service-card .dur { display:inline-block; margin-top:auto; font-size:.8rem; color: var(--terra-deep); font-weight:700; letter-spacing:.05em; }
.service-price {
  display: inline-block;
  margin-top: auto;
  font-size: .88rem;
  font-weight: 500;
  color: #9b716b;
  letter-spacing: .01em;
}

/* ---------- Slogan ---------- */
.slogan-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  background:
    linear-gradient(100deg, rgba(255,247,246,.08), transparent 32%),
    linear-gradient(145deg, #2a1719, #5a2d2e 58%, #7d473e);
  color: #fffdfc;
}
.slogan-section::before,
.slogan-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(760px, 76vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(243,228,225,.5), transparent);
}
.slogan-section::before { top: clamp(1.6rem, 4vw, 2.4rem); }
.slogan-section::after { bottom: clamp(1.6rem, 4vw, 2.4rem); }
.slogan-wrap {
  max-width: min(100%, 1060px);
  margin-inline: auto;
  text-align: center;
}
.slogan-kicker {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
  color: rgba(255,247,246,.72);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.slogan-kicker::before,
.slogan-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(243,228,225,.52);
}
.slogan-wrap h2 {
  color: #fffdfc;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.35rem, 4.4vw, 3.65rem);
  line-height: 1;
  text-wrap: balance;
  white-space: nowrap;
}
.slogan-wrap p {
  display: grid;
  gap: .35rem;
  justify-items: center;
  max-width: min(100%, 50rem);
  margin: 1.35rem auto 0;
  padding: 0;
  color: rgba(255,247,246,.9);
  text-align: center;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: 0 2px 12px rgba(31,23,24,.3);
}
.slogan-wrap p span {
  display: block;
}
.slogan-wrap p .slogan-closing-line {
  width: min(100%, 33rem);
  margin-top: .12rem;
  text-align: left;
}
.slogan-wrap p strong {
  color: #fffdfc;
  font-weight: 800;
}
.slogan-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .3rem;
  width: min(100%, 33rem);
  margin: .55rem auto 0;
}
.slogan-signature {
  width: clamp(160px, 16vw, 200px);
  max-width: 68vw;
  line-height: 0;
  filter: drop-shadow(0 8px 18px rgba(31,23,24,.18));
  align-self: flex-end;
  transform: translateX(4%);
}
.slogan-signature img {
  display: block;
  width: 100%;
  height: auto;
}
.btn--instagram {
  align-self: center;
  min-width: 170px;
  background: rgba(255,247,246,.94);
  color: var(--terra-deep);
  box-shadow: 0 18px 42px rgba(31,23,24,.22);
  text-shadow: none;
}
.btn--instagram:hover {
  background: #fffdfc;
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(31,23,24,.28);
}

/* ---------- Certifications ---------- */
.cert { background: linear-gradient(180deg, var(--cream), var(--cream-soft)); }
.cert-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:1.2rem; margin-top: 3rem; }
.cert-card {
  background: var(--white); border:1px solid var(--line); border-radius: var(--r-md);
  padding: 1.7rem 1.4rem; text-align:center; transition: transform .3s, box-shadow .3s;
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cert-seal {
  --seal-color: #fff;
  --seal-bg: var(--terra-soft);
  --seal-bg-2: var(--terra-deep);
  width: 64px; height:64px; margin: 0 auto 1rem; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.28), transparent 31%),
    linear-gradient(145deg, var(--seal-bg), var(--seal-bg-2));
  color: var(--seal-color); display:grid; place-items:center;
  overflow: hidden;
  border: 1px solid rgba(50,23,27,.08);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.22), 0 14px 28px rgba(50,23,27,.08);
  transition: transform .34s ease;
}
.cert-seal--diploma,
.cert-seal--aroma,
.cert-seal--reflex,
.cert-seal--safety { --seal-bg: var(--terra-soft); --seal-bg-2: var(--terra-deep); }
.cert-seal .generated-icon { border-radius: inherit; transform: scale(1.1); }
.cert-card h4 { font-size: 1.15rem; margin-bottom:.3rem; }
.cert-card .yr { font-size:.8rem; color: var(--ink-soft); letter-spacing:.08em; text-transform: uppercase; }
.cert-card p { font-size:.88rem; color: var(--ink-soft); margin-top:.6rem; }

/* ---------- Booking ---------- */
.booking {
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(215,170,162,.18), transparent 60%),
    var(--ink);
  color: var(--cream-soft);
}
.booking .eyebrow { color: var(--terra-soft); }
.booking .eyebrow::before { background: var(--terra-soft); }
.booking .section-title { color: #fff; }
.booking .section-lead { color: rgba(255,255,255,.82); }

.booking-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); margin-top:3rem; align-items:start; }
.benefits-box h3 { font-size:1.6rem; color:#fff; margin-bottom:1rem; }
.benefits-box ul { display:grid; gap:1rem; }
.benefits-box li { display:flex; gap:.9rem; align-items:flex-start; color: rgba(255,255,255,.9); }
.benefits-box .ic {
  --benefit-color: #fff;
  --benefit-bg: rgba(255,255,255,.14);
  --benefit-line: rgba(255,255,255,.2);
  flex:none; width:40px; height:40px; border-radius:14px;
  background: var(--benefit-bg); display:grid; place-items:center; color: var(--benefit-color);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--benefit-line);
  transition: transform .28s ease, background .28s ease;
}
.benefits-box .ic--chat,
.benefits-box .ic--route,
.benefits-box .ic--spark,
.benefits-box .ic--calendar { --benefit-bg: rgba(255,247,246,.13); --benefit-line: rgba(215,170,162,.32); }
.benefits-box .ic .generated-icon { border-radius: inherit; transform: scale(1.1); }
.benefits-box small { display:block; color: rgba(255,255,255,.65); font-size:.82rem; margin-top:.2rem; }

/* form */
.booking-form {
  background: var(--white); color: var(--ink);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}
.contact-card {
  display: grid;
  gap: 1rem;
}
.contact-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}
.contact-card p {
  color: var(--ink-soft);
}
.contact-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .45rem;
  color: var(--terra-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-actions {
  display: grid;
  gap: .8rem;
  margin-top: .4rem;
}
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap:1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-size:.85rem; font-weight:700; margin-bottom:.4rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width:100%; padding: .85rem 1rem;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink);
  background: var(--cream-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--terra); background:#fff;
  box-shadow: 0 0 0 4px rgba(183,125,109,.16);
}
.field.invalid label { color: var(--terra-deep); }
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: var(--terra-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,139,106,.14);
}
.field textarea { min-height: 100px; resize: vertical; }
.form-note { font-size:.78rem; color: var(--ink-soft); margin-top:.6rem; }
.form-success {
  display:none; margin-top:1rem; padding:1rem 1.2rem;
  background: #F4E8E5; border:1px solid #E2C7C1; border-radius: 12px;
  color: var(--terra-deep); font-weight:600;
}
.form-success.err {
  background: #F7E1DE;
  border-color: #E0B2AC;
  color: #7A2F2B;
}
.form-success.show { display:block; animation: pop .4s ease; }
@keyframes pop { from{opacity:0; transform: translateY(-6px);} to{opacity:1; transform:none;} }

/* ---------- Products showcase ---------- */
.products-showcase {
  margin-top: 1.4rem;
}
.products-showcase__head {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.products-showcase__kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--terra-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.products-showcase__kicker::before,
.products-showcase__kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(183,125,109,.55);
}
.products-showcase__head h3 {
  margin-top: .8rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
}
.products-showcase__head p {
  margin-top: .65rem;
  color: var(--ink-soft);
}
.products-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:1.55rem;
  margin-top:2rem;
  transition: opacity .25s ease;
}
.products-showcase .products-grid {
  margin-top: 0;
}

/* ---------- Community Section Landing Page ---------- */
.community-section {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

.community-box-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
  width: 100%;
  padding: 2.2rem clamp(1.2rem, 5vw, 2rem);
  border-radius: 28px;
  background: radial-gradient(120% 140% at 100% 0%, rgba(215, 170, 162, 0.12), transparent 70%), var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  cursor: default;
  color: inherit;
}

.community-box-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(50, 23, 27, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
}

.community-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-box-content h3 {
  color: var(--terra-deep);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.community-box-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.products-grid.is-loading {
  opacity: .62;
}
.product-card {
  background: var(--white); border:1px solid var(--line); border-radius: 24px;
  overflow:hidden; transition: transform .35s, box-shadow .35s, border-color .35s; display:flex; flex-direction:column;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.product-card--clickable {
  cursor: pointer;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,.24), transparent 48%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(183,125,109,.28);
}
.product-card--clickable:focus-visible {
  outline: 3px solid rgba(90,48,46,.72);
  outline-offset: 5px;
  box-shadow: var(--shadow-md), 0 0 0 8px rgba(183,125,109,.16);
}
.product-card--clickable:active,
.product-card--clickable.is-tapping {
  transform: translateY(-4px) scale(.992);
}
.product-card:hover::after {
  transform: translateX(120%);
}
.product-card--unavailable {
  background: linear-gradient(180deg, #fffcfb, #f2ecea);
  border-color: rgba(106,88,88,.18);
}
.product-card--unavailable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(50,23,27,.08);
}
.product-card--unavailable .product-img img,
.product-card--unavailable .product-body {
  filter: grayscale(.85);
}
.product-card--unavailable .product-img img {
  opacity: .58;
}
.product-card--unavailable .desc,
.product-card--unavailable .benefits {
  color: #75696a;
}
.product-img { aspect-ratio: 4/3; overflow:hidden; position:relative; background: var(--sand); }
.product-img img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img .price {
  display: none;
}
.availability-badge {
  position: absolute;
  left: .9rem;
  top: .9rem;
  z-index: 2;
  padding: .42rem .78rem;
  border-radius: 999px;
  background: rgba(50,23,27,.78);
  color: #fffdfc;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}
.product-body {
  padding: 1rem 1.25rem 1.3rem;
  display:flex;
  flex-direction:column;
  flex:1;
  border-top: 1px solid rgba(232,214,211,.82);
}
.product-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  gap: .82rem;
}
.product-kit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(50,23,27,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 10px 20px rgba(50,23,27,.07);
}
.product-kit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.product-body h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.48rem);
  margin-bottom:.34rem;
  padding: 0;
  line-height:1.12;
}
.product-body .desc {
  display: block;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.45;
}
.product-body .benefits { display: none; }
.product-body .benefits b { color: var(--terra-deep); }
.product-price {
  display: block;
  text-align: center;
  margin: auto auto .25rem;
  padding-top: 1rem;
  font-weight: 500;
  font-size: .95rem;
  color: #9b716b;
  letter-spacing: .01em;
}
.product-body .btn { margin-top:auto; align-self:stretch; justify-content:center; }
.products-note { text-align:center; margin-top:2.5rem; color: var(--ink-soft); font-size:.9rem; }
.products-note a { color: var(--terra-deep); font-weight:700; }

/* ---------- Aromatic paths ---------- */
.aroma-feature {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(250px, auto);
  gap: clamp(1.1rem, 3vw, 1.55rem);
  align-items: center;
  margin-top: 3rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(215,170,162,.22), transparent 68%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  min-height: 132px;
}
.aroma-feature h3,
.aroma-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  line-height: 1.1;
}
.aroma-feature h3 em {
  font-style: italic;
  font-weight: 600;
}
.aroma-feature p,
.aroma-card p {
  color: var(--ink-soft);
  max-width: 78ch;
  font-size: clamp(.98rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}
.aroma-feature__icon,
.aroma-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(50,23,27,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 12px 24px rgba(50,23,27,.08);
}
.aroma-feature__icon .generated-icon,
.aroma-card__icon .generated-icon {
  border-radius: inherit;
  transform: scale(1.08);
}
.aroma-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.aroma-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.aroma-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.aroma-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(250px, auto);
  align-items: center;
  gap: clamp(1.1rem, 3vw, 1.55rem);
  min-height: 132px;
  padding: clamp(1.35rem, 3vw, 1.8rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.aroma-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(183,125,109,.28);
}
.aroma-card .btn {
  align-self: center;
  justify-self: end;
  min-width: min(100%, 250px);
  white-space: nowrap;
}
.aroma-feature .btn {
  justify-self: end;
  min-width: min(100%, 250px);
  white-space: nowrap;
}
.btn em {
  font-style: italic;
}
.aroma-card--premium {
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(183,125,109,.18), transparent 68%),
    linear-gradient(180deg, var(--white), var(--cream-soft));
  border-color: rgba(183,125,109,.28);
}

/* ---------- Footer ---------- */
.footer,
.site-footer {
  background: #1f1718;
  color: rgba(255,255,255,.78);
  padding-block: clamp(3.2rem,6vw,5.4rem) 1.5rem;
}
.footer-grid {
  display:grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, .7fr) minmax(190px, .8fr) minmax(170px, .7fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items:start;
}
.footer-brand .brand { color:#fff; }
.footer-brand p { margin-top:1rem; max-width:34ch; font-size:.92rem; }
.socials { display:flex; gap:.6rem; margin-top:1.3rem; }
.socials a {
  width: 42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,.085); display:grid; place-items:center;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
  font-size:.95rem;
}
.socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.socials a:hover {
  color:#fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.socials .social-link--instagram:hover { background:#E4405F; border-color:#E4405F; }
.socials .social-link--facebook:hover { background:#1877F2; border-color:#1877F2; }
.socials .social-link--whatsapp:hover { background:#25D366; border-color:#25D366; }
.footer-col h5 { font-family: var(--font-display); color:#fff; font-size:1.15rem; margin-bottom:1rem; }
.footer-col ul { display:grid; gap:.55rem; }
.footer-col li { color: rgba(255,255,255,.78); }
.footer-col a { font-size:.92rem; transition: color .2s; }
.footer-col a:hover { color: var(--terra-soft); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap;
  font-size:.82rem; color: rgba(255,255,255,.55);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color:#fff; }

/* ---------- Privacy / Cookie modal ---------- */
.policy-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(31,23,24,.52);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.policy-overlay.show {
  opacity: 1;
  visibility: visible;
}
.policy-modal {
  position: fixed;
  z-index: 260;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100vw - 2rem));
  max-height: min(78vh, 720px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.35rem, 4vw, 2rem);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 12px)) scale(.98);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.policy-modal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.policy-close {
  position: absolute;
  right: .9rem;
  top: .85rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.policy-close:hover {
  background: var(--sand);
  transform: rotate(4deg);
}
.policy-modal h3 {
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  margin-bottom: .7rem;
  padding-right: 2.5rem;
}
#policyBody {
  display: grid;
  gap: 1rem;
  padding-right: .25rem;
}
#policyBody p,
#policyBody li,
#policyBody td,
#policyBody th {
  color: var(--ink-soft);
}
#policyBody a {
  color: var(--terra-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-content {
  display: grid;
  gap: 1rem;
}
.policy-content h4 {
  margin-top: .35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.policy-list {
  display: grid;
  gap: .45rem;
  padding-left: 1.05rem;
  list-style: disc;
}
.policy-list li {
  padding-left: .15rem;
}
.policy-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-soft);
  font-size: .88rem;
}
.policy-table th,
.policy-table td {
  min-width: 160px;
  padding: .78rem .85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.policy-table th {
  color: var(--terra-deep);
  background: var(--sand);
  font-weight: 800;
}
.policy-table tr:last-child td {
  border-bottom: 0;
}
.policy-table code {
  color: var(--ink);
  font-size: .84rem;
}

/* ---------- Cookie consent ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 240;
  width: min(720px, calc(100vw - 2rem));
  display: none;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  color: var(--ink);
  background: rgba(255,252,251,.97);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(31,23,24,.24);
  transform: translateX(-50%);
}
.cookie-banner.show {
  display: grid;
}
.cookie-banner__close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.25rem;
}
.cookie-banner__copy {
  padding-right: 2.6rem;
}
.cookie-banner h3 {
  margin-top: .35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}
.cookie-banner p {
  color: var(--ink-soft);
  line-height: 1.55;
}
.cookie-banner__prefs {
  display: grid;
  gap: .7rem;
}
.cookie-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  padding: .78rem .85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-soft);
}
.cookie-choice input {
  width: 18px;
  height: 18px;
  margin-top: .2rem;
  accent-color: var(--terra-deep);
}
.cookie-choice strong,
.cookie-choice small {
  display: block;
}
.cookie-choice strong {
  color: var(--ink);
  line-height: 1.25;
}
.cookie-choice small {
  margin-top: .18rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.cookie-choice--locked {
  opacity: .82;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.cookie-banner__actions .btn {
  flex: 1 1 145px;
}
.cookie-banner__links {
  margin-top: -.2rem;
  font-size: .82rem;
}
.cookie-banner__links a {
  color: var(--terra-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }
.reveal[data-delay="1"] { transition-delay:.08s; }
.reveal[data-delay="2"] { transition-delay:.16s; }
.reveal[data-delay="3"] { transition-delay:.24s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display:none; }
  .nav-toggle { display:flex; }
  .nav.open {
    display:flex; flex-direction:column; align-items:stretch;
    position:absolute; top:100%; left: var(--gutter); right: var(--gutter);
    background: var(--white); border-radius: var(--r-md);
    box-shadow: var(--shadow-md); padding: .8rem; gap:.2rem;
    border:1px solid var(--line);
  }
  .nav.open a { padding: .8rem 1rem; }
  .nav.open .nav-cta { margin:.4rem .4rem 0; text-align:center; }
  .nav.open .nav-cta .btn-icon {
    width: 38px;
    height: 38px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero-title {
    max-width: none;
    font-size: 3.2rem;
  }
  .slogan-wrap h2 {
    white-space: normal;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about--presentation .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin-inline:auto; }
  .about-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .aroma-grid { grid-template-columns: 1fr; }
  .aroma-feature {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .aroma-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .aroma-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .aroma-feature .btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap:2rem; }
}
@media (max-width: 600px) {
  :root { --gutter: 1rem; }
  body { font-size: 1rem; }
  .site-header { padding-block: .75rem; }
  .brand { font-size: 1.22rem; gap: .55rem; }
  .brand-mark { width: 40px; height: 40px; border-radius: 14px; }
  .brand small { font-size: .55rem; letter-spacing: .22em; }
  .hero { min-height: clamp(500px, 82svh, 620px); }
  .hero-frame img { object-position: center center; }
  .hero-overlay { bottom: clamp(2.4rem, 10vw, 3.6rem); }
  .hero-overlay::before { margin-bottom: .8rem; }
  .hero-title { font-size: 1.6rem; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .cert-grid, .aroma-grid, .aroma-cards-grid { grid-template-columns: 1fr; }
  .about-text {
    width: 100%;
    min-width: 0;
  }

  .products-grid,
  .services-grid,
  .about-mini-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    gap: .95rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .products-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .about-mini-grid::-webkit-scrollbar {
    display: none;
  }

  .products-grid,
  .services-grid {
    padding: 1rem 1rem 1.15rem;
    scroll-padding-inline: 1rem;
  }
  .products-grid .product-card,
  .services-grid .service-card {
    flex: 0 0 min(380px, 100%);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .services-grid .service-card {
    min-height: 260px;
  }
  .products-grid .product-card:hover,
  .services-grid .service-card:hover {
    transform: none;
  }

  .mobile-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 48px;
    margin-top: .5rem;
  }
  .mobile-carousel-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--terra-deep);
    box-shadow: var(--shadow-sm);
    font-size: 1.55rem;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .mobile-carousel-button:active {
    transform: scale(.94);
  }
  .mobile-carousel-button:disabled {
    opacity: .38;
  }
  .mobile-carousel-toggle {
    font-size: .9rem;
  }
  .mobile-carousel-counter {
    min-width: 70px;
    padding-inline: .55rem;
    color: var(--ink-soft);
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: .08em;
    font-variant-numeric: tabular-nums;
  }

  .about-mini-grid {
    margin-top: 1rem;
    padding: .15rem 3.5rem .45rem 0;
  }
  .about-mini-grid .about-mini-card {
    flex: 0 0 min(290px, calc(100% - 3.5rem));
    min-height: 76px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .products-showcase {
    margin-top: 2rem;
  }
  .products-showcase__head {
    text-align: left;
  }
  .products-showcase__kicker {
    gap: .55rem;
    font-size: .68rem;
    letter-spacing: .12em;
  }
  .products-showcase__kicker::before {
    width: 24px;
  }
  .products-showcase__kicker::after {
    display: none;
  }
  .products-showcase__head h3 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }
  .products-grid {
    gap: 1.15rem;
    margin-top: 1.35rem;
  }
  .product-body {
    padding: 1.18rem 1.18rem 1.28rem;
  }
  .product-body h3 {
    font-size: 1.25rem;
  }
  .product-heading {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: .72rem;
  }
  .product-kit-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .aroma-feature {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .aroma-card {
    grid-template-columns: 1fr;
  }
  .aroma-feature__icon,
  .aroma-card__icon {
    width: 64px;
    height: 64px;
  }
  .slogan-section {
    padding-block: clamp(3.6rem, 16vw, 5rem);
  }
  .slogan-kicker {
    gap: .55rem;
    font-size: .68rem;
    letter-spacing: .12em;
  }
  .slogan-kicker::before,
  .slogan-kicker::after {
    width: 24px;
  }
  .slogan-wrap h2 {
    max-width: 18ch;
    font-size: clamp(2.3rem, 11vw, 3.25rem);
  }
  .slogan-wrap p {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.42;
  }
  .slogan-wrap p span {
    display: inline;
  }
  .slogan-wrap p .slogan-closing-line {
    display: block;
    width: 100%;
    margin-top: .8rem;
    text-align: center;
  }
  .slogan-signature {
    width: min(160px, 50vw);
    transform: translateX(4%);
  }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .footer {
    padding-block: clamp(2.8rem, 12vw, 3.8rem) 1.25rem;
  }
  .footer-grid {
    width: min(100%, 520px);
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 1.65rem 1.25rem;
    align-items: start;
    justify-content: center;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand .brand {
    justify-content: center;
    font-size: 1.38rem;
  }
  .footer-brand .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .footer-brand .socials {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer-brand .socials a {
    width: 44px;
    height: 44px;
  }
  .footer-col {
    min-width: 0;
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .footer-col h5 {
    margin-bottom: .72rem;
    font-size: 1.18rem;
  }
  .footer-col ul {
    justify-items: center;
    gap: .42rem;
  }
  .footer-col li,
  .footer-col a {
    font-size: .9rem;
    line-height: 1.55;
  }
  .footer-col li {
    overflow-wrap: anywhere;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
  }
  .footer-col:last-child ul {
    width: min(100%, 320px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: .55rem;
  }
  .footer-col:last-child a {
    display: block;
    width: 100%;
    padding: .55rem .45rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    white-space: nowrap;
  }
  .footer-bottom {
    align-items:center !important;
    flex-direction:column;
    justify-content:center !important;
    text-align:center !important;
    margin-top: 2rem;
    gap: 1rem !important;
  }
  .footer-bottom > span {
    max-width: 28ch;
    line-height: 1.5;
  }
  .btn-webnovis {
    width: min(100%, 280px);
    margin-inline: auto;
  }
  .cookie-banner {
    bottom: .75rem;
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1.5rem);
    overflow: auto;
    border-radius: 20px;
  }
  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions .btn {
    width: 100%;
  }
  .policy-table {
    font-size: .82rem;
  }
  .policy-modal {
    top: auto;
    bottom: .5rem;
    transform: translateX(-50%) translateY(14px);
    border-radius: 22px 22px 0 0;
    max-height: 84vh;
    width: calc(100vw - 1rem);
  }
  .policy-modal.show {
    transform: translateX(-50%);
  }
}

/* WhatsApp floating button animation */
@keyframes float-soft {
  0% { transform: translateY(0px); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { transform: translateY(-8px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  100% { transform: translateY(0px); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999;
  animation: float-soft 3.5s ease-in-out infinite;
  transition: background-color 0.3s;
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.whatsapp-float:hover {
  animation-play-state: paused;
  background-color: #20ba5a;
}

/* Fix social hover icon color hiding issue */
.socials a:hover img {
  filter: brightness(0) invert(1);
}

/* WebNovis Credit Button */
.btn-webnovis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--terra-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--terra-soft);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.btn-webnovis:hover {
  background: var(--terra-soft);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 360px) {
  .service-card .service-title--nowrap {
    font-size: 1.03rem;
  }
}
