:root {
  --pink: #ff00ea;
  --pink-rgb: 255, 0, 234;
  --white: #ffffff;
  --ink: #171316;
  --muted: #756c74;
  --line: rgba(23, 19, 22, 0.15);
  --soft: #f7f3f6;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(92vw, 1480px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

body.is-loading,
body.menu-open,
body:has(dialog[open]) { overflow: hidden; }

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: var(--white); }
body::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 10px; }

button,
input,
select { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }
img { display: block; width: 100%; }

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  transition: transform 1.1s var(--ease);
}

.preloader.is-done {
  transform: translateY(-102%);
  pointer-events: none;
}

.preloader__mark {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1;
}

.preloader__mark span { color: var(--ink); }

.preloader__line {
  position: absolute;
  bottom: 8vh;
  left: 5vw;
  width: 90vw;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.preloader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-100%);
  animation: preloadLine 1.65s var(--ease) forwards;
}

.preloader__count {
  position: absolute;
  right: 5vw;
  bottom: 9vh;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

@keyframes preloadLine { to { transform: translateX(0); } }

.cursor,
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
}

.cursor {
  width: 9px;
  height: 9px;
  background: var(--pink);
  transition: width 0.25s, height 0.25s, background 0.25s;
}

.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor.is-view {
  width: 76px;
  height: 76px;
  background: var(--pink);
  mix-blend-mode: normal;
}

.cursor.is-view span { opacity: 1; }

