/* ============================================================
   SALSA DANCE VEGAS — Design System v2
   "Vegas Golden Hour" — light, luxe, cinematic
   Type: Cabinet Grotesk 800 Title Case (display) + Space Grotesk (text)
   ============================================================ */

:root {
  --ivory: #FAF6F0;
  --ivory-2: #F5EEE3;
  --champagne: #F3E8D8;
  --magenta: #E0218A;
  --magenta-deep: #B81870;
  --gold: #C9A84C;
  --gold-soft: #E3CF9A;
  --ink: #1C1917;
  --ink-60: rgba(28, 25, 23, 0.6);
  --ink-30: rgba(28, 25, 23, 0.3);
  --ink-10: rgba(28, 25, 23, 0.1);
  --white: #FFFFFF;

  --font-display: "Cabinet Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Space Grotesk", -apple-system, Helvetica, Arial, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxe: cubic-bezier(0.65, 0, 0.15, 1);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-pad: clamp(4.5rem, 10vw, 9rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-text);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--magenta); color: var(--white); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  z-index: 10000;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.preloader-mark {
  width: clamp(56px, 8vw, 84px);
  will-change: transform;
}
.preloader-word {
  font-family: var(--font-text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  overflow: hidden;
}
.preloader-word span { display: inline-block; will-change: transform; }
.preloader-word em {
  font-style: normal;
  color: var(--magenta);
}
html.no-js .preloader { display: none; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--magenta);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(224, 33, 138, 0.5);
  transition: width 0.35s var(--ease-out-expo), height 0.35s var(--ease-out-expo),
              border-color 0.3s, background-color 0.3s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed; inset: -100%;
  width: 300%; height: 300%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ---------- Typography ---------- */
.display-xl {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 7.6rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.008em;
}
.display-md {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.08;
}
.italic-accent {
  font-style: normal;
  background: linear-gradient(100deg, var(--magenta) 20%, var(--gold) 50%, var(--magenta) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--magenta);
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.eyebrow {
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2.5rem; height: 1px;
  background: var(--gold);
}
.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 40ch;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: box-shadow 0.5s var(--ease-out-expo), background-color 0.3s, border-color 0.3s;
  overflow: hidden;
  will-change: transform;
}
.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(224, 33, 138, 0.35);
}
.btn-primary:hover {
  background: var(--magenta-deep);
  box-shadow: 0 12px 40px rgba(224, 33, 138, 0.5);
}
.btn-outline {
  border: 1.5px solid var(--ink-30);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); }
.btn .arrow { transition: transform 0.4s var(--ease-out-expo); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.06);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .top {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}
.nav-logo-text .bottom {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--magenta);
  letter-spacing: 0.09em;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 0.25rem 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out-expo);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { flex-shrink: 0; }
.nav .btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(2.5rem, 6vh, 5rem);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero-veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(250, 246, 240, 0.92) 0%,
      rgba(250, 246, 240, 0.55) 28%,
      rgba(250, 246, 240, 0.18) 55%,
      rgba(250, 246, 240, 0.75) 88%,
      var(--ivory) 100%);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.hero-kicker .dot { color: var(--magenta); font-size: 0.6rem; }
