/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 50%; }
@property --angle      { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg:       #0E0B09;
  --bg-2:     #15110E;
  --bg-3:     #1E1813;
  --cream:    #F2EBDA;
  --cream-2:  #DDD2BC;
  --cream-3:  #8B7E68;
  --accent:   #C5301E;
  --accent-2: #A82516;
  --gold:     #C49A5B;
  --line:     rgba(242,235,218,.12);

  --serif: "EB Garamond", "Garamond", "Georgia", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", 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);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  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; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.005em; font-family: var(--serif); font-weight: 600; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--cream); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 720px)  { .container { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .container { padding-inline: 3.5rem; } }

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

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(197,48,30,.18);
}

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; }
.section-title em { color: var(--gold); font-style: italic; font-weight: 600; }
.section-sub { margin-top: 1rem; color: var(--cream-2); font-size: 1.05rem; max-width: 38rem; }

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(0,0,0,0.28), 0 1px 3px rgba(0,0,0,0.2);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-4px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary {
  background: var(--accent); color: var(--cream);
}
.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(197,48,30,0.32), 0 10px 22px rgba(0,0,0,0.3);
  background: var(--accent-2);
}
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream);
  background: rgba(242,235,218,0.03);
}
.btn-ghost:hover { border-color: var(--gold); box-shadow: 0 22px 50px rgba(0,0,0,0.3); }
.btn svg { width: 1.05em; height: 1.05em; }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3); }

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

/* --- Splash --- */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s var(--ease-out), clip-path 1.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-logo { width: 200px; height: auto; margin-inline: auto; display: block; }
.splash-line {
  display: block; width: 64px; height: 1px; margin: 1rem auto 0;
  background: var(--line); position: relative; overflow: hidden;
}
.splash-line::after {
  content: ""; position: absolute; inset: 0; width: 40%; background: var(--accent);
  animation: splashLine 1.4s var(--ease-soft) infinite;
}
@keyframes splashLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(250%); } }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  height: var(--nav-h);
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(14,11,9,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .3rem 0; font-size: .92rem; font-weight: 500; color: var(--cream-2);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.lang-toggle { display: flex; align-items: center; gap: .35rem; padding: .3rem; border: 1px solid var(--line); border-radius: 999px; }
.lang-flag {
  width: 26px; height: 19px; border-radius: 5px; overflow: hidden; opacity: .45;
  transition: opacity .3s, transform .3s var(--ease-soft); display: block;
}
.lang-flag img { width: 100%; height: 100%; object-fit: cover; }
.lang-flag.is-active { opacity: 1; transform: scale(1.08); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; padding: .7rem 1.3rem; font-size: .85rem; } }

.nav-burger { display: grid; place-items: center; width: 40px; height: 40px; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span, .nav-burger span::before, .nav-burger span::after {
  content: ""; display: block; width: 20px; height: 1.5px; background: var(--cream);
  position: relative; transition: transform .3s var(--ease-soft), opacity .3s;
}
.nav-burger span::before { position: absolute; top: -6px; }
.nav-burger span::after { position: absolute; top: 6px; }
.nav-mobile {
  position: fixed; inset: 0; z-index: 190;
  background: var(--bg-2); color: var(--cream);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.nav-mobile-links a { font-family: var(--serif); font-style: italic; font-size: 1.9rem; }
.nav-mobile-close { position: absolute; top: 1.6rem; right: 1.6rem; width: 44px; height: 44px; }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(.72);
  animation: ambientZoom 32s ease-in-out infinite;
  animation-play-state: paused;
}
.hero.is-in-view .hero-bg img { animation-play-state: running; }
@keyframes ambientZoom {
  0%, 100% { transform: scale(1.05); }
  50%      { transform: scale(1.14); }
}
.hero-bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,11,9,.55) 0%, rgba(14,11,9,.35) 45%, rgba(14,11,9,.92) 100%); }
.hero-mesh {
  position: absolute; inset: -10%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 45% at var(--mesh-x) var(--mesh-y), rgba(197,48,30,.32), transparent 62%),
    conic-gradient(from var(--mesh-angle), rgba(196,154,91,.16), rgba(197,48,30,.14), rgba(196,154,91,.16));
  filter: blur(48px) saturate(120%);
  opacity: .8;
  animation: meshShift 24s linear infinite;
  animation-play-state: paused;
  mix-blend-mode: screen;
  will-change: filter;
}
.hero.is-in-view .hero-mesh { animation-play-state: running; }
@keyframes meshShift {
  0%   { --mesh-angle: 0deg;   --mesh-x: 28%; --mesh-y: 35%; }
  50%  { --mesh-angle: 180deg; --mesh-x: 72%; --mesh-y: 58%; }
  100% { --mesh-angle: 360deg; --mesh-x: 28%; --mesh-y: 35%; }
}
.hero-grain { position: absolute; inset: 0; z-index: -1; opacity: .12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { position: relative; z-index: 1; width: 100%; text-align: center; }
.hero-kicker { justify-content: center; margin-bottom: 1.6rem; }
.hero-title {
  font-size: clamp(2.6rem, 7.4vw, 5.6rem);
  font-weight: 600;
  text-wrap: balance;
  max-width: 17ch;
  margin-inline: auto;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 600; }
.hero-sub {
  margin: 1.6rem auto 0; max-width: 38rem; font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--cream-2);
}
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero-trust { margin-top: 3rem; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.4rem, 4vw, 3rem); }
.hero-trust-item { display: flex; align-items: center; gap: .55rem; color: var(--cream-3); font-size: .85rem; }
.hero-trust-item svg { width: 1.15em; height: 1.15em; color: var(--gold); flex-shrink: 0; }
.hero-scroll {
  display: none;
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  flex-direction: column; align-items: center; gap: .5rem;
  color: var(--cream-3); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
}
@media (min-width: 720px) { .hero-scroll { display: flex; } }
.hero-scroll::after {
  content: ""; width: 1px; height: 28px; background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

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

/* --- About / concept --- */
.about { background: var(--bg); }
.about-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; } }
.about-figure {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 16/10;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,11,9,.7));
}
.about-body p { color: var(--cream-2); font-size: 1.02rem; margin-top: 1.1rem; }
.about-body p:first-of-type { margin-top: 1.5rem; }

