/* =============================================================
   SALÓN DIANA — Burjassot · Valencia
   Editorial light · blush + cream + charcoal + soft gold
   ============================================================= */

/* 1. Tokens
   ============================================================= */
:root {
  --cream: #faf6f1;
  --cream-2: #f4ede4;
  --paper: #ffffff;
  --ink: #1a1614;
  --ink-2: #3a3331;
  --ink-soft: #6a615c;
  --line: rgba(26, 22, 20, 0.10);
  --line-soft: rgba(26, 22, 20, 0.06);

  --blush: #e8b9b2;       /* dusty pink primary */
  --blush-2: #f3d5d0;     /* lighter blush */
  --blush-3: #f8e7e3;     /* almost pearl */
  --blush-deep: #c98a85;  /* deeper rose */
  --gold: #b48b5a;        /* warm subtle gold */
  --gold-2: #d4b58a;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "Space Mono", "JetBrains Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.4, 0.64, 1);

  --gutter: clamp(1.2rem, 4vw, 3rem);
  --rail-w: 38px;
}

/* 2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
  cursor: auto;
  position: relative;
  min-height: 100vh;
}
*, button, a, input, textarea, [role="button"] { cursor: auto; }
a, button, [role="button"], input[type="submit"] { cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.01em; font-weight: 400; font-family: var(--serif); }
::selection { background: var(--blush-deep); color: var(--cream); }
:focus-visible { outline: 2px solid var(--blush-deep); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Texture canvas — extremely subtle marble/linen */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(232, 185, 178, 0.10), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(180, 139, 90, 0.06), transparent 55%),
    var(--cream);
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(26,22,20,0.012) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(26,22,20,0.010) 0 1px, transparent 1px 5px);
  z-index: -1; pointer-events: none;
  opacity: 0.7;
}

/* Skip link */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* 3. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 100;
  background: var(--cream);
  display: grid; place-items: center;
  animation: splashSafety 0.01s 4.5s forwards;
}
.splash-inner {
  text-align: center;
  display: flex; flex-direction: column; gap: 1.2rem; align-items: center;
}
.splash-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
}
.splash-mark::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -10px; width: 0;
  height: 1px;
  background: var(--blush-deep);
  animation: splashLine 1.6s 0.3s var(--ease-out) forwards;
}
@keyframes splashLine { to { width: 60%; } }
.splash-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: splashFade 0.8s 1.2s var(--ease-out) forwards;
}
@keyframes splashFade { to { opacity: 1; } }
.splash.is-out {
  opacity: 0; pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.6s var(--ease-out), clip-path 0.9s var(--ease-out);
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

/* 4. Side rail
   ============================================================= */
.rail {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: var(--rail-w);
  z-index: 30;
  display: none;
  border-left: 1px solid var(--line-soft);
  background: rgba(250, 246, 241, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 960px) { .rail { display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 1.2rem 0; } }
.rail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blush-deep);
  box-shadow: 0 0 0 0 rgba(201, 138, 133, 0.5);
  animation: railPulse 2.4s infinite;
}
@keyframes railPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 138, 133, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(201, 138, 133, 0); }
}
.rail-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.rail-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blush-deep);
}
body { padding-right: 0; }
@media (min-width: 960px) { body { padding-right: var(--rail-w); } }

/* 5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}
@media (min-width: 960px) { .nav { right: var(--rail-w); } }
.nav.is-scrolled {
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-brand::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush-deep);
  display: inline-block;
}
.nav-list {
  display: none;
  list-style: none;
  gap: 1.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
}
@media (min-width: 960px) { .nav-list { display: flex; } }
.nav-list a {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  color: var(--ink-2);
  transition: color 0.25s var(--ease-out);
  position: relative;
}
.nav-list a sup {
  font-size: 0.55rem;
  color: var(--blush-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-list a:hover { color: var(--blush-deep); }
.nav-cta {
  background: var(--blush);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.nav-cta:hover { background: var(--blush-deep); color: var(--cream); transform: translateY(-1px); }
.nav-cta::after { content: "→"; }

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 0;
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span {
  display: block; height: 1.5px; background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 49;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 0.6rem;
}
.nav-drawer a sup {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--blush-deep);
  letter-spacing: 0.15em;
}

/* 6. Reveal scaffolding
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* defensive — text with data-split must not be invisible */
.reveal[data-split] { opacity: 1; transform: none; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
}
.split-word.is-in > span { transform: translateY(0); }

/* 7. Section frame
   ============================================================= */
