/* ── RESET & ROOT ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #faf8f6;
  --warm:    #f3ede8;
  --nude:    #e8ddd5;
  --rose:    #c97d8c;
  --rose-dk: #9d4f62;
  --ink:     #1c1410;
  --muted:   #6b5751;
  --light:   #b8a49e;
  --white:   #ffffff;
  --display: 'Playfair Display', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* hide default — custom cursor takes over */
}

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--rose);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, background 0.3s ease,
              opacity 0.3s ease;
  mix-blend-mode: normal;
}
.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--rose-dk);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

/* cursor states */
body.cursor-hover .cursor {
  width: 60px; height: 60px;
  background: rgba(201,125,140,0.12);
  border-color: var(--rose-dk);
}
body.cursor-hover .cursor-dot { opacity: 0; }

body.cursor-click .cursor {
  width: 22px; height: 22px;
  background: rgba(201,125,140,0.3);
}

/* show default cursor inside video controls, selects */
video, input, select, textarea { cursor: auto; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  height: 64px;
  background: rgba(250,248,246,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nude);
  transition: box-shadow 0.35s, background 0.35s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(28,20,16,0.08);
  background: rgba(250,248,246,0.99);
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; line-height: 1.1; }
.logo-top {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em;
}
.logo-bottom {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--rose);
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted);
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  display: inline-block;
  padding: 9px 22px;
  background: var(--rose-dk);
  color: var(--white);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.nav-book:hover { background: var(--rose); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: none; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--nude);
  z-index: 490; padding: 0 5vw;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--nude);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--rose-dk); }
.mobile-menu a:last-child { border-bottom: none; }

/* ── MAGNETIC BUTTON ────────────────────────────────────── */
.magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh; min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1);
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  transform: scale(1.06);
  transition: transform 7s ease-out;
}
.slide.active img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,20,16,0.03) 0%,
    rgba(28,20,16,0.06) 40%,
    rgba(28,20,16,0.68) 100%
  );
}

.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 7vw 9vh;
}
.hero-tag {
  display: inline-block;
  font-size: 0.68rem; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(250,248,246,0.1);
  border: 1px solid rgba(201,125,140,0.45);
  padding: 5px 14px; width: fit-content;
  margin-bottom: 18px;
  opacity: 0; transform: translateY(12px);
  animation: up 0.8s 0.3s forwards;
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8.5vw, 6rem);
  font-weight: 400; color: var(--white);
  line-height: 1.04; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(20px);
  animation: up 1s 0.55s forwards;
}
.hero-h1 em { font-style: italic; font-weight: 400; }

.hero-desc {
  margin-top: 18px;
  font-size: 0.88rem; font-weight: 300;
  color: rgba(255,255,255,0.72); letter-spacing: 0.06em;
  opacity: 0; transform: translateY(12px);
  animation: up 0.9s 0.8s forwards;
}
.hero-actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: up 0.9s 1s forwards;
}

.btn-solid {
  padding: 14px 30px;
  background: var(--rose-dk); color: var(--white);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-solid:hover { background: var(--rose); }
.btn-ghost {
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.slide-dots {
  position: absolute; bottom: 28px; right: 7vw;
  display: flex; gap: 8px; align-items: center;
}
.dot {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: none; border-radius: 2px;
  transition: width 0.35s, background 0.35s;
}
.dot.active { width: 36px; background: var(--rose); }

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 7vw;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: up 1s 1.4s forwards;
}
.scroll-hint span {
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@keyframes up { to { opacity: 1; transform: translateY(0); } }

/* ── SHARED SECTION ─────────────────────────────────────── */
.section { padding: 88px 7vw; }
.eyebrow {
  font-size: 0.67rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 10px; font-weight: 400;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400; line-height: 1.1; color: var(--ink);
}
.h2 em { font-style: italic; }
.rule {
  width: 36px; height: 1.5px;
  background: var(--rose); margin: 20px 0 28px;
  border-radius: 2px;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-text-col {
  padding: 88px 7vw;
  display: flex; flex-direction: column; justify-content: center;
}
.about-body {
  font-size: 0.93rem; font-weight: 300;
  color: var(--muted); line-height: 1.95;
}
.about-img-col {
  position: relative; overflow: hidden; min-height: 480px;
}
.about-img-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.8s ease;
}
.about-img-col:hover img { transform: scale(1.04); }

.wa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  background: var(--rose-dk); color: var(--white);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}
.wa-cta:hover { background: var(--rose); }

/* ── SERVICES ───────────────────────────────────────────── */
.services { background: var(--cream); }
.services-header { margin-bottom: 52px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--nude);
}
.svc {
  background: var(--white);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s;
  transform-style: preserve-3d;
}
.svc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.svc:hover { background: var(--cream); }
.svc:hover::before { transform: scaleX(1); }

/* shimmer on hover */
.svc::after {
  content: '';
  position: absolute; top: -60%; left: -60%;
  width: 40%; height: 220%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.55) 50%, transparent 60%);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0s;
}
.svc:hover::after {
  transform: rotate(25deg) translateX(500%);
  transition: transform 0.7s ease;
}