.pillars { margin-top: clamp(3rem, 6vw, 5rem); display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { padding: 1.8rem; border-top: 1px solid var(--line); }
.pillar-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.3rem; }
.pillar h3 { font-size: 1.15rem; margin-top: .6rem; }
.pillar p { color: var(--cream-3); font-size: .92rem; margin-top: .5rem; }

/* --- Showcase pinned (services) --- */
.showcase { background: var(--bg-2); position: relative; overflow: clip; }
.showcase-head { padding-inline: 1.25rem; }
@media (min-width: 720px)  { .showcase-head { padding-inline: 2.5rem; } }
@media (min-width: 1280px) { .showcase-head { padding-inline: 3.5rem; } }
.showcase-track {
  display: flex; gap: 1.4rem; padding: .5rem 1.25rem 3rem;
  overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
@media (min-width: 1024px) { .showcase-track { padding-inline: 3.5rem; } }
.svc-card {
  position: relative; flex: 0 0 auto; width: min(78vw, 360px); aspect-ratio: 3/4;
  border-radius: 16px; overflow: hidden; scroll-snap-align: start;
  isolation: isolate;
}
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .55s; }
.svc-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,11,9,.05) 0%, rgba(14,11,9,.15) 40%, rgba(14,11,9,.92) 100%);
}
.svc-card-num {
  position: absolute; top: 1.3rem; left: 1.3rem; z-index: 2;
  font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1rem;
}
.svc-card-body { position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.4rem; z-index: 2; }
.svc-card-body h3 { font-size: 1.35rem; }
.svc-card-body p { margin-top: .55rem; color: var(--cream-2); font-size: .88rem; line-height: 1.5; }
.svc-card:hover img { transform: scale(1.08); filter: saturate(1.15) brightness(1.03); }
.svc-card:hover {
  box-shadow: 0 40px 80px -20px rgba(197,48,30,.28), 0 20px 45px -12px rgba(0,0,0,.5);
}
.has-tilt { transform: perspective(900px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transition: transform .55s var(--ease-soft); }
.has-tilt:hover { transition-duration: .15s; }

/* --- Why choose (strip) --- */
.why { background: var(--bg); }
.why-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.why-item {
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.2rem;
  padding: 1.8rem 0; border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 720px) { .why-item { grid-template-columns: 4rem 1fr auto; align-items: center; } }
.why-num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.4rem; }
.why-item h3 { font-size: 1.25rem; }
.why-item p { color: var(--cream-3); margin-top: .35rem; max-width: 34rem; }
.why-icon { display: none; }
@media (min-width: 720px) {
  .why-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--gold); }
  .why-icon svg { width: 20px; height: 20px; }
}

/* --- Reviews --- */
.reviews { margin-top: clamp(3rem, 6vw, 5rem); }
.reviews-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.reviews-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .15em; }
.reviews-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem; transition: transform .5s var(--ease-soft), border-color .3s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.review-head { display: flex; gap: .7rem; align-items: flex-start; }
.review-avatar {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 600; font-size: .95rem;
  font-family: var(--sans);
}
.review-name { display: flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .92rem; }
.review-time { color: var(--cream-3); font-size: .75rem; margin-top: .15rem; }
.review-stars { color: var(--gold); font-size: .85rem; letter-spacing: .12em; margin-top: .9rem; }
.review-text { color: var(--cream-2); font-size: .88rem; line-height: 1.55; margin-top: .5rem; }

