:root {
  --night: #090809;
  --night-soft: #111011;
  --ink: #171214;
  --wine: #700c19;
  --wine-deep: #48070f;
  --red: #a91d2c;
  --paper: #eee5d7;
  --paper-soft: #e4d8c8;
  --paper-muted: #cfc2b3;
  --gold: #d0a866;
  --line-light: rgba(238, 229, 215, 0.2);
  --line-dark: rgba(23, 18, 20, 0.24);
  --header-height: 4.5rem;
  --shell: 84rem;
  --gutter: clamp(1.25rem, 4vw, 3.75rem);
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --font-body: "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Bahnschrift Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-accent: Georgia, "Times New Roman", serif;
  --motion-fast: 160ms;
  --motion-base: 260ms;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --page-progress: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  background: var(--night);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--night);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.055;
  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='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin: 0;
}

ol {
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--night);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(9, 8, 9, 0.94);
  transition: background-color 180ms ease, border-color 180ms ease;
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    background: rgba(9, 8, 9, 0.82);
    backdrop-filter: blur(16px);
  }
}

.site-header.is-scrolled,
body.menu-open .site-header {
  border-bottom-color: var(--line-light);
  background: rgba(9, 8, 9, 0.985);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 102;
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-note {
  display: none;
  color: var(--paper-muted);
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 3rem;
  height: 3rem;
  padding: 0;
  place-content: center;
  gap: 0.42rem;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.22rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.main-nav {
  position: fixed;
  z-index: 101;
  inset: var(--header-height) 0 0;
  display: flex;
  flex-direction: column;
  padding: 2rem var(--gutter) 6rem;
  transform: translateY(-1rem);
  visibility: hidden;
  opacity: 0;
  background: var(--night);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  pointer-events: none;
}

.main-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.main-nav > a {
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav > a > span {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.main-nav .nav-cta {
  display: flex;
  min-height: 3.7rem;
  justify-content: center;
  margin-top: 1.5rem;
  border: 1px solid var(--red);
  background: var(--wine);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  border-bottom: 1px solid var(--line-light);
  background: var(--night);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: clamp(0.38rem, 0.8vw, 0.7rem);
  background: var(--wine);
  content: "";
}

.hero-grid {
  display: grid;
  gap: 1rem;
  padding-top: clamp(1.25rem, 4vw, 2rem);
  padding-bottom: 2.25rem;
}

.hero-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper-muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-code,
.service-code,
.contact-kicker {
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.45rem;
  color: var(--paper-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-statement {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 16.5vw, 7.5rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-statement span:nth-child(2) {
  margin-top: 0.16em;
  padding-left: 0.16em;
}

.hero-statement em {
  align-self: flex-start;
  margin-top: 0.08em;
  margin-left: clamp(2.8rem, 16vw, 10rem);
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.68em;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: none;
}

.hero-intro {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.hero-intro > p {
  max-width: 31rem;
  color: var(--paper-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 0.55rem;
}

.action {
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem;
  border: 1px solid transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.action:hover {
  transform: translateX(0.22rem);
}

.action-filled {
  border-color: var(--red);
  background: var(--wine);
  color: #fff8ef;
}

.action-filled:hover {
  background: #861523;
}

.action-line {
  border-color: var(--line-light);
  background: transparent;
}

.action-line:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.action-light {
  background: var(--paper);
  color: var(--night);
}

.action-light:hover {
  background: #fffaf1;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: 12rem;
  overflow: hidden;
  background: var(--wine-deep);
  clip-path: polygon(2.25rem 0, 100% 0, 100% 100%, 0 100%, 0 2.25rem);
}

.hero-stage::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  border: 1px solid rgba(208, 168, 102, 0.42);
  content: "";
}

.hero-stage::after {
  position: absolute;
  z-index: -2;
  right: 1rem;
  bottom: 1rem;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(238, 229, 215, 0.18);
  border-radius: 50%;
  content: "";
}

.stage-letter {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: -0.02em;
  transform: translateY(-50%);
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(15rem, 54vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
  opacity: 0.42;
  -webkit-text-stroke: 1px rgba(238, 229, 215, 0.28);
}

.stage-line {
  position: absolute;
  background: rgba(238, 229, 215, 0.2);
}

.stage-line-top {
  top: 1.4rem;
  right: 1.4rem;
  left: 1.4rem;
  height: 1px;
}

.stage-line-side {
  top: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 1px;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 42%;
  right: 4%;
  width: min(48%, 10rem);
  height: auto;
  transform: translateY(-50%);
  object-fit: contain;
  filter: drop-shadow(0 1.1rem 1.7rem rgba(0, 0, 0, 0.44));
}

.hero-stage figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: rgba(9, 8, 9, 0.9);
  color: var(--paper-muted);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

/* Value rail */
.value-rail {
  border-bottom: 1px solid rgba(238, 229, 215, 0.2);
  background: var(--wine);
}

.value-rail-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-rail p {
  display: grid;
  min-height: 4.7rem;
  place-items: center;
  gap: 0.18rem;
  border-left: 1px solid rgba(238, 229, 215, 0.22);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.value-rail p:last-child {
  border-right: 1px solid rgba(238, 229, 215, 0.22);
}

.value-rail strong {
  font-size: clamp(0.7rem, 2.4vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.value-rail span {
  color: var(--gold);
  font-size: 0.48rem;
}

/* Services */
.services {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.75rem, 4vw, 3.5rem);
  background: var(--paper);
  color: var(--ink);
}

.services::before {
  position: absolute;
  top: 0;
  right: var(--gutter);
  width: 1px;
  height: clamp(5rem, 10vw, 8rem);
  background: var(--wine);
  content: "";
}

.services .section-code {
  color: var(--wine);
}

.services-heading {
  display: grid;
  gap: 1rem;
}

.services-heading h2 {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 9.5rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 0.84;
  text-transform: uppercase;
}

.services-heading h2 em {
  align-self: flex-end;
  margin-top: 0.09em;
  color: var(--wine);
  font-family: var(--font-accent);
  font-size: 0.56em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.services-heading > p:last-child {
  max-width: 27rem;
  color: #594e50;
  line-height: 1.6;
}

.service-scenes {
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.service-scene {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 16.5rem;
  align-content: space-between;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 2.25rem);
  overflow: hidden;
  color: var(--paper);
}

.service-erotic {
  background: var(--ink);
}

.service-tantra {
  background: var(--wine);
}

.service-index {
  position: absolute;
  z-index: -1;
  top: -0.16em;
  right: -0.03em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(15rem, 64vw, 34rem);
  font-weight: 700;
  line-height: 0.75;
  opacity: 0.2;
  -webkit-text-stroke: 1px rgba(238, 229, 215, 0.42);
}

.service-code {
  color: var(--gold);
}

.service-scene h3 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 17vw, 8rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-fact {
  position: relative;
  max-width: 31rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(238, 229, 215, 0.28);
  color: rgba(238, 229, 215, 0.78);
  line-height: 1.6;
}

/* Journey */
.journey {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--night-soft);
}

.journey::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 1px;
  background: rgba(208, 168, 102, 0.13);
  content: "";
  pointer-events: none;
}

.journey-shell {
  display: grid;
  gap: 4rem;
}

.journey-heading h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 8.5rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 0.84;
  text-transform: uppercase;
}

.journey-heading h2 em {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.62em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.journey-steps {
  border-top: 1px solid var(--line-light);
}

.journey-steps li {
  position: relative;
  display: grid;
  min-height: 7.5rem;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.journey-steps > li > span {
  align-self: start;
  padding-top: 1.7rem;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.journey-steps h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.journey-steps p {
  margin-top: 0.65rem;
  color: var(--paper-muted);
}

/* Pricing */
.pricing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--night);
}

.pricing-word {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.13em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(13rem, 36vw, 31rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.7;
  opacity: 0.16;
  -webkit-text-stroke: 1px rgba(238, 229, 215, 0.35);
  white-space: nowrap;
}

.pricing-shell {
  display: grid;
  gap: 3.5rem;
}

.pricing-heading h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 8rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 0.84;
  text-transform: uppercase;
}

.pricing-heading > p:last-child {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: var(--paper-muted);
  line-height: 1.75;
}

.price-list {
  border-top: 1px solid var(--line-light);
}

.price-row {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 6.25rem;
  grid-template-columns: auto minmax(0.8rem, 1fr) auto;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  align-items: center;
  padding-inline: 0.65rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.price-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateX(-102%);
  background: var(--wine);
  content: "";
  transition: transform 280ms ease;
}

.price-row:hover::before,
.price-row-featured::before {
  transform: translateX(0);
}

.duration,
.amount {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  white-space: nowrap;
}

.duration strong,
.amount strong {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 12vw, 5.9rem);
  font-stretch: condensed;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 0.95;
}

.duration span,
.amount span {
  color: var(--paper-muted);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-rule {
  min-width: 0.8rem;
  height: 1px;
  background: var(--line-light);
}

.pricing-cta {
  display: flex;
}

.pricing-cta .action {
  width: 100%;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--paper);
  color: var(--ink);
}

.contact::before {
  position: absolute;
  top: 0;
  right: var(--gutter);
  bottom: 0;
  width: 1px;
  background: rgba(112, 12, 25, 0.35);
  content: "";
}

.contact .section-code,
.contact .contact-kicker {
  color: var(--wine);
}

.contact-shell {
  display: grid;
  gap: 3rem;
}

.contact-heading {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--ink);
}

.contact-heading h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 8.5rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-heading h2 em {
  color: var(--wine);
  font-family: var(--font-accent);
  font-size: 0.64em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.phone-number {
  display: block;
  margin-top: 1rem;
  color: var(--wine);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 12vw, 6.4rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 0.92;
  white-space: nowrap;
}

.phone-number:hover {
  color: var(--red);
}

.contact-actions {
  margin-top: 1.5rem;
}

.contact .action-line {
  border-color: var(--line-dark);
}

.location {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.location-address {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 13vw, 6rem);
  font-stretch: condensed;
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 0.92;
  text-transform: uppercase;
}

.location > p:last-child {
  max-width: 24rem;
  margin-top: 1.25rem;
  color: #594e50;
}

/* Footer and mobile booking */
.site-footer {
  padding-block: 2.5rem calc(2.5rem + 4rem);
  border-top: 1px solid var(--line-light);
  background: var(--night);
}

.footer-shell {
  display: grid;
  gap: 1.6rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 3.8rem;
  height: 3.8rem;
  object-fit: contain;
}

.footer-brand p {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.footer-brand span,
.footer-contact,
.copyright,
.footer-order {
  color: var(--paper-muted);
  font-size: 0.72rem;
}

.footer-order {
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-contact {
  display: grid;
  gap: 0.2rem;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-meta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: var(--paper-muted);
  font-size: 0.68rem;
}

.footer-meta a {
  color: var(--paper);
  font-weight: 700;
  transition: color var(--motion-fast) var(--ease-standard);
}

.footer-meta a:hover {
  color: var(--gold);
}

.mobile-cta {
  position: fixed;
  z-index: 200;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 4rem;
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  visibility: hidden;
  border-top: 1px solid rgba(238, 229, 215, 0.24);
  background: var(--night);
  transition: transform 220ms ease, visibility 220ms;
  pointer-events: none;
}

.mobile-cta.is-active {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-cta a {
  display: grid;
  min-width: 0;
  min-height: 3.75rem;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(238, 229, 215, 0.24);
  background: var(--wine);
}

/* Interaction polish */
.site-header {
  transition: background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  background: var(--gold);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.menu-toggle span {
  transition: transform var(--motion-fast) var(--ease-out);
}

.main-nav {
  transition: opacity var(--motion-fast) var(--ease-standard), transform var(--motion-base) var(--ease-out), visibility var(--motion-fast);
}

.main-nav > a {
  position: relative;
  transition: color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard);
}

.main-nav > a.is-current:not(.nav-cta) {
  color: var(--gold);
}

.main-nav .nav-cta.is-current {
  border-color: var(--gold);
}

.action {
  transition: transform var(--motion-fast) var(--ease-out), background-color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard);
}

.action > span {
  transition: transform var(--motion-fast) var(--ease-out);
}

.action:hover > span {
  transform: translateX(0.18rem);
}

.action:active {
  transform: translateX(0.08rem) scale(0.985);
}

.price-row::before {
  transition: transform var(--motion-base) var(--ease-out);
}

.duration strong,
.amount strong,
.phone-number {
  font-variant-numeric: tabular-nums;
}


@media (min-width: 56.25rem) {
  .main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0.72rem;
    bottom: 0.38rem;
    left: 0.72rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    background: currentColor;
    content: "";
    transition: transform var(--motion-base) var(--ease-out);
  }

  .main-nav > a:not(.nav-cta):hover::after,
  .main-nav > a:not(.nav-cta):focus-visible::after,
  .main-nav > a:not(.nav-cta).is-current::after {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after {
    display: none;
  }
}

@media (min-width: 23rem) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 30rem) {
  .hero-actions,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    min-height: 14rem;
  }

  .pricing-cta .action {
    width: auto;
    min-width: 16rem;
  }
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }

  .mobile-cta {
    display: none;
  }

  .brand {
    width: 3.9rem;
    height: 3.9rem;
  }

  .header-note {
    display: block;
  }

  .service-scenes {
    gap: 1.25rem;
  }

  .service-scene {
    min-height: 18rem;
  }

  .footer-shell {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .footer-order {
    display: none;
  }

  .copyright {
    grid-column: 3;
    text-align: right;
  }
}

@media (min-width: 56.25rem) {
  :root {
    --header-height: 5.5rem;
  }

  .brand {
    width: 4.25rem;
    height: 4.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-note {
    padding-left: 1.15rem;
    font-size: 0.64rem;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    transform: none;
    visibility: visible;
    opacity: 1;
    background: transparent;
    pointer-events: auto;
  }

  .main-nav > a {
    display: flex;
    min-height: 3rem;
    padding-inline: 0.82rem;
    border: 0;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
  }

  .main-nav > a > span {
    display: none;
  }

  .main-nav .nav-cta {
    min-height: 3rem;
    margin-top: 0;
    margin-left: 0.55rem;
    padding-inline: 1.3rem;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: clamp(33rem, 58svh, 37rem);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(1rem, 2vw, 2rem);
    row-gap: 1.5rem;
    padding-top: clamp(2rem, 3vw, 3rem);
    padding-bottom: 3rem;
  }

  .hero-label {
    grid-column: 1 / 8;
    grid-row: 1;
  }

  .hero-copy {
    align-self: center;
    grid-column: 1 / 8;
    grid-row: 2;
  }

  .hero-statement {
    margin-top: 2.25rem;
    font-size: clamp(5.7rem, 8.4vw, 8.6rem);
  }

  .hero-intro {
    max-width: 42rem;
    grid-template-columns: minmax(12rem, 0.78fr) minmax(18rem, 1.22fr);
    align-items: end;
  }

  .hero-stage {
    min-height: 100%;
    grid-column: 8 / 13;
    grid-row: 1 / 3;
    clip-path: polygon(3.5rem 0, 100% 0, 100% 100%, 0 100%, 0 3.5rem);
  }

  .hero-logo {
    top: 48%;
    right: 4%;
    width: min(64%, 20rem);
  }

  .hero-stage figcaption {
    min-height: 3.2rem;
    padding-inline: 1.2rem;
  }


  .value-rail p {
    min-height: 5.2rem;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 0.75rem;
  }

  .services-heading {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-items: end;
  }

  .services-heading .section-code {
    grid-column: 1 / 3;
    align-self: start;
  }

  .services-heading h2 {
    grid-column: 3 / 10;
    font-size: clamp(6rem, 10.2vw, 9.8rem);
  }

  .services-heading > p:last-child {
    grid-column: 10 / 13;
    padding-bottom: 0.7rem;
  }

  .service-scenes {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    row-gap: 0;
  }

  .service-scene {
    display: grid;
    min-height: 18rem;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-items: end;
    padding: clamp(2rem, 3vw, 3rem);
  }

  .service-erotic {
    grid-column: 1 / 11;
  }

  .service-tantra {
    z-index: 2;
    grid-column: 3 / 13;
    margin-top: -4.5rem;
  }

  .service-title {
    grid-column: 1 / 7;
  }

  .service-fact {
    grid-column: 7 / 11;
    align-self: end;
  }

  .service-scene h3 {
    font-size: clamp(5.5rem, 8vw, 8.4rem);
  }

  .journey-shell {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(2rem, 6vw, 6rem);
  }

  .journey-heading {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
    grid-column: 1 / 7;
    align-self: start;
  }

  .journey-heading h2 {
    font-size: clamp(5.7rem, 8.3vw, 8.6rem);
  }

  .journey-steps {
    grid-column: 8 / 13;
  }

  .journey-steps li {
    min-height: 8.75rem;
    grid-template-columns: 2.7rem 1fr;
  }

  .journey-steps h3 {
    font-size: clamp(2.6rem, 3.4vw, 4rem);
  }

  .pricing-shell {
    grid-template-columns: minmax(15rem, 0.72fr) minmax(28rem, 1.28fr);
    column-gap: clamp(4rem, 9vw, 9rem);
  }

  .pricing-heading {
    grid-row: span 2;
  }

  .pricing-cta {
    grid-column: 2;
  }


  .contact-shell {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto;
    column-gap: clamp(1rem, 2.5vw, 2.5rem);
    row-gap: clamp(2.5rem, 4vw, 3.5rem);
  }

  .contact-heading {
    grid-column: 1 / 11;
    grid-row: 1;
  }

  .contact-heading h2 {
    font-size: clamp(6rem, 8.7vw, 9rem);
  }

  .contact-main {
    grid-column: 2 / 9;
    grid-row: 2;
  }

  .contact-actions {
    max-width: 31rem;
  }

  .phone-number {
    font-size: clamp(4.8rem, 7vw, 7rem);
  }

  .location {
    grid-column: 10 / 13;
    grid-row: 2;
    padding-top: 0;
    padding-left: 1.5rem;
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }

  .location-address {
    font-size: clamp(2.8rem, 4.2vw, 4.8rem);
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 75rem) {
  .main-nav > a {
    padding-inline: 0.95rem;
  }

  .services {
    padding-block: clamp(2.25rem, 3vw, 3rem);
  }

  .services-heading {
    align-items: center;
  }

  .services-heading .section-code {
    grid-column: 1 / 2;
    align-self: center;
  }

  .services-heading h2 {
    grid-column: 2 / 10;
    flex-direction: row;
    align-items: baseline;
    gap: 1.25rem;
    white-space: nowrap;
    font-size: clamp(4.75rem, 6.2vw, 6.5rem);
  }

  .services-heading h2 em {
    align-self: baseline;
    margin-top: 0;
  }

  .services-heading > p:last-child {
    grid-column: 10 / 13;
    padding-bottom: 0;
  }

  .service-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: clamp(1.5rem, 2vw, 2rem);
  }

  .service-scene {
    min-height: 19rem;
    padding: 2rem;
  }

  .service-erotic,
  .service-tantra {
    grid-column: auto;
  }

  .service-tantra {
    margin-top: 1.5rem;
  }

  .service-scene h3 {
    font-size: clamp(4.25rem, 5.1vw, 5.6rem);
  }

  .hero-copy {
    grid-column: 1 / 9;
  }

  .hero-stage {
    grid-column: 8 / 13;
  }

  .hero-intro {
    max-width: 46rem;
  }
}

@media (max-width: 47.999rem) {
  body {
    padding-bottom: calc(4rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 22rem) {
  .hero-statement {
    font-size: 3.05rem;
  }

  .hero-stage {
    min-height: 11.5rem;
  }

  .hero-logo {
    width: 44%;
  }

  .phone-number {
    font-size: 2.68rem;
  }

  .duration strong,
  .amount strong {
    font-size: 2.38rem;
  }

  .price-row {
    gap: 0.5rem;
    padding-inline: 0.35rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
