/* ── cs-tokens v1 — fluid design-token foundation. Paste verbatim; fill only the palette. ── */
:root {
  /* PALETTE — base + counterpoint. 2–4 hues total (tonal steps of one hue count as one). */
  --bg:      #F8F3F9;
  --card:    #FFFFFF;
  --text:    #2A1228;
  --muted:   #6B5068;
  --accent:  #66205E;
  --accent2: #9A73AA;
  --accent3: #AAAAAA;
  --accent-rgb: 102,32,94;
  --accent-light: rgba(var(--accent-rgb),.08);
  --border:  rgba(0,0,0,.08);

  /* FLUID TYPE SCALE — 7 steps, clamp(min, preferred, max). Do NOT hard-code px on text. */
  --fs-xs:   clamp(0.75rem, 0.70rem + 0.25vw, 0.875rem);
  --fs-sm:   clamp(0.875rem, 0.80rem + 0.38vw, 1.00rem);
  --fs-base: clamp(1.00rem, 0.90rem + 0.50vw, 1.25rem);
  --fs-lg:   clamp(1.25rem, 1.10rem + 0.75vw, 1.75rem);
  --fs-xl:   clamp(1.75rem, 1.50rem + 1.25vw, 2.50rem);
  --fs-2xl:  clamp(2.50rem, 2.00rem + 2.50vw, 4.00rem);
  --fs-3xl:  clamp(3.50rem, 2.50rem + 5.00vw, 6.00rem);

  /* FLUID SPACE SCALE — 7 steps. Use for padding/margin/gap; do NOT hard-code section px. */
  --sp-2xs:  clamp(0.25rem, 0.20rem + 0.25vw, 0.375rem);
  --sp-xs:   clamp(0.50rem, 0.40rem + 0.50vw, 0.75rem);
  --sp-sm:   clamp(0.75rem, 0.60rem + 0.75vw, 1.125rem);
  --sp-md:   clamp(1.00rem, 0.80rem + 1.00vw, 1.50rem);
  --sp-lg:   clamp(1.50rem, 1.20rem + 1.50vw, 2.25rem);
  --sp-xl:   clamp(2.00rem, 1.60rem + 2.00vw, 3.00rem);
  --sp-2xl:  clamp(3.00rem, 2.40rem + 3.00vw, 4.50rem);

  /* MOTION — duration + easing tokens. Use these, not literal ms/cubic-beziers, in transitions. */
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-emphasis: cubic-bezier(0.22, 1, 0.36, 1);
}
body { background: var(--bg); color: var(--text); font-size: var(--fs-base); }

/* FOCUS-VISIBLE — required a11y floor, paste verbatim */
:focus-visible { outline: 3px solid var(--accent2); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; }
body {
  font-family: 'Outfit', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { font-size: var(--fs-base); }

.eyebrow {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: var(--sp-sm);
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) var(--sp-xl);
  transition:
    background var(--dur-slow) var(--ease-standard),
    box-shadow var(--dur-slow) var(--ease-standard);
}
.site-nav.scrolled {
  background: rgba(248,243,249,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}
.nav-links > li { position: relative; }
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease-standard);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }

.nav-has-sub > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform var(--dur-fast);
}
.nav-has-sub:hover > a::after { transform: rotate(180deg); }

.nav-sub {
  position: absolute;
  top: calc(100% + var(--sp-xs));
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: var(--sp-xs) 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(42,18,40,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-emphasis);
}
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li a {
  display: block;
  padding: var(--sp-xs) var(--sp-md);
  font-size: var(--fs-xs);
  white-space: nowrap;
  letter-spacing: 0.10em;
  color: var(--text);
}
.nav-sub li a:hover { color: var(--accent); background: var(--accent-light); }

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.4em;
  background: var(--accent);
  color: #FFF !important;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
  white-space: nowrap;
}
.btn-book:hover { background: #4E1748; color: #FFF !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-2xs);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur-base) var(--ease-emphasis);
}

