/* =============================================================
   ImaginaryCenter — styles.css
   Paleta real de marca: naranja · rojo-naranja · amarillo · verde
   extraída del logo y banner corporativo. Tipografía redonda y
   cálida (Baloo 2 / Poppins / Nunito). Fondo crema cálido,
   sombras en tono miel, energía de celebración real.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #FFFAF4;
  --bg-2: #FFF3E0;
  --paper: #ffffff;

  --ink: #2D2D2D;
  --ink-soft: #4A3728;
  --ink-mute: #7A6555;

  --orange: #F7931E;
  --orange-deep: #E84E1B;
  --yellow: #FFC912;
  --green: #3AB54A;
  --orange-light: #FFBD59;

  --accent: var(--orange);
  --accent-2: var(--orange-deep);

  --glass: rgba(255, 255, 255, 0.68);
  --glass-2: rgba(255, 255, 255, 0.38);
  --line: rgba(45, 45, 45, 0.1);

  --grad-brand: linear-gradient(120deg, var(--orange-deep) 0%, var(--orange) 55%, var(--yellow) 100%);
  --grad-warm: linear-gradient(120deg, var(--orange) 0%, var(--yellow) 100%);
  --grad-green: linear-gradient(120deg, var(--green) 0%, #5DD870 100%);

  --display: "Baloo 2", "Poppins", sans-serif;
  --sans: "Poppins", "Nunito", sans-serif;
  --body: "Nunito", "Poppins", sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 10px;
  --radius-sm: 5px;
  --nav-h: 78px;
}

@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
::selection { background: var(--yellow); color: var(--ink); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .8rem 1.2rem; background: var(--ink); color: #fff;
  border-radius: 999px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "✦"; font-size: .6rem;
  color: var(--orange);
}

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

section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 8vw, 7rem); }

/* =============================================================
   4. Typography
   ============================================================= */