.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.8rem;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line > span { display: inline-block; will-change: transform; }
.hero-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.hero-sub .lead { max-width: 46ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* Spinning badge */
.hero-badge {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  top: 22vh;
  width: clamp(110px, 12vw, 150px);
  height: clamp(110px, 12vw, 150px);
  z-index: 2;
}
.hero-badge .ring {
  width: 100%; height: 100%;
  animation: spin 18s linear infinite;
}
.hero-badge .ring text {
  font-family: var(--font-text);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  fill: var(--ink);
}
.hero-badge .center-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-badge .center-mark svg { width: 34%; height: 34%; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 860px) { .hero-badge { display: none; } }

.hero-scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 2.2rem;
  background: linear-gradient(var(--ink-30), transparent);
  animation: scroll-pulse 2s var(--ease-luxe) infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 860px) { .hero-scroll { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.15rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem;
  will-change: transform;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-item .star { color: var(--gold); font-size: 0.9rem; }
.marquee-item em { font-style: normal; color: var(--gold-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections base ---------- */
section { position: relative; }
.section-pad { padding: var(--section-pad) var(--gutter); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.container { max-width: 1400px; margin: 0 auto; }

/* ---------- Manifesto (kinetic text) ---------- */
.manifesto {
  background: var(--ivory);
}
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: -0.005em;
  max-width: 26ch;
  margin: 0 auto;
}
.manifesto-text .word {
  display: inline-block;
  opacity: 0.1;
  will-change: opacity;
}
.manifesto-text em { font-style: normal; color: var(--magenta); }
.manifesto-text .gold { color: var(--gold); font-style: normal; }

/* ---------- Services: horizontal gallery ---------- */
.services {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 100%);
}
.services-pin { overflow: hidden; }
.services-track {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
  padding: 0 var(--gutter);
  width: max-content;
  will-change: transform;
}
.service-card {
  position: relative;
  width: clamp(300px, 34vw, 460px);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(28, 25, 23, 0.08);
  transition: box-shadow 0.6s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  box-shadow: 0 35px 80px rgba(28, 25, 23, 0.16);
}
.service-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-media img, .service-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}
.service-card:hover .service-media img,
.service-card:hover .service-media video { transform: scale(1.07); }
.service-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-tag.hot { background: var(--magenta); color: var(--white); }
.service-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.service-body p { font-size: 0.93rem; color: var(--ink-60); flex-grow: 1; }
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px solid var(--ink-10);
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.service-price small {
  font-family: var(--font-text);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-60);
  display: block;
  letter-spacing: 0.06em;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--magenta);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
@media (max-width: 860px) {
  .services-pin { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .services-track { padding-bottom: 1rem; }
  .service-card { width: 82vw; }
}

/* ---------- Feature (first dance) ---------- */
.feature {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-media {
  border-radius: 260px 260px 20px 20px; /* arched, editorial */
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
.feature-media video { width: 100%; height: 100%; object-fit: cover; }
.feature .eyebrow { color: rgba(250, 246, 240, 0.6); }
.feature h2 { color: var(--ivory); margin: 1.2rem 0 1.4rem; }
.feature h2 em {
  color: var(--gold-soft);
  font-style: normal;
}
.feature p { color: rgba(250, 246, 240, 0.72); max-width: 44ch; margin-bottom: 2rem; }
.feature-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2.2rem;
}
.feature-quote blockquote {
  font-family: var(--font-text);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ivory);
  font-weight: 500;
}
.feature-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.55);
  letter-spacing: 0.08em;
}

/* ---------- Stats (with watermark) ---------- */
.stats {
  background: var(--champagne);
  overflow: hidden;
}
.watermark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.watermark span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(28, 25, 23, 0.09);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}
.stat-num sup { font-size: 0.45em; color: var(--magenta); }
.stat-label {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Steps ---------- */
.steps { background: var(--ivory); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}
.step {
  padding: 2.4rem 2rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 15px 50px rgba(28, 25, 23, 0.06);
  position: relative;
  transition: transform 0.5s var(--ease-out-expo);
}
.step:hover { transform: translateY(-6px); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}
.step p { font-size: 0.95rem; color: var(--ink-60); }

/* ---------- FAQ ---------- */
.faq { background: var(--ivory-2); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ink-10); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  padding: 1.6rem 0;
  font-family: var(--font-text);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
}
.faq-q .icon {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 1.5px solid var(--ink-30);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-family: var(--font-text);
  transition: transform 0.45s var(--ease-out-expo), background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item.open .icon {
  transform: rotate(45deg);
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-luxe);
}
.faq-a p {
  padding: 0 0 1.6rem;
  color: var(--ink-60);
  max-width: 60ch;
}

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(120% 160% at 15% 0%, rgba(227, 207, 154, 0.55) 0%, rgba(227, 207, 154, 0) 45%),
    linear-gradient(120deg, #F9D8B8 0%, #F2A0C4 45%, var(--magenta) 100%);
  color: var(--ink);
  text-align: center;
  border-radius: 32px;
  margin: 0 var(--gutter) var(--section-pad);
  padding: clamp(4rem, 9vw, 7.5rem) var(--gutter);
  overflow: hidden;
  position: relative;
}
.cta h2 { max-width: 16ch; margin: 0 auto 1.4rem; }
.cta h2 em { font-style: italic; font-weight: 400; color: var(--white); }
.cta p { max-width: 46ch; margin: 0 auto 2.4rem; color: rgba(28, 25, 23, 0.75); font-size: 1.1rem; }
.cta .btn-primary {
  background: var(--ink);
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.3);
}
.cta .btn-primary:hover { background: #000; }

/* ---------- Book / form ---------- */
.book { background: var(--ivory); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } }
.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.book-form .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid rgba(28, 25, 23, 0.14);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(224, 33, 138, 0.12);
}
.quote-box {
  margin-top: 0.5rem;
  padding: 1.3rem 1.5rem;
  border-radius: 14px;
  background: var(--champagne);
  border: 1px dashed var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.quote-box .label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); }