/* ── HERO SCRUB ── */
.hero-scrub { position: relative; height: 300vh; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(248,243,249,0.55) 75%,
    rgba(248,243,249,0.92) 100%
  );
  pointer-events: none;
}
.hero-arc-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 26%;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  bottom: var(--sp-2xl);
  left: var(--sp-xl);
  right: var(--sp-xl);
  max-width: 700px;
}
.hero-content .eyebrow { color: var(--accent); margin-bottom: var(--sp-xs); }
.hero-content h1 {
  font-size: var(--fs-2xl);
  color: var(--accent);
  margin-bottom: var(--sp-sm);
  line-height: 1.1;
}
.hero-content .hero-sub {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-lg);
  font-weight: 400;
}
.hero-ctas { display: flex; gap: var(--sp-md); flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75em 2em;
  background: var(--accent);
  color: #FFF;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn-primary:hover { background: #4E1748; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75em 2em;
  background: transparent;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast);
}
.btn-secondary:hover { background: var(--accent); color: #FFF; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75em 2em;
  background: transparent;
  color: #FFF;
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease-standard);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ── SECTION ARC HEADER ── */
.arc-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.arc-header svg {
  width: min(480px, 90vw);
  height: auto;
  overflow: visible;
  display: block;
  margin: 0 auto;
}
.arc-header h2 { margin-top: var(--sp-md); font-size: var(--fs-2xl); }
.arc-header p {
  margin-top: var(--sp-sm);
  color: var(--muted);
  font-size: var(--fs-sm);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── LAYOUT ── */
section { padding: var(--sp-2xl) var(--sp-xl); }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

/* ── WELCOME / ABOUT ── */
.welcome-section { background: var(--card); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.welcome-photo {
  border-radius: 100% 100% 0 0 / 80% 80% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 400px;
}
.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.welcome-text .eyebrow { margin-bottom: var(--sp-sm); }
.welcome-text h2 { margin-bottom: var(--sp-md); }
.welcome-text p {
  color: var(--muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  line-height: 1.8;
}
.welcome-text p:last-of-type { margin-bottom: var(--sp-lg); }

/* ── GALLERY ── */
.gallery-section { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-sm);
}
.gallery-frame {
  border-radius: 100% 100% 0 0 / 80% 80% 0 0;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--border);
}
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--dur-slow) var(--ease-emphasis);
}
.gallery-frame:hover img { transform: scale(1.04); }

/* ── SERVICE CARDS ── */
.services-section { background: var(--card); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.service-card {
  background: var(--bg);
  padding: var(--sp-lg);
  border-radius: 2px;
  border-top: 2px solid var(--accent2);
  display: flex;
  flex-direction: column;
}
.service-card-name {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--text);
  margin-bottom: var(--sp-xs);
}
.service-card-price {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: var(--sp-sm);
}
.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.service-card-note {
  font-size: var(--fs-xs);
  color: var(--accent3);
  font-style: italic;
  margin-top: var(--sp-sm);
}
.service-card-cta { margin-top: var(--sp-md); }
.service-sub-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}

/* ── STRAIGHT ANSWER / CAVEAT ── */
.caveat-section { background: var(--bg); }
.caveat-card {
  border-left: 3px solid var(--accent);
  background: var(--card);
  padding: var(--sp-lg) var(--sp-xl);
  max-width: 820px;
  margin: 0 auto;
}
.caveat-card .eyebrow { color: var(--accent); margin-bottom: var(--sp-sm); }
.caveat-card p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-sm);
  line-height: 1.8;
}
.caveat-card p:last-child { margin-bottom: 0; }