.cursor-glow {
  z-index: 1;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--pink-rgb), 0.1), transparent 68%);
  transform: translate3d(-500px, -500px, 0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  padding: 11px 12px 11px 22px;
  border: 1px solid rgba(23, 19, 22, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 40px rgba(40, 16, 35, 0.07);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.4s, transform 0.5s var(--ease);
}

.site-header.is-hidden { transform: translate(-50%, -140%); }

.logo,
.footer__logo {
  width: max-content;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.logo span,
.footer__logo span { color: var(--pink); }

.desktop-nav {
  display: flex;
  gap: clamp(22px, 2.8vw, 48px);
}

.desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-book {
  justify-self: end;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 11px 14px 11px 19px;
  color: var(--white);
  border: 0;
  border-radius: 99px;
  background: var(--pink);
  cursor: pointer;
}

.header-book span { font-size: 0.75rem; font-weight: 700; }
.header-book i { font-style: normal; }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 124px 4vw 48px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 19, 22, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 22, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 25vw 25vw;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__orb--one {
  top: 12%;
  left: 38%;
  width: 25vw;
  height: 25vw;
  background: rgba(var(--pink-rgb), 0.06);
}

.hero__orb--two {
  right: -6vw;
  bottom: -12vw;
  width: 40vw;
  height: 40vw;
  border: 1px solid rgba(var(--pink-rgb), 0.2);
}

.hero__eyebrow {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 2.7vw;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(var(--pink-rgb), 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(var(--pink-rgb), 0); } }
.hero__location { margin-left: auto; }

.hero__headline {
  position: relative;
  z-index: 3;
  margin-top: 2.4vh;
  font-size: clamp(4rem, 11.6vw, 11.8rem);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: -0.092em;
  pointer-events: none;
}

.hero__line { overflow: hidden; }
.hero__line span { display: block; transform: translateY(110%); }
.hero.is-ready .hero__line span { animation: headlineIn 1.25s var(--ease) forwards; }
.hero.is-ready .hero__line--two span { animation-delay: 0.08s; }
.hero.is-ready .hero__line--three span { animation-delay: 0.16s; }

@keyframes headlineIn { to { transform: translateY(0); } }

.hero__line--one { margin-left: 1.2vw; }
.hero__line--two { margin-left: 12vw; color: var(--pink); }
.hero__line--three { margin-left: 3.8vw; }

.hero__visual {
  position: absolute;
  z-index: 2;
  top: 20vh;
  right: 6.2vw;
  width: clamp(250px, 28vw, 460px);
  height: min(66vh, 700px);
  margin: 0;
  opacity: 0;
  transform: translateY(60px) rotate(2deg);
}

.hero.is-ready .hero__visual {
  animation: visualIn 1.3s 0.25s var(--ease) forwards;
}

@keyframes visualIn { to { opacity: 1; transform: translateY(0) rotate(0); } }

.hero__visual-inner {
  height: 100%;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 46% 46% 28px 28px;
  box-shadow: 0 28px 80px rgba(45, 14, 38, 0.2);
}

.hero__visual img {
  height: 115%;
  object-fit: cover;
  object-position: 50% 25%;
  transform: scale(1.04);
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(var(--pink-rgb), 0.7);
  border-radius: 50%;
}

.hero__visual::before {
  inset: -28px -35px 35% 18%;
  transform: rotate(18deg);
}

.hero__visual::after {
  right: -22px;
  bottom: 7%;
  width: 90px;
  height: 90px;
  background: var(--pink);
}

.hero__visual figcaption {
  position: absolute;
  right: -39px;
  bottom: 25%;
  display: flex;
  gap: 7px;
  flex-direction: column;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__visual-tag {
  position: absolute;
  top: 21%;
  left: -65px;
  padding: 7px 11px;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  background: var(--ink);
  transform: rotate(-90deg);
}

.hero__copy {
  position: absolute;
  z-index: 4;
  bottom: 5vh;
  left: 7vw;
  display: flex;
  gap: clamp(26px, 6vw, 100px);
  align-items: flex-end;
}

.hero__copy p {
  width: min(26vw, 390px);
  margin: 0 0 12px;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.65;
}

.round-cta {
  position: relative;
  width: 128px;
  height: 128px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(var(--pink-rgb), 0.24);
  transition: color 0.35s, transform 0.35s;
}

.round-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: var(--ink);
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}

.round-cta:hover::before { transform: scale(1); }
.round-cta span { position: relative; z-index: 1; font-size: 0.72rem; font-weight: 700; line-height: 1.35; }
.round-cta i { position: absolute; z-index: 1; top: 20px; right: 23px; font-style: normal; }

.hero__scroll {
  position: absolute;
  right: 2.5vw;
  bottom: 4vh;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero__scroll i { width: 50px; height: 1px; overflow: hidden; background: var(--ink); }
.hero__scroll i::after { display: block; width: 100%; height: 100%; content: ""; background: var(--pink); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

.hero__signature {
  position: absolute;
  z-index: 3;
  right: 33vw;
  bottom: 4.5vh;
  color: var(--pink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  font-style: italic;
  transform: rotate(-8deg);
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 15px 0 12px;
  color: var(--white);
  background: var(--pink);
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 30px;
  align-items: center;
  font-size: clamp(1.25rem, 2.1vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  animation: marquee 24s linear infinite;
}

.ticker__track i { color: var(--ink); font-style: normal; font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(90px, 11vw, 180px) 4vw; }
.section-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.section-label span { display: inline-grid; place-items: center; width: 27px; height: 27px; margin-right: 10px; color: var(--white); border-radius: 50%; background: var(--pink); }
.section-label--light { color: var(--white); }
.section-label--light span { color: var(--ink); background: var(--white); }

.display-title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 8.1rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.display-title em {
  color: var(--pink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.display-title--light { color: var(--white); }
.display-title--light em { color: var(--white); }

.manifesto { background: var(--white); }
.manifesto__grid { display: grid; grid-template-columns: 1fr 300px; gap: 7vw; align-items: end; margin-top: 6vw; }

.manifesto__aside p {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.text-link { display: inline-flex; gap: 50px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: 0.75rem; font-weight: 700; text-decoration: none; }
.text-link span { color: var(--pink); transition: transform 0.3s; }
.text-link:hover span { transform: translateX(6px); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.8fr;
  margin-top: clamp(70px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.stats article { position: relative; min-height: 250px; padding: 32px 28px; border-right: 1px solid var(--line); }
.stats strong { font-size: clamp(3.6rem, 7.4vw, 8.7rem); font-weight: 700; line-height: 1; letter-spacing: -0.09em; }
.stats sup { margin-left: 8px; color: var(--pink); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.stats p { position: absolute; bottom: 28px; left: 30px; margin: 0; color: var(--muted); font-size: 0.68rem; line-height: 1.5; text-transform: uppercase; }
.stats__seal { display: grid; place-items: center; border-right: 0 !important; }
.seal-text { position: absolute; width: 155px; height: 155px; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.18em; animation: rotate 18s linear infinite; }
.seal-text span { position: absolute; top: 0; left: 50%; transform-origin: 0 78px; }
.stats__seal > span { color: var(--pink); font-size: 2.5rem; }
@keyframes rotate { to { transform: rotate(360deg); } }

.services {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  color: var(--white);
  background: var(--pink);
}

.services__intro { display: grid; grid-template-columns: 0.4fr 1.2fr 0.4fr; gap: 4vw; align-items: end; padding: 0 4vw clamp(70px, 8vw, 120px); }
.services__intro p { margin: 0 0 12px; font-size: 0.8rem; line-height: 1.6; }
.service-list { border-top: 1px solid rgba(255, 255, 255, 0.4); }
.service-item { border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.service-item__head {
  display: grid;
  grid-template-columns: 0.14fr 1fr 0.24fr 64px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 31px 4vw;
  color: var(--white);
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.35s, background 0.35s;
}

.service-item__head:hover,
.service-item.is-active .service-item__head { color: var(--ink); background: var(--white); }
.service-item__num { font-size: 0.65rem; font-weight: 700; }
.service-item__title { font-size: clamp(2.2rem, 5.5vw, 6.4rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.07em; }
.service-item__meta { font-size: 0.72rem; font-weight: 600; }
.service-item__icon { justify-self: end; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid currentColor; border-radius: 50%; font-size: 1.35rem; font-weight: 300; }
.service-item__body { display: grid; grid-template-rows: 0fr; color: var(--ink); background: var(--white); transition: grid-template-rows 0.8s var(--ease); }
.service-item.is-active .service-item__body { grid-template-rows: 1fr; }
.service-item__body-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 6vw; min-height: 0; overflow: hidden; padding: 0 4vw; }
.service-item.is-active .service-item__body-inner { padding-top: 10px; padding-bottom: 70px; }
.service-item__image { position: relative; height: min(55vw, 600px); overflow: hidden; }
.service-item__image img { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.service-item.is-active .service-item__image img { transform: scale(1.035); }
.service-item__image > span { position: absolute; top: 22px; left: 22px; padding: 8px 12px; color: var(--white); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--pink); }
.service-item__details { align-self: center; padding-right: 3vw; }
.service-item__details > p { max-width: 490px; margin: 0 0 42px; font-size: clamp(1.1rem, 1.8vw, 1.65rem); line-height: 1.4; letter-spacing: -0.03em; }
.service-item__details ul { padding: 0; margin: 0 0 42px; list-style: none; border-top: 1px solid var(--line); }
.service-item__details li { display: flex; justify-content: space-between; padding: 16px 0; font-size: 0.73rem; border-bottom: 1px solid var(--line); }
.service-item__details b { font-weight: 700; }
.pill-button { display: inline-flex; gap: 50px; align-items: center; padding: 14px 16px 14px 22px; color: var(--white); border: 0; border-radius: 99px; background: var(--ink); cursor: pointer; }
.pill-button span { color: var(--pink); }

.service-art { position: relative; display: grid; place-items: center; height: min(48vw, 560px); overflow: hidden; background: var(--soft); }
.service-art span { position: relative; z-index: 2; color: var(--white); font-size: clamp(3rem, 8vw, 8rem); font-weight: 800; letter-spacing: -0.09em; mix-blend-mode: difference; }
.service-art i { position: absolute; width: 56%; aspect-ratio: 1; border-radius: 45% 55% 50% 50%; background: var(--pink); box-shadow: 0 0 90px rgba(var(--pink-rgb), 0.35); animation: morph 8s ease-in-out infinite alternate; }
.service-art--face i { border-radius: 50% 50% 43% 57%; transform: rotate(-25deg); }
.service-art--brows i { width: 70%; height: 25%; border-radius: 100% 0 100% 0; transform: rotate(-12deg); }
@keyframes morph { 50% { border-radius: 62% 38% 56% 44%; transform: rotate(35deg) scale(0.88); } }

.works { padding-bottom: 16vw; overflow: hidden; background: var(--white); }
.works__head { display: grid; grid-template-columns: 0.45fr 1fr 0.42fr; gap: 4vw; align-items: end; }
.works__head p { margin: 0 0 8px; color: var(--muted); font-size: 0.78rem; line-height: 1.7; }
.works__collage { position: relative; min-height: 110vw; max-height: 1850px; margin-top: 10vw; }
.work-card { position: absolute; margin: 0; }
.work-card img { height: 100%; object-fit: cover; }
.work-card figcaption { display: flex; gap: 20px; margin-top: 12px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.work-card figcaption span { color: var(--pink); }
.work-card--a { top: 0; left: 5%; width: 34%; height: 43vw; max-height: 650px; }
.work-card--a img { object-position: 52% 40%; }
.work-card--b { top: 27vw; right: 3%; width: 48%; height: 31vw; max-height: 520px; }
.work-card--c { top: 63vw; left: 25%; width: 31%; height: 38vw; max-height: 590px; }
.work-card--c img { object-position: 59% 35%; filter: saturate(0.78) contrast(1.03); }
.work-type { position: absolute; top: 4vw; right: 4%; color: var(--pink); font-size: clamp(4rem, 11vw, 12rem); font-weight: 800; line-height: 0.75; letter-spacing: -0.1em; text-align: right; }
.work-type span { display: block; }
.work-type span:last-child { -webkit-text-stroke: 1.5px var(--pink); color: transparent; }
.work-quote { position: absolute; top: 53vw; left: 7%; width: 28%; }
.work-quote > span { color: var(--pink); font-family: Georgia, serif; font-size: 5rem; line-height: 0.4; }
.work-quote p { margin: 24px 0 0; font-family: "Cormorant Garamond", serif; font-size: clamp(1.7rem, 3vw, 3.2rem); font-style: italic; line-height: 1.1; }

.ritual { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 9vw; background: var(--soft); }
.ritual__sticky { position: sticky; top: 150px; align-self: start; }
.ritual__sticky .display-title { margin: 45px 0 35px; }
.ritual__sticky > p { max-width: 400px; color: var(--muted); font-size: 0.82rem; line-height: 1.75; }
.ritual__steps { padding: 0; margin: 0; list-style: none; }
.ritual__steps li { display: grid; grid-template-columns: 90px 1fr; gap: 2vw; min-height: 260px; padding: 52px 0; border-top: 1px solid var(--line); }
.ritual__steps li:last-child { border-bottom: 1px solid var(--line); }
.ritual__steps > li > span { display: grid; place-items: center; width: 55px; height: 55px; color: var(--white); border-radius: 50%; background: var(--pink); font-size: 0.65rem; font-weight: 700; }
.ritual__steps h3 { margin: 0 0 25px; font-size: clamp(2.3rem, 4.6vw, 5rem); line-height: 0.95; letter-spacing: -0.07em; }
.ritual__steps p { max-width: 500px; margin: 0; color: var(--muted); font-size: 0.8rem; line-height: 1.7; }

.reviews { color: var(--white); background: var(--ink); }
.reviews__top { display: flex; justify-content: space-between; align-items: center; }
.review-controls { display: flex; gap: 8px; }
.review-controls button { width: 52px; height: 52px; color: var(--white); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; cursor: pointer; transition: color .3s, background .3s; }
.review-controls button:hover { color: var(--ink); background: var(--white); }
.reviews__viewport { overflow: hidden; margin-top: 7vw; }
.reviews__track { display: flex; transition: transform 0.8s var(--ease); }
.review-card { flex: 0 0 100%; padding-right: 8vw; }
.review-card__meta { display: flex; justify-content: space-between; color: var(--pink); font-size: 0.7rem; }
.review-card__meta i { color: rgba(255,255,255,.5); font-style: normal; }
.review-card blockquote { max-width: 1250px; margin: 4vw 0 5vw; font-size: clamp(2.2rem, 5.3vw, 6.2rem); font-weight: 500; line-height: 1.08; letter-spacing: -0.065em; }
.review-card__author { display: flex; gap: 20px; align-items: center; }
.review-card__author b { color: var(--pink); font-size: 0.78rem; }
.review-card__author span { color: rgba(255,255,255,.55); font-size: 0.68rem; }

.booking-section {
  position: relative;
  min-height: 95vh;
  padding: 8vw 4vw 4vw;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--pink);
}

.booking-section::before { position: absolute; inset: 6%; content: ""; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; transform: scaleX(1.4); }
.booking-section > p { position: relative; z-index: 1; margin: 0; font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-section h2 { position: relative; z-index: 1; margin: 5vh 0 1vh; font-size: clamp(5rem, 15vw, 15rem); font-weight: 800; line-height: .7; letter-spacing: -.105em; }
.booking-section h2 em { color: var(--ink); font-family: "Cormorant Garamond", serif; font-weight: 500; }
.booking-section__button { position: relative; z-index: 2; display: inline-flex; gap: 60px; align-items: center; padding: 19px 22px 19px 28px; margin-top: 5vh; color: var(--white); border: 0; border-radius: 99px; background: var(--ink); cursor: pointer; }
.booking-section__button i { color: var(--pink); font-style: normal; font-size: 1.2rem; }
.booking-section__spark { position: absolute; top: 16%; left: 12%; font-size: clamp(2rem, 5vw, 6rem); animation: rotate 8s linear infinite; }
.booking-section__meta { position: absolute; right: 5vw; bottom: 5vh; left: 5vw; display: flex; justify-content: space-between; font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.booking-section__meta a { text-decoration: none; }
.booking-section__telegram { flex-basis: 100%; margin-top: 13px; text-align: center; text-transform: none; }

.footer { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 4vw; padding: 70px 4vw 28px; color: var(--white); background: var(--ink); }
.footer__logo { color: var(--white); font-size: clamp(2.4rem, 5vw, 5rem); }
.footer > p { margin: 8px 0 0; color: rgba(255,255,255,.5); font-size: .75rem; line-height: 1.6; }
.footer > nav { display: flex; gap: 30px; justify-self: end; }
.footer > nav a { font-size: .7rem; text-decoration: none; }
.footer__bottom { grid-column: 1/-1; display: flex; justify-content: space-between; padding-top: 60px; margin-top: 40px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.15); font-size: .58rem; text-transform: uppercase; }
.footer__bottom a { text-decoration: none; }

.booking-modal {
  width: min(1080px, calc(100vw - 36px));
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.booking-modal::backdrop { background: rgba(23, 19, 22, .72); backdrop-filter: blur(12px); }
.booking-modal[open] { animation: modalIn .55s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(40px) scale(.97); } }
.booking-modal__panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; min-height: 620px; overflow: hidden; background: var(--white); }
.booking-modal__close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 44px; height: 44px; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 1.3rem; cursor: pointer; }
.booking-modal__intro { position: relative; display: flex; flex-direction: column; padding: 62px 45px; color: var(--white); background: var(--pink); }
.booking-modal__intro::after { position: absolute; right: -80px; bottom: 35px; width: 240px; height: 240px; content: ""; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.08); }
.booking-modal__intro > span { font-size: .63rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.booking-modal__intro h2 { margin: 60px 0 25px; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .86; letter-spacing: -.08em; }
.booking-modal__intro h2 em { color: var(--ink); font-family: "Cormorant Garamond", serif; font-weight: 500; }
.booking-modal__intro p { max-width: 300px; margin: 0; font-size: .76rem; line-height: 1.7; }
.booking-modal__intro > div { display: flex; gap: 10px; align-items: center; margin-top: auto; font-size: .62rem; font-weight: 700; }
.booking-modal__intro > div i { width: 7px; height: 7px; border-radius: 50%; background: var(--white); animation: pulse 2s infinite; }
.booking-form { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 75px 70px 48px; }
.booking-form label { display: block; }
.booking-form label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.booking-form input,
.booking-form select { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: 0; background: transparent; font-size: 1rem; transition: border-color .3s; }
.booking-form input:focus,
.booking-form select:focus { border-color: var(--pink); }
.booking-form__submit { display: flex; justify-content: space-between; padding: 18px 22px; margin-top: 10px; color: var(--white); border: 0; border-radius: 99px; background: var(--ink); cursor: pointer; }
.booking-form__submit span { color: var(--pink); }
.booking-form small { color: var(--muted); font-size: .54rem; line-height: 1.5; }
.booking-success { display: none; place-content: center; padding: 70px; text-align: center; }
.booking-success.is-visible { display: grid; }
.booking-form.is-hidden { display: none; }
.booking-success > span { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 30px; color: var(--white); border-radius: 50%; background: var(--pink); font-size: 2rem; }
.booking-success h3 { margin: 0 0 16px; font-size: 3.5rem; letter-spacing: -.07em; }
.booking-success p { max-width: 360px; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.booking-success button { justify-self: center; padding: 14px 30px; margin-top: 20px; color: var(--white); border: 0; border-radius: 99px; background: var(--ink); cursor: pointer; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-text { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-text.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero { min-height: 850px; }
  .hero__headline { font-size: clamp(4.5rem, 12.5vw, 8.5rem); }
  .hero__visual { top: 27%; right: 4vw; width: 34vw; height: 54vh; }
  .hero__signature { right: 37vw; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__aside { max-width: 520px; margin-left: auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats article:nth-child(2) { border-right: 0; }
  .stats article:nth-child(3), .stats article:nth-child(4) { border-top: 1px solid var(--line); }
  .services__intro, .works__head { grid-template-columns: 1fr; }
  .services__intro p, .works__head p { max-width: 420px; margin-left: auto; }
  .service-item__body-inner { gap: 4vw; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 24px); }
  .cursor, .cursor-glow { display: none; }
  .site-header { top: 10px; grid-template-columns: 1fr auto; padding: 9px 10px 9px 18px; }
  .desktop-nav, .header-book { display: none; }
  .menu-toggle { position: relative; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; background: var(--ink); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 16px; height: 1px; background: var(--white); transition: transform .4s var(--ease); }
  .menu-toggle span:first-child { transform: translateY(-3px); }
  .menu-toggle span:nth-child(2) { transform: translateY(3px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column; justify-content: center; padding: 100px 28px 35px; color: var(--white); background: var(--pink); visibility: hidden; clip-path: circle(0 at calc(100% - 32px) 32px); transition: clip-path .8s var(--ease), visibility .8s; }
  .mobile-menu.is-open { visibility: visible; clip-path: circle(150% at calc(100% - 32px) 32px); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { display: flex; gap: 18px; align-items: center; padding: 13px 0; font-size: clamp(2.4rem, 12vw, 4.2rem); font-weight: 700; letter-spacing: -.07em; line-height: 1; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
  .mobile-menu nav span { font-size: .58rem; letter-spacing: .1em; }
  .mobile-menu__foot { display: flex; justify-content: space-between; margin-top: auto; font-size: .58rem; text-transform: uppercase; }
  .mobile-menu__foot a { text-decoration: none; }

  .hero { min-height: 900px; padding: 100px 18px 30px; background-size: 50vw 50vw; }
  .hero__eyebrow { padding: 0; font-size: .53rem; }
  .hero__location { display: none; }
  .hero__headline { z-index: 5; margin-top: 34px; font-size: clamp(4rem, 21vw, 6.7rem); line-height: .78; }
  .hero__line--one { margin-left: 0; }
  .hero__line--two { margin-left: 7vw; }
  .hero__line--three { margin-left: 0; }
  .hero__visual { top: 330px; right: 24px; width: min(72vw, 360px); height: 470px; }
  .hero__visual-inner { border-width: 5px; border-radius: 45% 45% 20px 20px; }
  .hero__visual figcaption { right: -27px; }
  .hero__visual-tag { display: none; }
  .hero__copy { right: auto; bottom: 30px; left: 20px; display: block; }
  .hero__copy p { width: 58vw; margin-bottom: 20px; font-size: .72rem; }
  .round-cta { width: 108px; height: 108px; }
  .hero__signature { z-index: 5; right: 11vw; bottom: 145px; font-size: 3rem; }
  .hero__scroll { display: none; }
  .ticker { padding: 11px 0; }

  .section { padding: 90px 18px; }
  .display-title { font-size: clamp(3rem, 14vw, 5.2rem); }
  .manifesto__grid { margin-top: 55px; }
  .manifesto__aside { margin-top: 30px; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 80px; }
  .stats article { min-height: 190px; padding: 25px 15px; }
  .stats strong { font-size: 3.5rem; }
  .stats p { bottom: 20px; left: 15px; font-size: .55rem; }
  .stats__seal { display: none; }
  .stats article:nth-child(3) { grid-column: 1/-1; border-right: 0; text-align: center; }
  .stats article:nth-child(3) p { left: 50%; width: 100%; text-align: center; transform: translateX(-50%); }

  .services { padding-right: 0; padding-left: 0; }
  .services__intro { padding: 0 18px 65px; }
  .services__intro p { margin: 20px 0 0; }
  .service-item__head { grid-template-columns: 35px 1fr auto 38px; gap: 7px; padding: 22px 18px; }
  .service-item__title { font-size: 2.55rem; }
  .service-item__meta { font-size: .54rem; }
  .service-item__icon { width: 34px; height: 34px; font-size: 1rem; }
  .service-item__body-inner { grid-template-columns: 1fr; gap: 35px; padding: 0 18px; }
  .service-item.is-active .service-item__body-inner { padding-bottom: 50px; }
  .service-item__image, .service-art { height: 68vw; min-height: 270px; }
  .service-item__details { padding: 0; }
  .service-item__details > p { margin-bottom: 28px; font-size: 1rem; }

  .works { padding-bottom: 110px; }
  .works__collage { display: grid; gap: 55px; min-height: 0; max-height: none; margin-top: 75px; }
  .work-card, .work-type, .work-quote { position: relative; inset: auto; width: auto; height: auto; }
  .work-card img { height: 110vw; max-height: 560px; }
  .work-card--b img { height: 68vw; }
  .work-card--c { width: 70%; margin-left: auto; }
  .work-card--c img { height: 88vw; }
  .work-type { order: -1; font-size: 22vw; text-align: left; }
  .work-quote { width: 85%; margin: 30px 0; }

  .ritual { grid-template-columns: 1fr; gap: 50px; }
  .ritual__sticky { position: relative; top: auto; }
  .ritual__steps li { grid-template-columns: 60px 1fr; min-height: 220px; }
  .ritual__steps h3 { font-size: 2.7rem; }

  .reviews__viewport { margin-top: 60px; }
  .review-card { padding-right: 0; }
  .review-card blockquote { margin: 40px 0 50px; font-size: 2.25rem; }
  .review-card__author { align-items: flex-start; flex-direction: column; gap: 8px; }

  .booking-section { min-height: 740px; padding: 100px 18px 35px; }
  .booking-section h2 { margin-top: 100px; font-size: 24vw; }
  .booking-section::before { inset: 15% -55%; }
  .booking-section__spark { top: 20%; left: 10%; }
  .booking-section__meta { align-items: center; flex-direction: column; gap: 12px; }

  .footer { grid-template-columns: 1fr 1fr; padding: 55px 18px 25px; }
  .footer > nav { grid-column: 1/-1; justify-self: start; margin-top: 20px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 30px; margin-top: 25px; }

  .booking-modal { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); }
  .booking-modal__panel { grid-template-columns: 1fr; max-height: calc(100dvh - 20px); overflow-y: auto; }
  .booking-modal__intro { min-height: 275px; padding: 35px 25px; }
  .booking-modal__intro h2 { margin: 35px 0 15px; font-size: 3.5rem; }
  .booking-modal__intro > div { display: none; }
  .booking-form { padding: 35px 25px; }
  .booking-success { padding: 55px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
  .hero__line span, .hero__visual, .reveal, .reveal-text { opacity: 1; transform: none; }
}
