/* ---------- TOKENS ---------- */
:root {
  --rose: #c97b8a;
  --rose-deep: #8a4555;
  --rose-soft: #f3d4dc;
  --cream: #faf5ee;
  --cream-2: #f3e9dd;
  --ink: #1a1115;
  --ink-2: #3a2a30;
  --muted: #6b5c63;
  --gold: #c8a77a;
  --line: rgba(26, 17, 21, 0.08);
  --shadow-sm: 0 4px 16px rgba(26, 17, 21, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 17, 21, 0.1);
  --shadow-lg: 0 30px 80px rgba(26, 17, 21, 0.18);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }

.italic { font-style: italic; }
.serif { font-family: 'Fraunces', serif; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1rem;
}
.eyebrow.dark { color: var(--ink); opacity: 0.5; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 600px) { .container { padding: 0 1.25rem; } }

/* ---------- CURSOR ---------- */
.cursor {
  position: fixed;
  width: 28px; height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), border-color 0.2s, background 0.2s, width 0.25s var(--ease), height 0.25s var(--ease);
  mix-blend-mode: difference;
  border-color: white;
}
.cursor.hover {
  width: 64px; height: 64px;
  background: white;
  border-color: white;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 4rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.loader-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: reveal 1.4s var(--ease) forwards;
}
@keyframes reveal {
  0% { transform: translateX(0); }
  100% { transform: translateX(101%); }
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(250, 245, 238, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 1rem 0;
  border-bottom-color: var(--line);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.brand .dot {
  width: 6px; height: 6px;
  background: var(--rose);
  border-radius: 50%;
  display: inline-block;
}
.brand em { font-style: italic; color: var(--rose); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--rose); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.lang-picker {
  display: flex;
  gap: 1px;
  align-items: center;
  background: var(--cream-2);
  border-radius: 999px;
  padding: 3px;
  margin-left: 0.5rem;
}
.lang-picker button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  line-height: 1;
}
.lang-picker button:hover { color: var(--ink); }
.lang-picker button.active {
  background: var(--ink);
  color: var(--cream);
}

@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .lang-picker { margin-left: 0; gap: 0; padding: 2px; }
  .lang-picker button { padding: 0.35rem 0.5rem; font-size: 0.65rem; }
}
@media (max-width: 480px) {
  .nav-links { gap: 0.5rem; }
  .lang-picker button { padding: 0.3rem 0.4rem; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 12rem);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 7rem; }
}

.hero-text { position: relative; }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .line { width: 40px; height: 1px; background: var(--ink); opacity: 0.4; }

.hero h1 {
  margin-bottom: 2rem;
}
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}
.hero h1 .word:nth-child(1) > span { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) > span { animation-delay: 0.4s; }
.hero h1 .word:nth-child(3) > span { animation-delay: 0.5s; }
.hero h1 .word:nth-child(4) > span { animation-delay: 0.6s; }
.hero h1 .word:nth-child(5) > span { animation-delay: 0.7s; }
.hero h1 .word:nth-child(6) > span { animation-delay: 0.8s; }
.hero h1 em {
  color: var(--rose);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  letter-spacing: -0.015em;
}
@keyframes rise {
  to { transform: translateY(0); }
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta-row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1.2s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn .arrow {
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(6px); }

.hero-stats {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1.4s forwards;
}
.hero-stat { min-width: 0; }
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--ink);
  display: block;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.75rem; margin-top: 3rem; }
  .hero-stat .num { font-size: 1.8rem; }
  .hero-stat .lbl { font-size: 0.7rem; letter-spacing: 0.12em; }
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
  opacity: 0;
  animation: fade-up 1.2s var(--ease) 0.6s forwards;
}
.hero-visual .frame {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--gold) 100%);
}
.hero-visual .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero-visual:hover .frame img { transform: scale(1.08); }

.hero-visual .frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2) 100%);
}
.hero-tag-card {
  position: absolute;
  background: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-tag-1 {
  top: 8%; left: -6%;
}
.hero-tag-2 {
  bottom: 14%; right: -8%;
  animation-delay: 3s;
}
.hero-tag-3 {
  bottom: 32%; left: -10%;
  animation-delay: 1.5s;
  background: var(--ink);
  color: var(--cream);
}
.hero-tag-card .swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rose);
}
.hero-tag-2 .swatch { background: var(--gold); }
.hero-tag-3 .swatch { background: var(--rose-soft); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 900px) {
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-tag-1 { left: -2%; }
  .hero-tag-2 { right: -2%; }
}