.h-xl { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h-md { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s;
  will-change: transform;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(232, 78, 27, .45);
}
.btn-primary:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 22px 44px -10px rgba(232, 78, 27, .55); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  background: var(--glass);
  color: var(--ink);
  border: 1.5px solid rgba(45,45,45,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
@supports not (backdrop-filter: blur(1px)) { .btn-ghost { background: rgba(255,255,255,.86); } }
.btn-ghost:hover { transform: translateY(-4px); background: #fff; }

.btn-whatsapp {
  background: linear-gradient(120deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .55);
}
.btn-whatsapp:hover { transform: translateY(-4px) scale(1.02); }

.btn-block { width: 100%; }

/* --- Nav --- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav-inner {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 4px 26px rgba(45, 45, 45, .08);
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 8px;
}
.nav-links {
  display: none;
  align-items: center; gap: 1.9rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .3rem 0; }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--grad-warm);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; } }

.nav-burger {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--glass);
  border: 1.5px solid rgba(45,45,45,0.1);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span, .nav-burger::before, .nav-burger::after {
  content: ""; display: block; width: 20px; height: 2.5px; border-radius: 2px;
  background: var(--ink); position: relative;
  transition: transform .35s var(--ease-out), opacity .3s;
}
.nav-burger::before { transform: translateY(-6px); }
.nav-burger::after { transform: translateY(4px); }
.nav-burger.is-open span { opacity: 0; }
.nav-burger.is-open::before { transform: translateY(0) rotate(45deg); }
.nav-burger.is-open::after { transform: translateY(-2.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile.is-open { clip-path: inset(0); }
.nav-mobile-links {
  display: flex; flex-direction: column; align-items: center; gap: 1.6rem;
  font-family: var(--display); font-size: 1.9rem;
}
.nav-mobile .btn { margin-top: 1rem; }

/* --- Floating persistent CTA (mobile) --- */
.float-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 400;
  display: flex; gap: .7rem;
}
@media (min-width: 720px) { .float-cta { display: none; } }
.float-cta .btn { flex: 1; }

/* --- Cards / glass --- */
.glass-card {
  background: var(--glass);
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
@supports not (backdrop-filter: blur(1px)) {
  .glass-card { background: rgba(255,255,255,.86); }
}

/* --- Forms --- */
.field { position: relative; margin-bottom: 1.15rem; }
.field label {
  display: block; font-family: var(--sans); font-weight: 700; font-size: .82rem;
  letter-spacing: .03em; margin-bottom: .45rem; color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%; padding: .95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, .18);
  outline: none;
}
.field textarea { min-height: 100px; resize: vertical; }
.field-row { display: grid; gap: 1.15rem; }
@media (min-width: 640px) { .field-row.two { grid-template-columns: 1fr 1fr; } }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--grad-brand);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .8s var(--ease-out), clip-path 1s var(--ease-soft);
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { text-align: center; color: #fff; }
.splash-logo {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 7vw, 3.2rem);
  margin-bottom: 1.4rem;
  animation: splashPop 1.1s var(--ease-bounce);
}
.splash-logo span { display: inline-block; animation: splashBounce 1.6s var(--ease-soft) infinite; }
.splash-logo span:nth-child(2) { animation-delay: .08s; }
.splash-logo span:nth-child(3) { animation-delay: .16s; }
.splash-logo span:nth-child(4) { animation-delay: .24s; }
@keyframes splashPop { from { opacity: 0; transform: scale(.7); } to { opacity: 1; transform: scale(1); } }
@keyframes splashBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.splash-bar { width: min(220px, 60vw); height: 6px; border-radius: 999px; background: rgba(255,255,255,.28); overflow: hidden; margin-inline: auto; }
.splash-bar-fill { height: 100%; width: 0%; border-radius: 999px; background: #fff; animation: splashLoad 2.6s var(--ease-out) forwards; }
@keyframes splashLoad { to { width: 100%; } }

/* --- Cursor --- */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; display: none; opacity: 0; transition: opacity .25s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 8px; height: 8px; margin: -4px; background: var(--orange-deep); border-radius: 50%; }
.cursor-ring {
  width: 38px; height: 38px; margin: -19px; border: 2px solid var(--orange); border-radius: 50%;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .35s;
}
.cursor.is-interactive .cursor-ring { width: 58px; height: 58px; margin: -29px; border-color: var(--green); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: clip;
  isolation: isolate;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-bg-tint {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(45,45,45,.5) 0%, rgba(232,78,27,.25) 45%, rgba(45,45,45,.72) 100%);
}
.hero-mesh {
  position: absolute; inset: -10%; z-index: -1;
  background:
    radial-gradient(45% 40% at var(--mesh-x) var(--mesh-y), rgba(247, 147, 30, .5), transparent 65%),
    conic-gradient(from var(--mesh-angle), rgba(232,78,27,.3), rgba(247,147,30,.22), rgba(255,201,18,.28), rgba(58,181,74,.18), rgba(232,78,27,.3));
  filter: blur(90px) saturate(140%);
  mix-blend-mode: screen;
  animation: meshShift 24s linear infinite;
}
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 25%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 72%; --mesh-y: 60%; }
  100% { --mesh-angle: 360deg; --mesh-x: 25%; --mesh-y: 35%; }
}
.hero-blob {
  position: absolute; border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px); opacity: .55; z-index: -1;
  animation: blobFloat 9s var(--ease-soft) infinite;
}
.hero-blob.b1 { width: 90px; height: 90px; left: 8%; top: 22%; background: var(--yellow); animation-duration: 7s; }
.hero-blob.b2 { width: 60px; height: 60px; right: 12%; top: 30%; background: var(--green); animation-duration: 8.5s; animation-delay: .6s; }
.hero-blob.b3 { width: 74px; height: 74px; right: 20%; bottom: 20%; background: var(--orange-deep); animation-duration: 10s; animation-delay: 1.1s; }
@keyframes blobFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-26px) rotate(12deg); } }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 880px; margin-inline: auto; color: #fff; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  margin-bottom: 1.6rem;
}
.hero-title { font-size: clamp(2.5rem, 7vw, 5rem); max-width: 20ch; margin-inline: auto; text-shadow: 0 8px 30px rgba(0,0,0,.35); color: #fff; }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 56ch; margin-inline: auto; color: rgba(255,255,255,.92); text-shadow: 0 3px 16px rgba(0,0,0,.35); }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 600; letter-spacing: .05em;
}
.hero-scroll-dot { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 999px; position: relative; }
.hero-scroll-dot::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: #fff; transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 20px; } }