section { position: relative; }
.section {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  position: relative;
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(12rem, 28vw, 22rem);
  color: rgba(232, 185, 178, 0.18);
  position: absolute;
  top: 1rem; right: var(--gutter);
  line-height: 0.8;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-kicker {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.section-kicker::before {
  content: ""; width: 28px; height: 1px;
  background: var(--blush-deep);
  display: inline-block;
}

/* 8. Hero
   ============================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: 8rem var(--gutter) 4rem;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner { position: relative; z-index: 2; max-width: 68vw; }
@media (max-width: 960px) { .hero-inner { max-width: 100%; } }
.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: clamp(2rem, 6vw, 4rem);
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blush-deep);
  display: inline-block;
  animation: railPulse 2.4s infinite;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  position: relative;
  z-index: 2;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-title .l2 {
  font-style: italic;
  color: var(--blush-deep);
  padding-left: clamp(2rem, 9vw, 8rem);
  margin-top: -0.05em;
}
.hero-title .l2::before {
  content: "—";
  font-style: normal;
  color: var(--blush-deep);
  margin-right: 0.4em;
  display: inline-block;
}

.hero-tagline {
  margin-top: clamp(2rem, 5vw, 3rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--ink-2);
  max-width: 36ch;
  line-height: 1.3;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-top: 2.2rem;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.btn-primary {
  background: var(--blush);
  color: var(--ink);
  border: 1px solid var(--blush);
}
.btn-primary:hover { background: var(--blush-deep); color: var(--cream); border-color: var(--blush-deep); transform: translateY(-2px); }
.btn-primary::after { content: "→"; transition: transform 0.3s var(--ease-out); }
.btn-primary:hover::after { transform: translateX(4px); }
.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.hero-art {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 26vw, 380px);
  aspect-ratio: 3/4;
  border-radius: 999px 999px 999px 999px / 90% 90% 10% 10%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  animation: heroArtIn 1.6s 0.4s var(--ease-out) forwards;
  box-shadow: 0 30px 80px -30px rgba(201, 138, 133, 0.4);
}
.hero-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.02);
}
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(232, 185, 178, 0.18), transparent 50%);
  pointer-events: none;
}
@keyframes heroArtIn {
  to { opacity: 1; transform: translateY(-50%) scale(1); }
}
@media (max-width: 960px) {
  .hero-art {
    position: relative;
    right: auto; top: auto; transform: none;
    width: clamp(220px, 60vw, 320px);
    margin: 2rem auto 0;
    animation: none; opacity: 1;
  }
}

.hero-corner {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  line-height: 1.5;
}
.hero-corner strong { color: var(--ink); font-weight: 500; }

/* 9. Marquee
   ============================================================= */
.marquee {
  background: var(--blush);
  color: var(--ink);
  padding: 1.1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(26,22,20,0.08);
  border-bottom: 1px solid rgba(26,22,20,0.08);
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeRun 38s linear infinite;
  gap: 2.5rem;
  width: max-content;
}
.marquee.is-reverse .marquee-track { animation-direction: reverse; animation-duration: 50s; }
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.marquee-item::after {
  content: "✦";
  font-style: normal;
  color: var(--ink);
  opacity: 0.5;
  font-size: 0.7em;
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 10. Sobre el salón (01)
   ============================================================= */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.about-grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.about-collage {
  position: relative;
  aspect-ratio: 4/4.5;
  max-width: 540px;
}
.about-collage figure {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.25);
  background: var(--paper);
  padding: 8px;
}
.about-collage figure img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  border-radius: 3px;
}
.about-collage figure:nth-child(1) {
  top: 0; left: 0; width: 58%; aspect-ratio: 3/4;
  transform: rotate(-4deg);
  z-index: 2;
}
.about-collage figure:nth-child(2) {
  top: 12%; right: 0; width: 50%; aspect-ratio: 1/1;
  transform: rotate(5deg);
  z-index: 1;
}
.about-collage figure:nth-child(3) {
  bottom: 0; left: 18%; width: 56%; aspect-ratio: 4/3;
  transform: rotate(-2deg);
  z-index: 3;
}
.about-ribbon {
  position: absolute;
  bottom: 8%; right: -3%;
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  transform: rotate(4deg);
  z-index: 5;
}

.about-text h2 {
  font-style: italic;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
}
.about-text p {
  color: var(--ink-2);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 46ch;
}
.about-aside {
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.4rem 0.8rem;
  background: var(--blush-3);
  color: var(--blush-deep);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
}
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  border-left: 2px solid var(--blush-deep);
  padding-left: 1.2rem;
  margin: 1.8rem 0 2rem;
  line-height: 1.4;
  max-width: 42ch;
}
.about-defs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.6rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.about-defs dt {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.15rem;
}
.about-defs dd { color: var(--ink-2); margin: 0; }