.quote-box .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
}
.quote-box .amount small { font-size: 0.5em; color: var(--ink-60); font-family: var(--font-text); font-weight: 500; }

/* ---------- Footer v2 ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.65);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.footer-cta {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}
.footer-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.008em;
  color: var(--ivory);
  max-width: 14ch;
}
.footer-cta h2 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--magenta), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--magenta);
}
.footer-cta .btn { flex-shrink: 0; }
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand-block { max-width: 34ch; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
}
.footer-brand svg { width: 40px; height: 40px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.footer-brand-text .top {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ivory);
}
.footer-brand-text .bottom {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.09em;
  color: var(--magenta);
}
.footer-brand-block p { font-size: 0.92rem; line-height: 1.7; }
.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.footer li { margin-bottom: 0.7rem; font-size: 0.93rem; }
.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--ivory); }
.footer-watermark {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(6rem, 19vw, 20rem);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250, 246, 240, 0.14);
  user-select: none;
  pointer-events: none;
  transform: translateY(0.14em);
}
.footer-watermark em {
  -webkit-text-stroke: 0;
  background: linear-gradient(100deg, var(--magenta), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.4);
}
.pride {
  background: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- Service pages ---------- */
.svc-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--gutter) clamp(2.5rem, 6vh, 4.5rem);
  overflow: hidden;
}
.svc-hero .hero-media { position: absolute; inset: 0; z-index: -2; }
.svc-hero-content { position: relative; z-index: 1; }
.svc-hero h1 { max-width: 16ch; margin-bottom: 1.6rem; }
.svc-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin: 2.4rem 0 1rem;
}
.svc-prose h2:first-child { margin-top: 0; }
.svc-prose h2 em { font-style: normal; color: var(--magenta); }
.svc-prose p { color: var(--ink-60); margin-bottom: 1.2rem; max-width: 62ch; }
.svc-prose strong { color: var(--ink); }
.svc-side { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
.price-banner {
  background: var(--ink);
  color: var(--ivory);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-banner .label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft);
}
.price-banner .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}
.price-banner .note { font-size: 0.85rem; color: rgba(250, 246, 240, 0.6); margin-bottom: 1rem; }
.price-banner .btn { justify-content: center; }
.included {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 15px 50px rgba(28, 25, 23, 0.06);
}
.included h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.included li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.8rem;
  font-size: 0.93rem;
  color: var(--ink-60);
  border-bottom: 1px solid var(--ink-10);
}
.included li:last-child { border-bottom: none; }
.included li::before {
  content: "✦";
  position: absolute;
  left: 0.2rem;
  color: var(--gold);
  font-size: 0.8rem;
}
.related { background: var(--ivory-2); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.06);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 25, 23, 0.12);
}
.related-note {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-60);
}
.related-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.1;
}
.related-arrow { color: var(--magenta); font-size: 1.2rem; margin-top: 0.4rem; }

/* ---------- About page ---------- */
.about-hero {
  padding: 11rem var(--gutter) 4rem;
  background: var(--champagne);
}
.about-hero h1 { max-width: 16ch; margin: 1.2rem 0 1.6rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-media {
  border-radius: 260px 260px 20px 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(28, 25, 23, 0.15);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.timeline { max-width: 1200px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--ink-10);
}
.timeline-item .year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--magenta);
}
.timeline-item h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.timeline-item p { color: var(--ink-60); font-size: 0.95rem; max-width: 60ch; }

/* ---------- Reveal helpers (GSAP hooks) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-img { clip-path: inset(100% 0 0 0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-img { clip-path: none; }
  .marquee-track { animation: none; }
  .preloader { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