/* --- Marquee --- */
.marquee-section { padding-block: 1.4rem; background: var(--grad-brand); overflow: hidden; }
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: inline-flex; gap: 2.4rem; white-space: nowrap; will-change: transform; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.4rem;
  font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  color: #fff;
}
.marquee-item::after { content: "✦"; color: rgba(255,255,255,.65); margin-left: 2.4rem; font-size: .8em; }

/* --- Why section --- */
.why-grid { margin-top: 3rem; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 2rem 1.7rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--line);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(247, 147, 30, .32);
  border-color: transparent;
}
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.9rem;
  background: var(--bg-2);
  margin-bottom: 1.3rem;
  box-shadow: 0 6px 18px -4px rgba(247, 147, 30, .3);
  border: 2px solid rgba(247, 147, 30, .18);
}
.why-card:nth-child(2) .why-icon { background: #FFF0EC; box-shadow: 0 6px 18px -4px rgba(232, 78, 27, .28); border-color: rgba(232,78,27,.18); }
.why-card:nth-child(3) .why-icon { background: #FFF9E0; box-shadow: 0 6px 18px -4px rgba(255, 201, 18, .32); border-color: rgba(255,201,18,.2); }
.why-card:nth-child(4) .why-icon { background: #F0FBF2; box-shadow: 0 6px 18px -4px rgba(58, 181, 74, .3); border-color: rgba(58,181,74,.2); }
.why-card:nth-child(5) .why-icon { background: #FFF3E0; box-shadow: 0 6px 18px -4px rgba(247, 147, 30, .3); border-color: rgba(247,147,30,.18); }
.why-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.why-card p { color: var(--ink-mute); font-size: .96rem; }

/* --- Brand stats banner --- */
.brand-stats {
  background: linear-gradient(105deg, var(--orange-deep) 0%, var(--orange) 55%, var(--yellow) 100%);
  padding: 3rem 1.5rem;
}
.brand-stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.8rem 2.8rem;
}
.brand-stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .3rem;
}
.brand-stat-num {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff; line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.brand-stat-label {
  font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .07em;
}
.brand-stat-sep {
  color: rgba(255,255,255,.35); font-size: 1.1rem;
  align-self: center; flex-shrink: 0;
}
@media (max-width: 580px) {
  .brand-stat-sep { display: none; }
  .brand-stats-inner { gap: 1.4rem 2rem; }
}

/* --- Gallery (masonry) --- */
.gallery-section { background: var(--bg-2); }
.masonry {
  margin-top: 3rem;
  columns: 1;
  column-gap: 1.1rem;
}
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 960px) { .masonry { columns: 3; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.masonry-item img { width: 100%; transition: transform 1s var(--ease-soft), filter .6s; }
.masonry-item:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(1.03); }
.masonry-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(45,45,45,.5) 100%);
  opacity: 0; transition: opacity .5s;
}
.masonry-item:hover::after { opacity: 1; }

/* --- Steps (storytelling) --- */
.steps-list { margin-top: 3.5rem; display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .steps-list { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  position: relative;
  padding: 2.1rem 1.7rem 1.8rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--line);
  overflow: hidden;
}
.step-num {
  position: absolute; top: -10px; right: 4px;
  font-family: var(--display); font-weight: 700;
  font-size: 5.2rem; line-height: 1;
  color: var(--bg-2);
  z-index: 0;
}
.step-icon {
  position: relative; z-index: 1;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem;
  background: var(--grad-brand);
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -8px rgba(247, 147, 30, .45);
}
.step-card h3 { position: relative; z-index: 1; font-size: 1.15rem; margin-bottom: .5rem; }
.step-card p { position: relative; z-index: 1; color: var(--ink-mute); font-size: .95rem; }

/* --- Testimonials --- */
.testi-section { background: var(--bg-2); }

.testi-score-wrap { text-align: center; margin-bottom: 2rem; }
.testi-score {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.8rem, 9vw, 6rem);
  color: var(--ink); line-height: 1;
}
.testi-score-stars { color: var(--orange); font-size: 1.3rem; letter-spacing: .18em; margin: .35rem 0 .5rem; }
.testi-score-sub { font-size: .88rem; color: var(--ink-mute); }