/* 11. Services horizontal pin (02)
   ============================================================= */
.services {
  background: var(--ink);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
  position: relative;
}
.services-header {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter) 3rem;
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.services .section-num { color: rgba(232, 185, 178, 0.12); top: 1rem; }
.services .section-kicker { color: var(--blush-2); }
.services .section-kicker::before { background: var(--blush); }
.services-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--cream);
  line-height: 1.05;
  max-width: 14ch;
}
.services-progress {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush-2);
}
.services-progress strong { color: var(--cream); font-weight: 500; }

.svc-stage {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
}
.svc-track {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  gap: clamp(2rem, 6vw, 5rem);
  will-change: transform;
}
.svc-card {
  flex: 0 0 auto;
  width: min(540px, 80vw);
  height: 70vh;
  min-height: 460px;
  max-height: 640px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 2rem;
  border: 1px solid rgba(232, 185, 178, 0.2);
  background: linear-gradient(180deg, rgba(232, 185, 178, 0.04), rgba(232, 185, 178, 0.01));
  border-radius: 4px;
}
.svc-card-head {
  display: flex; justify-content: space-between; align-items: start;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-2);
}
.svc-card-head .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--blush);
  letter-spacing: -0.02em;
}
.svc-icon {
  width: 88px;
  height: 88px;
  align-self: center;
}
.svc-icon svg { width: 100%; height: 100%; display: block; }
.svc-icon svg path,
.svc-icon svg line,
.svc-icon svg circle,
.svc-icon svg polyline,
.svc-icon svg polygon {
  stroke: var(--blush);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.svc-card.is-active .svc-icon svg path,
.svc-card.is-active .svc-icon svg line,
.svc-card.is-active .svc-icon svg circle,
.svc-card.is-active .svc-icon svg polyline,
.svc-card.is-active .svc-icon svg polygon {
  stroke-dashoffset: 0;
}

.svc-card-body { display: flex; flex-direction: column; gap: 0.6rem; }
.svc-card-body h3 {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.svc-card-body .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blush-2);
}
.svc-card-body p {
  color: rgba(244, 237, 228, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 38ch;
}
.svc-card-foot {
  display: flex; justify-content: space-between; align-items: end;
  border-top: 1px solid rgba(232, 185, 178, 0.18);
  padding-top: 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush-2);
}
.svc-card-foot .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0;
  text-transform: none;
}

.svc-mobile-hint {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-2);
  padding: 1rem var(--gutter);
}
@media (min-width: 960px) { .svc-mobile-hint { display: none; } }

.services-foot-marquee {
  background: var(--blush);
  color: var(--ink);
  margin-top: 0;
}

/* 12. Diana (03)
   ============================================================= */
.diana {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
}
.diana-grid {
  display: grid;
  gap: clamp(2.4rem, 6vw, 5rem);
  align-items: center;
  position: relative; z-index: 1;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .diana-grid { grid-template-columns: 0.9fr 1.1fr; } }
.diana-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--blush-3);
}
.diana-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.05) brightness(1.02);
  transition: transform 1.4s var(--ease-out);
}
.diana-photo:hover img { transform: scale(1.04); }
.diana-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(170deg, transparent, rgba(232, 185, 178, 0.18));
  pointer-events: none;
  z-index: 2;
}
.diana-photo-tag {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: 2px;
}
.diana-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  max-width: 26ch;
}
.diana-quote::before {
  content: "“";
  font-size: 3em;
  color: var(--blush-deep);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.05em;
}
.diana-body p {
  color: var(--ink-2);
  font-size: 1rem;
  max-width: 46ch;
  margin-bottom: 1rem;
}
.diana-sign {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.diana-sign::before {
  content: ""; width: 28px; height: 1px;
  background: var(--blush-deep);
  display: inline-block;
}

/* 13. Gallery (04)
   ============================================================= */
.gallery {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
  position: relative;
}
.gallery-head {
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.gallery-head h2 {
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.gallery .section-num { color: rgba(232, 185, 178, 0.16); }

.gallery-rail {
  display: flex;
  gap: 1.2rem;
  margin: 1rem 0;
  width: max-content;
  animation: marqueeRun 60s linear infinite;
}
.gallery-rail.slow { animation-duration: 90s; }
.gallery-rail.fast { animation-duration: 45s; }
.gallery-rail.reverse { animation-direction: reverse; animation-duration: 75s; }
.gallery-rail figure {
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 14px 40px -20px rgba(0,0,0,0.25);
  background: var(--blush-3);
  flex-shrink: 0;
}
.gallery-rail figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery-rail figure:hover img { transform: scale(1.08); }

/* 14. Reviews (05)
   ============================================================= */
.reviews {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
}
.reviews-head {
  margin-bottom: 3rem;
  position: relative; z-index: 1;
}
.reviews-rating {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.reviews-rating em {
  font-style: normal;
  color: var(--blush-deep);
}
.reviews-rating small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}
.reviews-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -28px rgba(201, 138, 133, 0.4);
  border-color: var(--blush-2);
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -0.3rem; left: 1rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--blush-deep);
  line-height: 1;
}
.review-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  padding-top: 1rem;
}
.review-card .author {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.review-card .author::before {
  content: "★";
  color: var(--blush-deep);
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
}

/* 15. Reserva (06)
   ============================================================= */
.book {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 8rem) var(--gutter);
  overflow: hidden;
}
.book .section-num { color: rgba(232, 185, 178, 0.10); top: 1rem; }
.book .section-kicker { color: var(--blush-2); }
.book .section-kicker::before { background: var(--blush); }
.book-grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 960px) { .book-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }
.book-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.book-sub {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--blush-2);
  margin-bottom: 2.4rem;
  max-width: 44ch;
}