/* ── COSMETIC TATTOO (PLUM FIELD) ── */
.plum-section {
  background: var(--accent);
  color: #FFF;
}
.plum-section h2 { color: #FFF; }
.plum-section .eyebrow { color: rgba(255,255,255,0.55); }
.plum-section p { color: rgba(255,255,255,0.85); }
.plum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.plum-text { padding-top: var(--sp-md); }
.plum-text h2 { margin-bottom: var(--sp-md); }
.plum-text p { margin-bottom: var(--sp-sm); line-height: 1.8; }
.plum-text p:last-of-type { margin-bottom: var(--sp-lg); }
.plum-image {
  border-radius: 100% 100% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.plum-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.plum-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.plum-service-item h4 {
  color: #FFF;
  font-size: var(--fs-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2xs);
}
.plum-service-item .plum-price {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-xs);
}

/* ── OFFER STRIP ── */
.offers-section { background: var(--card); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.offer-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent2);
  padding: var(--sp-lg);
  background: var(--bg);
}
.offer-card .eyebrow { color: var(--accent2); margin-bottom: var(--sp-xs); }
.offer-card-title {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: var(--fs-lg);
  color: var(--text);
  margin-bottom: var(--sp-sm);
}
.offer-card-body {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}
.offer-card-restriction {
  font-size: var(--fs-xs);
  color: var(--accent3);
  letter-spacing: 0.04em;
  padding-top: var(--sp-sm);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ── REVIEWS ── */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-md);
}
.review-card {
  background: var(--card);
  padding: var(--sp-lg);
  border-radius: 2px;
}
.review-stars {
  color: var(--accent);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  letter-spacing: 0.05em;
}
.review-body {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
  font-style: italic;
}
.review-name {
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── THE ROOM ── */
.room-section { background: var(--card); }
.room-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-sm);
}
.room-frame { overflow: hidden; border-radius: 2px; }
.room-frame-large { grid-row: 1 / 3; aspect-ratio: 2/3; }
.room-frame-sm { aspect-ratio: 4/5; }
.room-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-caption {
  padding: var(--sp-xl) 0 0;
  max-width: 640px;
}
.room-caption p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

/* ── BOOK CTA ── */
.book-section {
  background: var(--accent);
  color: #FFF;
  text-align: center;
}
.book-section .eyebrow { color: rgba(255,255,255,0.55); }
.book-section h2 { color: #FFF; margin-bottom: var(--sp-md); }
.book-section > .container > p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.book-details {
  display: flex;
  justify-content: center;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-xl);
  flex-wrap: wrap;
}
.book-detail-item { text-align: center; }
.book-detail-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-2xs);
}
.book-detail-value {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.book-detail-value a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
}
.book-detail-value a:hover { text-decoration-color: rgba(255,255,255,0.7); }
.book-ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: var(--sp-2xl) var(--sp-xl);
}
.footer-arc {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.footer-arc svg {
  width: min(380px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}
.footer-brand .footer-logo {
  margin-bottom: var(--sp-md);
  filter: brightness(0) invert(1);
  opacity: 0.75;
  height: 36px;
  width: auto;
}
.footer-brand p {
  font-size: var(--fs-xs);
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.footer-col ul li a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.footer-col ul li a:hover { color: #FFF; }
.footer-social {
  display: flex;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.footer-social a {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.footer-social a:hover { color: #FFF; border-color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color var(--dur-fast); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--sp-2xl) * 2.2) var(--sp-xl) var(--sp-2xl);
  background: var(--card);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: var(--sp-sm); }
.page-hero h1 { font-size: var(--fs-2xl); margin-bottom: var(--sp-md); color: var(--accent); }
.page-hero p {
  font-size: var(--fs-sm);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── PRICING PAGE ── */
.pricing-group { margin-bottom: var(--sp-2xl); }
.pricing-group:last-child { margin-bottom: 0; }
.pricing-group h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: var(--sp-sm) var(--sp-md);
  text-align: left;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border);
}
.price-table th {
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
}
.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--accent);
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: none; }
.price-note {
  font-size: var(--fs-xs);
  color: var(--muted);
  font-style: italic;
  margin-top: var(--sp-sm);
  line-height: 1.6;
}
.pricing-offer-strip {
  margin-top: var(--sp-xl);
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--bg);
  border-left: 3px solid var(--accent2);
}
.pricing-offer-strip p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-xs);
  line-height: 1.7;
}
.pricing-offer-strip p:last-child { margin-bottom: 0; }