.testi-heading { text-align: center; margin-top: .3rem; }
.testi-subtitle { text-align: center; color: var(--ink-mute); margin-top: .5rem; font-size: 1rem; }

.testi-grid {
  margin-top: 2.2rem;
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.testi-card {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(45,45,45,.1);
  display: flex; flex-direction: column; gap: .6rem;
}
.testi-stars { color: var(--orange); font-size: .82rem; letter-spacing: .06em; line-height: 1; }
.testi-card > p {
  font-size: .88rem; color: var(--ink-soft); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.testi-bottom {
  display: flex; align-items: center; gap: .6rem;
  padding-top: .75rem; border-top: 1px solid rgba(45,45,45,.08);
}
.testi-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--grad-brand);
  display: grid; place-items: center;
  font-weight: 700; font-size: .82rem; color: #fff;
}
.testi-name { font-weight: 700; font-size: .84rem; color: var(--ink); line-height: 1.2; }
.testi-date { font-size: .75rem; color: var(--ink-mute); }

.testi-actions {
  margin-top: 2.2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem;
}

/* --- Booking --- */
.booking-section { position: relative; overflow: clip; }
.booking-section::before {
  content: ""; position: absolute; inset: -10%; z-index: -1;
  background: var(--grad-brand);
  opacity: .07;
  filter: blur(60px);
}
.booking-wrap {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .booking-wrap { grid-template-columns: .8fr 1.2fr; align-items: center; } }
.booking-form {
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(45,45,45,.12);
}
.booking-side .lede { margin-top: 1rem; }
.booking-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.booking-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line);
  font-size: .85rem; font-weight: 700; color: var(--ink-soft);
}

.cta-form.is-sent .field, .cta-form.is-sent button[type="submit"] { opacity: 0; pointer-events: none; }
.cta-form { transition: opacity .5s; }
.cta-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.cta-success.is-visible { display: block; }
.cta-success-icon { font-size: 2.6rem; margin-bottom: .8rem; }