/* --- Booking / contact --- */
.book { position: relative; background: var(--bg-2); overflow: clip; isolation: isolate; }
.book::before {
  content: ""; position: absolute; inset: -40% -10% -10% -10%; z-index: -1;
  background: radial-gradient(45% 35% at 50% 20%, rgba(197,48,30,.22), transparent 72%);
  filter: blur(100px);
}
.book-grid { display: grid; gap: 3rem; }
@media (min-width: 960px) { .book-grid { grid-template-columns: .85fr 1.15fr; gap: 5rem; } }
.book-info h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 600; }
.book-info h2 em { color: var(--gold); font-style: italic; font-weight: 600; }
.book-info p { color: var(--cream-2); margin-top: 1.1rem; }
.book-whatsapp {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: .8rem;
  padding: 1rem 1.4rem; border: 1px solid var(--line); border-radius: 14px;
}
.book-whatsapp svg { width: 1.6rem; height: 1.6rem; color: #25D366; flex-shrink: 0; }
.book-whatsapp strong { display: block; font-size: 1.05rem; }
.book-whatsapp span { display: block; color: var(--cream-3); font-size: .82rem; margin-top: .1rem; }
.book-details { margin-top: 2.2rem; display: grid; gap: .9rem; color: var(--cream-3); font-size: .92rem; }
.book-details div { display: flex; gap: .7rem; align-items: flex-start; }
.book-details svg { width: 1.1em; height: 1.1em; color: var(--gold); flex-shrink: 0; margin-top: .15em; }

.cta-form { position: relative; background: var(--bg-3); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.6rem); transition: opacity .55s var(--ease-out), transform .55s var(--ease-soft); }
.cta-form.is-sent { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.field-row { display: grid; gap: 1.2rem; margin-top: 1.2rem; }
.field-row:first-child { margin-top: 0; }
@media (min-width: 560px) { .field-row.is-two { grid-template-columns: 1fr 1fr; align-items: start; } }
.field { position: relative; margin-top: 1.2rem; }
.field:first-child { margin-top: 0; }
.field-row .field { margin-top: 0; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.35rem 1rem .55rem; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(242,235,218,.03); color: var(--cream); font-family: var(--sans); font-size: .96rem;
  transition: border-color .3s;
}
.field select { appearance: none; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; transition: all .25s var(--ease-out); color: var(--cream-3); font-size: .95rem;
}
.field select + label,
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: .55rem; transform: none; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
}
.cta-submit {
  position: relative; margin-top: 1.5rem; width: 100%; justify-content: center;
}
.cta-form-spinner, .cta-form-check { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.cta-form.is-sending .cta-form-label { opacity: 0; }
.cta-form.is-sending .cta-form-spinner { opacity: 1; }
.cta-form-spinner::after {
  content: ""; width: 18px; height: 18px; border: 1.5px solid rgba(242,235,218,.3); border-top-color: var(--cream);
  border-radius: 50%; animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-success {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -40%); text-align: center;
  opacity: 0; pointer-events: none; transition: opacity .8s var(--ease-out) .2s, transform .9s var(--ease-soft) .2s;
  width: 88%;
}
.cta-success.is-visible { opacity: 1; transform: translate(-50%, -50%); pointer-events: auto; }
.cta-success-icon { width: 52px; height: 52px; margin-inline: auto; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold); }
.cta-success h3 { margin-top: 1.1rem; font-size: 1.3rem; }
.cta-success p { margin-top: .5rem; color: var(--cream-3); font-size: .92rem; }

/* --- Footer --- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-logo { width: 150px; height: auto; }
.footer-tag { margin-top: .8rem; color: var(--cream-3); font-size: .9rem; max-width: 26rem; }
.footer-heading { font-family: var(--sans); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-list { display: grid; gap: .65rem; }
.footer-list a { color: var(--cream-2); font-size: .92rem; }
.footer-list a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .8rem; color: var(--cream-3);
}
.footer-bottom a { color: var(--cream-3); }
.footer-bottom a:hover { color: var(--gold); }

/* --- WhatsApp floating button --- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .4s var(--ease-bounce);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: #0E0B09; }

/* =============================================================
   7. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .hero-mesh { animation: none; }
  .splash-line::after { animation: none; }
}

/* =============================================================
   8. Responsive helpers
   ============================================================= */
@media (max-width: 719px) {
  .book-details { font-size: .88rem; }
}