.svc-num {
  font-family: var(--display);
  font-size: 2.6rem; font-weight: 400;
  color: var(--nude); line-height: 1;
  margin-bottom: 20px; font-style: italic;
  transition: color 0.4s;
}
.svc:hover .svc-num { color: var(--rose); }
.svc-name {
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 500;
  color: var(--ink); margin-bottom: 10px;
}
.svc-desc {
  font-size: 0.82rem; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  margin-bottom: 24px;
}
.svc-price {
  font-family: var(--display);
  font-size: 1.75rem; font-weight: 400;
  color: var(--rose-dk); margin-bottom: 20px;
}
.svc-price small {
  font-family: var(--sans); font-size: 0.72rem;
  font-weight: 300; color: var(--light);
  letter-spacing: 0.06em; display: block; margin-top: 2px;
}
.svc-book {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-dk); text-decoration: none;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
  display: inline-block;
}
.svc:hover .svc-book { opacity: 1; transform: translateY(0); }
.svc-book:hover { color: var(--rose); }

/* ── GALLERY ────────────────────────────────────────────── */
.gallery { background: var(--warm); }
.gallery-intro { margin-bottom: 44px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}
.g-item {
  position: relative; overflow: hidden; cursor: none;
  background: var(--nude);
}
.g-item:first-child { grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.g-item:hover img { transform: scale(1.07); }
.g-caption {
  position: absolute; inset: 0;
  background: rgba(28,20,16,0);
  display: flex; align-items: flex-end; padding: 20px;
  transition: background 0.35s;
}
.g-item:hover .g-caption { background: rgba(28,20,16,0.38); }
.g-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover .g-label { opacity: 1; transform: translateY(0); }

/* ── VIDEOS ─────────────────────────────────────────────── */
.videos { background: var(--ink); padding-bottom: 80px; }
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; margin-top: 44px; padding: 0 7vw;
}
.vid-wrap {
  aspect-ratio: 9/16;
  overflow: hidden; position: relative;
  background: #0f0a08;
}
.vid-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.4) 0%, transparent 40%);
  pointer-events: none;
}

/* mute button */
.mute-btn {
  position: absolute; bottom: 16px; right: 16px;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(28,20,16,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
  backdrop-filter: blur(6px);
}
.mute-btn:hover {
  background: var(--rose-dk);
  border-color: var(--rose);
  transform: scale(1.1);
}
.mute-btn svg { width: 16px; height: 16px; }

.vid-note {
  text-align: center;
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  padding: 0 7vw;
}

/* ── TIKTOK STRIP ───────────────────────────────────────── */
.tiktok-strip {
  background: var(--rose-dk);
  padding: 36px 7vw;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.tt-heading {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 400;
  font-style: italic; color: var(--white);
}
.tt-handle {
  font-size: 0.74rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.68); margin-top: 4px;
}
.tt-btn {
  display: inline-block; padding: 11px 24px;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.tt-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.contact-left { padding: 88px 7vw; }
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.ci-label {
  font-size: 0.63rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose);
  margin-bottom: 5px; font-weight: 400;
}
.ci-val {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 400; color: var(--ink);
}
.ci-val a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ci-val a:hover { color: var(--rose-dk); }
.ci-sub { font-size: 0.78rem; font-weight: 300; color: var(--muted); margin-top: 2px; }

.contact-right {
  background: var(--warm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 40px; gap: 20px;
  border-left: 1px solid var(--nude);
}
.pin-icon svg { width: 52px; height: 52px; }
.pin-place {
  font-family: var(--display); font-size: 1.5rem;
  font-weight: 400; color: var(--ink); text-align: center;
}
.pin-desc {
  font-size: 0.83rem; font-weight: 300;
  color: var(--muted); text-align: center; line-height: 1.8;
}
.dir-btn {
  padding: 12px 26px; background: var(--ink);
  color: var(--white); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s;
}
.dir-btn:hover { background: var(--rose-dk); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: #110d0b;
  padding: 56px 7vw 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.ft-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ft-logo-name {
  font-family: var(--display); font-size: 1.3rem;
  font-weight: 400; color: var(--white); letter-spacing: 0.03em;
}
.ft-logo-sub {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--rose); display: block;
}
.ft-bio { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.85; }
.ft-col-head {
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 18px;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ft-links a {
  text-decoration: none; font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.42); transition: color 0.2s;
}
.ft-links a:hover { color: var(--white); }
.ft-bar {
  grid-column: span 3;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-copy { font-size: 0.68rem; font-weight: 300; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(17,13,11,0.94);
  z-index: 800;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 2.2rem; font-weight: 300;
  cursor: none; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--white); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── PARALLAX IMAGE ─────────────────────────────────────── */
.parallax-img { overflow: hidden; }
.parallax-img img { will-change: transform; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 800px) {
  /* restore default cursor on mobile */
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }

  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }

  .about { grid-template-columns: 1fr; }
  .about-text-col { padding: 56px 5vw; }
  .about-img-col { min-height: 320px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .g-item:first-child { grid-column: span 2; grid-row: span 1; }

  .video-grid { grid-template-columns: 1fr; }

  .tiktok-strip { flex-direction: column; text-align: center; }

  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 5vw; }
  .contact-right { border-left: none; border-top: 1px solid var(--nude); padding: 48px 5vw; }

  footer { grid-template-columns: 1fr; gap: 32px; }
  .ft-bar { grid-column: span 1; flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 64px 5vw; }
  .hero-actions { flex-direction: column; }
  .btn-solid, .btn-ghost { text-align: center; }
  .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}