/* --- Contact --- */
.contact-section { background: var(--bg-2); }
.contact-wrap { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-wrap { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.contact-map { border-radius: var(--radius); overflow: hidden; min-height: 340px; border: 1.5px solid var(--line); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.contact-info {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--line);
  display: flex; flex-direction: column; gap: 1.6rem;
}
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row-icon {
  width: 44px; height: 44px; flex: none; border-radius: 13px;
  display: grid; place-items: center; font-size: 1.2rem;
  background: var(--grad-warm);
}
.contact-row h4 { font-size: 1rem; margin-bottom: .25rem; }
.contact-row p { font-size: .95rem; color: var(--ink-mute); }
.contact-row a { color: var(--orange-deep); font-weight: 700; }

/* --- Footer --- */
.footer { background: var(--ink); color: rgba(255,255,255,.82); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.4rem; padding-block: 3.2rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-size: 1.3rem; color: #fff; }
.footer-brand img { height: 44px; width: auto; border-radius: 8px; }
.footer-tag { margin-top: .8rem; max-width: 32ch; font-size: .92rem; color: rgba(255,255,255,.6); }
.footer-col h4 { color: #fff; font-size: .92rem; margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; font-size: .92rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.back-top {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-weight: 700; font-size: .82rem; color: #fff;
  transition: transform .4s var(--ease-soft), background .3s;
}
.back-top:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 600; background: rgba(45,45,45,.06); pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%;
  background: var(--grad-warm);
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; }

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (min-width: 1600px) {
  .container { max-width: 1360px; }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: min(90vw, 1200px); max-height: 85vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  display: block;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 1.2rem;
  display: grid; place-items: center;
  transition: background .25s; z-index: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1.9rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .25s; z-index: 1;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.masonry-item { cursor: zoom-in; }

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 7000;
  background: var(--ink); color: rgba(255,255,255,.88);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: .9rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  transform: translateY(calc(100% + 1.5rem));
  transition: transform .5s var(--ease-out);
  pointer-events: none;
}
.cookie-banner.is-visible { transform: translateY(0); pointer-events: auto; }
@media (max-width: 719px) {
  .cookie-banner {
    top: 1rem;
    bottom: auto;
    transform: translateY(calc(-100% - 1.5rem));
  }
  .cookie-banner.is-visible { transform: translateY(0); }
}
.cookie-text { font-size: .88rem; flex: 1; min-width: 200px; line-height: 1.45; }
.cookie-text a { color: var(--orange-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { padding: .65rem 1.1rem; font-size: .86rem; border-radius: 8px; }
.cookie-actions .btn-ghost { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.cookie-actions .btn-ghost:hover { background: rgba(255,255,255,.16); transform: none; }
.btn-cookie-manage {
  background: none; border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.75); padding: .65rem 1.1rem;
  border-radius: 8px; font-size: .86rem; font-weight: 600;
  cursor: pointer; transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-cookie-manage:hover { background: rgba(255,255,255,.1); color: #fff; }

/* --- Cookie modal --- */
.cookie-modal {
  position: fixed; inset: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out);
}
.cookie-modal.is-open { opacity: 1; pointer-events: auto; }
.cookie-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52); backdrop-filter: blur(4px);
}
.cookie-modal-box {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius);
  max-width: 480px; width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  display: flex; flex-direction: column; overflow: hidden;
}
.cookie-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.cookie-modal-header h2 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin: 0;
}
.cookie-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: .95rem; color: var(--ink-mute);
  padding: .3rem .5rem; border-radius: 6px;
  line-height: 1; transition: background .15s;
}
.cookie-modal-close:hover { background: rgba(0,0,0,.06); color: var(--ink); }
.cookie-modal-body { padding: 1.3rem 1.5rem; }
.cookie-modal-body > p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1.2rem; line-height: 1.55; }
.cookie-category {
  background: var(--bg); border-radius: 8px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,.07);
}
.cookie-category-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.cookie-category-header strong { font-size: .92rem; color: var(--ink); display: block; line-height: 1.3; }
.cookie-category-badge {
  display: inline-block; font-size: .7rem; font-weight: 700;
  color: var(--green); letter-spacing: .04em;
  margin-top: .2rem;
}
.cookie-category-desc { font-size: .82rem; color: var(--ink-soft); margin-top: .75rem; line-height: 1.55; }
.cookie-toggle {
  width: 44px; height: 24px; border-radius: 12px;
  background: #ddd; display: inline-block; flex-shrink: 0;
  position: relative; cursor: pointer;
  transition: background .2s;
}
.cookie-toggle::after {
  content: ""; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%; background: #fff;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.cookie-toggle.is-on { background: var(--green); }
.cookie-toggle.is-on::after { transform: translateX(20px); }
.cookie-toggle.is-disabled { opacity: .55; cursor: not-allowed; }
.cookie-modal-footer {
  display: flex; gap: .7rem; justify-content: flex-end; flex-wrap: wrap;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,.07);
}
.cookie-modal-footer .btn { font-size: .88rem; padding: .65rem 1.2rem; }
.cookie-btn-ghost-dark { border-color: rgba(45,45,45,.25) !important; color: var(--ink-soft) !important; }
.cookie-btn-ghost-dark:hover { background: rgba(45,45,45,.06) !important; }

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
  .hero-scroll-dot::after { animation: none; }
  .splash-logo span { animation: none; }
}