/* MARQUEE */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee-track span::after {
  content: '✦';
  color: var(--rose);
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- SECTION BASE ---------- */
section { padding: 8rem 0; position: relative; }
@media (max-width: 700px) { section { padding: 5rem 0; } }
@media (max-width: 480px) { section { padding: 3.75rem 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 3rem; }
}
.section-head h2 { line-height: 1; }
.section-head h2 em { color: var(--rose); font-style: italic; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 520px; }

/* ---------- SERVICES ---------- */
.services { background: var(--cream); }
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.services-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--cream-2);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}
.services-note strong { color: var(--ink); font-weight: 600; }
.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "num   arrow"
    "title arrow"
    "desc  desc"
    "dur   dur";
  gap: 0.75rem 1rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 240px;
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.service-row > * { position: relative; z-index: 1; }
.service-row:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(26, 17, 21, 0.35);
}
.service-row:hover::before { opacity: 1; }
.service-num {
  grid-area: num;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.service-row h3 {
  grid-area: title;
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  line-height: 1.15;
  transition: color 0.3s;
}
.service-row:hover h3 { color: var(--rose); }
.service-row .desc {
  grid-area: desc;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  align-self: end;
}
.service-row .duration {
  grid-area: dur;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.service-row .arrow-circle {
  grid-area: arrow;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
  background: white;
  align-self: start;
}
.service-row:hover .arrow-circle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: rotate(-45deg);
}
.service-row .arrow-circle svg { transition: transform 0.4s var(--ease); }
@media (max-width: 800px) {
  .services-list { grid-template-columns: 1fr; gap: 1rem; }
  .service-row {
    padding: 1.5rem;
    min-height: 0;
  }
  .service-row h3 { font-size: 1.4rem; }
  .service-row .arrow-circle { width: 40px; height: 40px; }
}

/* ---------- GALLERY (parallax photo strip) ---------- */
.gallery-section { padding: 4rem 0; background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  height: 70vh;
  min-height: 480px;
}
.gallery .item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}
.gallery .item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery .item:hover img { transform: scale(1.05); }
.gallery .item.placeholder {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 60%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gallery .item.placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18) 0%, transparent 50%);
}
.gallery .item.placeholder .placeholder-inner {
  position: relative;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
}
.gallery .item.placeholder .placeholder-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.gallery .item.placeholder .placeholder-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.gallery .item.placeholder .placeholder-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(250, 245, 238, 0.7);
  letter-spacing: 0.05em;
}
.gallery .item:nth-child(1) { transform: translateY(-30px); }
.gallery .item:nth-child(2) { transform: translateY(20px); }
.gallery .item:nth-child(3) { transform: translateY(-10px); }
.gallery .item:nth-child(4) { transform: translateY(40px); }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery .item { aspect-ratio: 3/4; transform: none !important; }
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 123, 138, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-quote-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 245, 238, 0.95);
  backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 1.25rem;
  border-radius: var(--r-sm);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
}