/* ── BOOKINGS PAGE ── */
.bookings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.bookings-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.info-item .eyebrow { margin-bottom: var(--sp-2xs); }
.info-item p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
}
.info-item a { color: var(--accent); }
.info-item a:hover { text-decoration: underline; }
.bookings-image-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.bookings-img-frame {
  border-radius: 100% 100% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.bookings-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: var(--sp-lg); }
.contact-detail-item .eyebrow { margin-bottom: var(--sp-2xs); }
.contact-detail-item p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.7;
}
.contact-detail-item a { color: var(--accent); }
.contact-detail-item a:hover { text-decoration: underline; }
.contact-cta-block {
  background: var(--bg);
  padding: var(--sp-lg);
  border-radius: 2px;
  border-left: 3px solid var(--accent2);
}
.contact-cta-block p {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-md);
  line-height: 1.7;
}
.map-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--dur-fast);
}
.map-cta:hover { color: #4E1748; }

/* ── COSMETIC TATTOO PAGE ── */
.ct-service-blocks { display: flex; flex-direction: column; gap: var(--sp-2xl); }
.ct-service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-xl);
  align-items: start;
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--border);
}
.ct-service-block:last-child { border-bottom: none; padding-bottom: 0; }
.ct-service-image {
  border-radius: 100% 100% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.ct-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ct-service-text .eyebrow { margin-bottom: var(--sp-xs); }
.ct-service-text h3 { margin-bottom: var(--sp-sm); }
.ct-price {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: var(--fs-xl);
  color: var(--accent);
  margin-bottom: var(--sp-md);
}
.ct-service-text p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.ct-bullets { display: flex; flex-direction: column; gap: var(--sp-2xs); margin-top: var(--sp-sm); }
.ct-bullet {
  font-size: var(--fs-xs);
  color: var(--accent2);
  font-weight: 500;
  padding-left: var(--sp-md);
  position: relative;
}
.ct-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--accent2);
}
.ct-reassurance {
  background: var(--accent);
  color: #FFF;
  padding: var(--sp-2xl);
  margin-top: var(--sp-2xl);
  border-radius: 2px;
}
.ct-reassurance h3 { color: #FFF; margin-bottom: var(--sp-md); }
.ct-reassurance p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}
.ct-reassurance p:last-of-type { margin-bottom: var(--sp-lg); }

/* ── GIFT VOUCHERS PAGE ── */
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}
.gift-text p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.gift-text p:last-of-type { margin-bottom: var(--sp-lg); }
.gift-image {
  border-radius: 100% 100% 0 0 / 60% 60% 0 0;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.gift-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── PRIVACY PAGE ── */
.privacy-content { max-width: 760px; margin: 0 auto; }
.privacy-content h2 {
  font-size: var(--fs-xl);
  margin: var(--sp-xl) 0 var(--sp-sm);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
  color: var(--accent);
}
.privacy-content h2:first-of-type { margin-top: 0; border-top: none; }
.privacy-content p {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s var(--ease-emphasis), transform 0.55s var(--ease-emphasis);
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: var(--sp-xl) var(--sp-lg); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .plum-services { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: var(--sp-xl) var(--sp-md); }
  .site-nav { padding: var(--sp-sm) var(--sp-md); }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    background: var(--card);
    padding: 5rem var(--sp-xl) var(--sp-xl);
    z-index: 190;
    gap: var(--sp-lg);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links a { font-size: var(--fs-sm); }
  .nav-sub {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: var(--sp-xs) 0 0 var(--sp-md);
    min-width: 0;
    display: none;
  }
  .nav-has-sub.open-sub .nav-sub { display: block; }
  .nav-sub li a { padding: var(--sp-xs) 0; }
  .nav-toggle { display: flex; }
  .btn-book { display: none; }

  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-photo { max-width: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .service-sub-cards { grid-template-columns: 1fr; }
  .plum-grid { grid-template-columns: 1fr; }
  .plum-grid .plum-image { display: none; }
  .plum-services { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .room-frame-large { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .bookings-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ct-service-block { grid-template-columns: 1fr; }
  .gift-grid { grid-template-columns: 1fr; }
  .book-details { gap: var(--sp-lg); flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .plum-services { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: var(--fs-xl); }
}