.book-form { display: flex; flex-direction: column; gap: 1.2rem; }
.book-row { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 720px) { .book-row.split { grid-template-columns: 1fr 1fr; } }
.field {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(232, 185, 178, 0.25);
  padding-bottom: 0.6rem;
  transition: border-color 0.3s var(--ease-out);
}
.field:focus-within { border-color: var(--blush); }
.field label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-2);
  margin-bottom: 0.4rem;
  display: flex; gap: 0.6rem; align-items: center;
}
.field label::before {
  content: attr(data-n);
  color: var(--blush);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.2rem;
  padding: 0.4rem 0;
  width: 100%;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 237, 228, 0.4); font-style: italic; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blush) 50%), linear-gradient(135deg, var(--blush) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.field select option { background: var(--ink); color: var(--cream); }
.field textarea { resize: vertical; min-height: 80px; font-size: 1.05rem; line-height: 1.4; }
.book-submit {
  background: var(--blush);
  color: var(--ink);
  border: 1px solid var(--blush);
  padding: 1.1rem 2rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  margin-top: 1rem;
}
.book-submit:hover { background: var(--cream); color: var(--ink); transform: translateY(-2px); }
.book-submit::after { content: "→"; }
.book-alt {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blush-2);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.book-alt a { color: var(--cream); border-bottom: 1px solid var(--blush); padding-bottom: 2px; }
.book-alt a:hover { color: var(--blush); }

.book-aside {
  background: rgba(232, 185, 178, 0.04);
  border: 1px solid rgba(232, 185, 178, 0.18);
  padding: 1.8rem;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.book-aside h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.book-aside dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.4rem;
}
.book-aside dt {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-2);
  padding-top: 0.15rem;
}
.book-aside dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
}
.book-aside dd a { border-bottom: 1px solid var(--blush); }
.book-aside dd a:hover { color: var(--blush); }

/* 16. Footer
   ============================================================= */
.footer {
  background: var(--cream);
  padding: 5rem var(--gutter) 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.footer-display {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3.2rem, 11vw, 8rem);
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  gap: 1.5rem;
  animation: footerDisplay 30s linear infinite;
  will-change: transform;
}
.footer-display span {
  display: inline-flex; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.footer-display span::after {
  content: "·";
  font-style: normal;
  color: var(--blush-deep);
}
@keyframes footerDisplay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr 1.4fr; } }
.footer-block h4 {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-block h4::before {
  content: ""; width: 18px; height: 1px; background: var(--blush-deep); display: inline-block;
}
.footer-block p, .footer-block a {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  display: block;
}
.footer-block a:hover { color: var(--blush-deep); }
.footer-map {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) saturate(0.85); }

.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-legal a { color: var(--ink); border-bottom: 1px solid var(--blush-deep); padding-bottom: 1px; }
.footer-legal a:hover { color: var(--blush-deep); }

/* 17. Misc & accessibility
   ============================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .gallery-rail,
  .footer-display { animation: none; }
  .rail-dot, .hero-meta .dot { animation: none; }
}

/* tablet shrink for hero art and section nums */
@media (max-width: 540px) {
  .section-num { font-size: 8rem; opacity: 0.6; }
  .hero-corner { display: none; }
}