.about h2 { color: var(--cream); margin-bottom: 1.5rem; }
.about h2 em { color: var(--rose-soft); font-style: italic; }
.about p { color: rgba(250, 245, 238, 0.7); font-size: 1.05rem; margin-bottom: 1rem; max-width: 500px; }
.about-text p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 4.5rem;
  line-height: 0.85;
  float: left;
  margin: 0.35rem 0.7rem 0 0;
  color: var(--rose);
  letter-spacing: -0.02em;
}
@media (max-width: 600px) {
  .about-text p:first-of-type::first-letter { font-size: 3.5rem; margin-right: 0.55rem; }
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; gap: 0.75rem; }
}
.about-feature {
  background: rgba(250, 245, 238, 0.06);
  border: 1px solid rgba(250, 245, 238, 0.1);
  padding: 1.25rem;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.4s var(--ease);
}
.about-feature:hover {
  background: rgba(250, 245, 238, 0.1);
  transform: translateY(-3px);
}
.about-feature .icon {
  width: 36px; height: 36px;
  background: var(--rose);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.about-feature .icon svg { width: 18px; height: 18px; }
.about-feature h4 { font-family: inherit; font-size: 0.95rem; font-weight: 600; color: var(--cream); }
.about-feature p { font-size: 0.85rem; color: rgba(250, 245, 238, 0.6); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--cream-2); }
.testimonial-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .testimonial-stage { grid-template-columns: 1fr; gap: 1.25rem; }
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(26, 17, 21, 0.35);
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.testimonial blockquote::before { content: '"'; color: var(--rose); margin-right: 0.15rem; }
.testimonial blockquote::after { content: '"'; color: var(--rose); margin-left: 0.15rem; }
.testimonial .author {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testimonial .stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.testimonial-controls { display: none; }

/* ---------- BOOKING ---------- */
.booking {
  background: var(--cream);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  bottom: -300px; left: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201, 123, 138, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.booking .section-head h2 { color: var(--ink); }
.booking .section-head h2 em { color: var(--rose); }
.booking .section-head p { color: var(--muted); }
.booking .eyebrow { color: var(--rose); }

.booking-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.booking-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.booking-stat .ic {
  width: 38px; height: 38px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ink);
}
.booking-stat > div { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.booking-stat .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}
.booking-stat .val {
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.85;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .booking-stats { grid-template-columns: 1fr; gap: 0.65rem; margin-bottom: 2rem; }
}

.booking-cta-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.booking-cta-panel .btn-large {
  font-size: 1.05rem;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
}
.booking-cta-sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .booking-cta-panel { padding: 2rem 1.5rem; }
  .booking-cta-panel .btn-large { font-size: 1rem; padding: 1.1rem 2rem; width: 100%; justify-content: center; }
}

.twint-card {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  padding: 1.75rem;
  border-radius: var(--r-md);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.twint-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 30%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.1); } }
.twint-card .badge {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.twint-card h4 { font-family: inherit; font-size: 1.05rem; color: white; font-weight: 600; }
.twint-card p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-top: 0.25rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-featured {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.faq-featured .twint-card {
  margin-top: 0;
  padding: 2rem 2.25rem;
}
.faq-featured .twint-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  margin-top: 0.25rem;
}
.faq-featured .twint-card p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 500;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink);
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary .plus {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--cream);
}
.faq-item .answer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 640px;
  animation: fade-up 0.4s var(--ease);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(250, 245, 238, 0.7);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250, 245, 238, 0.1);
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; margin-bottom: 2rem; } }
.footer-brand .brand { font-size: 2rem; color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { max-width: 320px; }
.footer-col h5 {
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-col a:hover { color: var(--rose-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-legal a {
  text-decoration: underline;
  text-decoration-color: rgba(250, 245, 238, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-legal a:hover { color: var(--rose); text-decoration-color: var(--rose); }
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  font-size: 0.85rem;
  line-height: 1.5;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1; color: rgba(250, 245, 238, 0.85); }
.cookie-banner a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner a:hover { color: var(--cream); }
.cookie-accept {
  background: var(--rose);
  color: var(--cream);
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-accept:hover { background: var(--rose-deep); }
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
    padding: 1rem;
    gap: 0.75rem;
  }
  .cookie-accept { width: 100%; }
}

/* ---------- LEGAL MODAL ---------- */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.legal-modal.show { opacity: 1; }
.legal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 21, 0.7);
  backdrop-filter: blur(4px);
}
.legal-modal-panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  background: var(--cream);
  color: var(--ink);
  border-radius: 18px;
  padding: 2.5rem 2.5rem 3rem;
  overflow-y: auto;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.5);
}
.legal-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.2s;
}
.legal-modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.legal-modal-panel h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.1;
}
.legal-modal-body { font-size: 0.95rem; line-height: 1.65; color: var(--ink); }
.legal-modal-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink);
}
.legal-modal-body h3:first-child { margin-top: 0; }
.legal-modal-body p { margin: 0 0 0.75rem; color: var(--ink); }
.legal-modal-body ul { margin: 0.5rem 0 1rem; padding-left: 1.25rem; }
.legal-modal-body li { margin-bottom: 0.5rem; }
.legal-modal-body a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-modal-body a:hover { color: var(--ink); }
.legal-modal-body em { color: var(--muted); font-style: italic; }
.legal-modal-body code {
  background: var(--cream-2);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
}
@media (max-width: 600px) {
  .legal-modal-panel { padding: 1.5rem 1.5rem 2rem; max-height: 100vh; border-radius: 0; width: 100%; }
}

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all 0.3s var(--ease);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
  z-index: 200;
  font-size: 0.9rem;
  font-weight: 500;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: none; }
