/* ============================================================
   LUXURY TANTRIC — Site-specific styles
   Sits on top of colors_and_type.css
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: var(--sp-10) 0;
}

.section-tight {
  padding: var(--sp-9) 0;
}

.section-loose {
  padding: var(--sp-11) 0;
}

/* ---------- Promo strip ---------- */
.promo-strip {
  background: var(--brass-pale);
  color: var(--ink);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px var(--gutter);
}

.promo-strip span {
  font-family: var(--font-label);
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-right: 10px;
}
.logo-bloom{
  color: var(--brass-soft);
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), backdrop-filter var(--dur-2) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav-wrap.scrolled {
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--rule);
}

.nav-wrap.over-dark:not(.scrolled) {
  color: var(--ivory);
  background: var(--onyx);
}

.nav-wrap.over-dark:not(.scrolled) .nav-link {
  color: var(--fg-inv-2);
}

.nav-wrap.over-dark:not(.scrolled) .nav-brand {
  color: var(--ivory);
}

.nav-wrap.over-dark:not(.scrolled) .nav-cta {
  background: var(--ivory);
  color: var(--onyx);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  color: var(--ink);
  text-decoration: none;
}

.nav-brand svg {
  display: block;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}

.nav-wrap.over-dark:not(.scrolled) .nav-brand-text {
  border-left-color: var(--rule-dark);
}

.nav-brand-text .top {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-brand-text .bot {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--brass-deep);
  text-transform: uppercase;
}

.nav-wrap.over-dark:not(.scrolled) .nav-brand-text .bot {
  color: var(--brass-soft);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--fg-2);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color var(--dur-1) var(--ease-out);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link.is-active {
  color: var(--ink);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
}

.nav-wrap.over-dark:not(.scrolled) .nav-link.is-active {
  color: var(--ivory);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--onyx);
  color: var(--ivory);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.nav-cta:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 13px;
  height: 13px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  transition: background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--onyx);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--charcoal);
}

.btn-brass {
  background: var(--brass);
  color: var(--onyx);
}

.btn-brass:hover {
  background: var(--brass-deep);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 4px;
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 6px;
  border-radius: 0;
}

.btn-ghost:hover {
  color: var(--brass-deep);
  text-decoration-color: var(--brass-deep);
}

.btn-sm {
  font-size: 13px;
  padding: 11px 22px;
}

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary .arrow,
.btn-brass .arrow {
  background: rgba(255, 255, 255, 0.12);
}

/* on dark surfaces */
.surface-dark .btn-outline {
  color: var(--ivory);
  box-shadow: inset 0 0 0 1px var(--brass-soft);
}

.surface-dark .btn-outline:hover {
  background: var(--brass);
  color: var(--onyx);
  box-shadow: inset 0 0 0 1px var(--brass);
}

/* ---------- Eyebrow w/ brass rule ---------- */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow-row .rule {
  width: 40px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
}

.eyebrow-row.center {
  justify-content: center;
}

.eyebrow-row .label {
  color: var(--brass-deep);
}

.surface-dark .eyebrow-row .label {
  color: var(--brass-soft);
}

.surface-dark .eyebrow-row .rule {
  background: var(--brass-soft);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--onyx);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 130px) 0 var(--sp-9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(184, 147, 90, 0.06), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--ivory);
  margin: 0 auto;
  max-width: 16ch;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-soft);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-inv-2);
  letter-spacing: 0.02em;
  margin: var(--sp-6) auto 0;
  max-width: 44ch;
  line-height: 1.6;
}

/* booking widget */
.booking-widget {
  margin: var(--sp-7) auto 0;
  max-width: 920px;
  background: rgba(20, 17, 13, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--rule-dark);
  border-radius: 14px;
  padding: 22px 22px 22px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  text-align: left;
}

.booking-widget .col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-widget .col-label {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

.booking-widget .col-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ivory);
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

.booking-widget select.col-value {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1l4 4 4-4" stroke="%23d9bc83" stroke-width="1" fill="none" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
}

.booking-widget select.col-value option {
  background: var(--onyx);
  color: var(--ivory);
}

.booking-widget .col+.col {
  border-left: 1px solid var(--rule-dark);
  padding-left: 24px;
}

.booking-widget .btn {
  width: auto;
  white-space: nowrap;
}

/* ---------- Photo mosaic ---------- */
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.95fr 1.4fr 1fr;
  gap: 0;
  background: var(--onyx);
  border-top: 1px solid var(--rule-dark);
}

.mosaic .tile {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: brightness(0.92);
}

.mosaic .tile:nth-child(odd) {
  transform: translateY(-12px);
}

.mosaic .tile-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.8;
}

/* ---------- Editorial block (Rejuvenate body & mind) ---------- */
.editorial {
  background: var(--onyx);
  color: var(--ivory);
  padding: var(--sp-9) 0 var(--sp-11);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--sp-8);
  align-items: end;
}

.editorial-grid .left h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0;
  max-width: 14ch;
}

.editorial-grid .left h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.editorial-grid .right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  padding: 36px 36px 32px;
}

.editorial-grid .right p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-inv-2);
  margin: 0 0 18px;
}

.editorial-grid .right p:last-of-type {
  margin-bottom: 28px;
}

.editorial-photo {
  position: relative;
  margin-top: var(--sp-8);
  background: url('img-about-1.jpg') center / cover no-repeat;
  height: clamp(280px, 38vw, 460px);
  border-radius: 8px;
  overflow: hidden;
}

.editorial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0) 50%, rgba(20, 17, 13, 0.7));
}

.editorial-photo .caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--onyx);
  z-index: 1;
}

/* ---------- Booking process (4 steps) ---------- */
.steps-section {
  background: var(--ivory);
  padding: var(--sp-10) 0;
}

.steps-head {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: var(--sp-8);
  align-items: end;
  margin-bottom: var(--sp-8);
}

.steps-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
}

.steps-head h2 em {
  font-style: italic;
  color: var(--brass-deep);
}

.steps-head p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps-grid .step {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
}

.steps-grid .step:nth-child(3) {
  background: var(--onyx);
  color: var(--ivory);
  border-color: var(--rule-dark);
  transform: translateY(20px);
}

.steps-grid .step:nth-child(3) h4,
.steps-grid .step:nth-child(3) .step-num {
  color: var(--ivory);
}

.steps-grid .step:nth-child(3) p {
  color: var(--fg-inv-2);
}

.steps-grid .step:nth-child(3) .step-link {
  color: var(--ivory);
}

.step-num {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.steps-grid .step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

.steps-grid .step p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}

.steps-grid .step .spacer {
  flex: 1;
}

.step-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 4px;
}

.steps-grid .step:nth-child(3) .step-link {
  border-top-color: var(--rule-dark);
}

.step-link .arrow {
  width: 14px;
  height: 14px;
}

/* ---------- Features (Relax Rejuvenate Recharge) ---------- */
.features {
  background: var(--onyx);
  color: var(--ivory);
  padding: var(--sp-10) 0 var(--sp-11);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  border: 1px solid var(--rule-dark);
  border-radius: 50%;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.features-head {
  text-align: left;
  max-width: 30ch;
  margin-bottom: var(--sp-8);
}

.features-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0;
}

.features-head h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7) var(--sp-10);
  align-items: center;
  position: relative;
}

.features-photo {
  grid-column: 1 / -1;
  width: clamp(260px, 28vw, 380px);
  height: clamp(320px, 36vw, 480px);
  margin: 0 auto;
  background: url('Cherry/Cherry\ \(2\).jpeg') center / cover no-repeat;
  border-radius: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.features-grid .feature {
  position: relative;
  z-index: 2;
  max-width: 38ch;
}

.features-grid .feature.r1c1 {
  padding-right: 38%;
}

.features-grid .feature.r1c2 {
  padding-left: 38%;
  text-align: left;
}

.features-grid .feature.r2c1 {
  padding-right: 38%;
}

.features-grid .feature.r2c2 {
  padding-left: 38%;
}

.feature-mark {
  width: 16px;
  height: 16px;
  margin-bottom: 14px;
  display: inline-block;
  color: var(--brass);
}

.features-grid .feature h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}

.features-grid .feature p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--fg-inv-2);
  margin: 0;
}

/* ---------- Pricing & Booking section ---------- */
.pricing-section {
  background: var(--onyx);
  color: var(--ivory);
  padding: 0 0 var(--sp-10);
}

.pricing-head {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.pricing-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0;
}

.pricing-head h2 em {
  font-style: italic;
  color: var(--brass-soft);
}

.pricing-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card .price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.pricing-card .price-amount small {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 6px;
}

.pricing-card .price-meta {
  font-size: 14px;
  color: var(--fg-3);
  margin: 12px 0 22px;
}

.pricing-card .pricing-divider {
  width: 1px;
  background: var(--rule);
  align-self: stretch;
}

.pricing-card .right-col h6 {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 10px;
  font-weight: 400;
}

.pricing-card .right-col p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 10px;
}

.pricing-bottom {
  max-width: 900px;
  margin: var(--sp-8) auto 0;
  padding-top: var(--sp-7);
  border-top: 1px solid var(--rule-dark);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  align-items: end;
}

.pricing-bottom h5 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0;
  max-width: 12ch;
}

.pricing-bottom .ch-label {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 8px;
}

.pricing-bottom .ch-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ivory);
  margin: 0;
}

.pricing-bottom .ch-value a {
  color: var(--ivory);
  text-decoration: none;
}

.pricing-bottom .ch-value a:hover {
  color: var(--brass-soft);
}

.pricing-bottom .ch-value.link a {
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 5px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--onyx);
  color: var(--ivory);
  border-top: 1px solid var(--rule-dark);
  padding: var(--sp-9) 0 var(--sp-7);
}

.footer-lotus {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-7);
}

.footer-lotus img {
  height: 56px;
  opacity: 0.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}

.footer-grid h6 {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 16px;
  font-weight: 400;
}

.footer-grid .ft-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 6px;
}

.footer-grid .ft-brand-sub {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brass-soft);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.footer-grid p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--fg-inv-2);
  margin: 0 0 8px;
}

.footer-grid a {
  color: var(--fg-inv-2);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--brass-soft);
}

.footer-grid .ft-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule-dark);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-inv-3);
  letter-spacing: 0.06em;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: var(--brass);
  color: var(--onyx);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3);
  border: none;
  z-index: 100;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.float-wa:hover {
  background: var(--brass-deep);
  transform: translateY(-2px);
  color: white;
}

.float-wa svg {
  width: 26px;
  height: 26px;
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: var(--onyx);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
}

.page-header .eyebrow-row {
  justify-content: center;
  margin-bottom: 18px;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7.5vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 0 auto;
  max-width: 18ch;
}

.page-header h1 em {
  font-style: italic;
  color: var(--brass-soft);
}

.page-header .sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-inv-2);
  margin: var(--sp-5) auto 0;
  max-width: 50ch;
  line-height: 1.6;
}

/* ---------- Editorial two-column (used on About, Tantric) ---------- */
.split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--sp-9);
  align-items: start;
}

.split.reverse {
  grid-template-columns: 5fr 7fr;
}

.split.reverse .text {
  order: 2;
}

.split.reverse .media {
  order: 1;
}

.split .text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.split .text h2 em {
  font-style: italic;
  color: var(--brass-deep);
}

.split .text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 18px;
  max-width: 50ch;
}

.split .media .photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.split .media .photo+.photo {
  margin-top: var(--sp-4);
}

.split .media .photo.tall {
  aspect-ratio: 3/4.5;
}

.split .media .photo.wide {
  aspect-ratio: 5/4;
}

/* ---------- Service list (Services page) ---------- */
.svc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.svc-row {
  display: grid;
  grid-template-columns: 0.6fr 4fr 1fr 1.4fr;
  gap: var(--sp-7);
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}

.svc-row:last-child {
  border-bottom: none;
}

.svc-row .num {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--brass-deep);
  text-transform: uppercase;
}

.svc-row .title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.svc-row .desc {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.6;
}

.svc-row .meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

/* ---------- Prices table ---------- */
.prices-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 40px 44px;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
}

.prices-table tr {
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur-1) var(--ease-out);
}

.prices-table tr:hover {
  background: rgba(184,147,90,0.05);
}

.prices-table tr:last-child {
  border-bottom: none;
}

.prices-table td {
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
}

.prices-table td.dur {
  font-weight: 400;
}

.prices-table td.dur small {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

.prices-table td.amt {
  text-align: right;
  color: var(--brass-deep);
}

/* ---------- Therapist cards ---------- */
.therapist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.therapist-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.therapist-card .photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: var(--sp-5);
}

.therapist-card .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
}

.therapist-card .name em {
  font-style: italic;
  color: var(--brass-deep);
}

.therapist-card .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--sp-5);
}

.therapist-card .meta-row .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.therapist-card .meta-row .stat-label {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.therapist-card .meta-row .stat-val {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
}

.therapist-card .tag {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 8px;
}

.therapist-card .title-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}

.therapist-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 16px;
}

/* Single featured therapist — photo left, info right */
.therapist-feature {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--sp-8);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.therapist-feature .photo {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  border-radius: 8px;
}

.therapist-feature .info {
  display: flex;
  flex-direction: column;
}

.therapist-feature .tag {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 10px;
}

.therapist-feature .name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
}

.therapist-feature .meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--sp-5);
}

.therapist-feature .meta-row .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.therapist-feature .meta-row .stat-label {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.therapist-feature .meta-row .stat-val {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}

.therapist-feature .info>p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 8px;
  max-width: 48ch;
}

/* ---------- Reviews ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.25;
  pointer-events: none;
}

.review-card .stars {
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 13px;
}

.review-card .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.review-card .author {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.review-card .author-name {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.review-card .author-meta {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* ---------- Locations ---------- */
.locations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 880px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-card .area {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  margin: 0;
}

.location-card .area em {
  font-style: italic;
  color: var(--brass-deep);
}

.location-card .meta {
  font-size: 13px;
  color: var(--fg-3);
}

.location-card .desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 28px 22px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.contact-card .icon {
  width: 30px;
  height: 30px;
  color: var(--brass-deep);
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-card .channel-val {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-2);
  margin: 2px 0 8px;
  letter-spacing: 0.02em;
}

.contact-card a.cta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 6px;
  margin-top: auto;
}

/* ---------- Benefits checklist ---------- */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin: var(--sp-6) 0 0;
}

.benefits-list .bn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
  color: var(--ink);
}

.benefits-list .bn .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex-shrink: 0;
}

/* ---------- Image gallery (Tantric page) ---------- */
.tantric-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-9);
}

.tantric-gallery .gimg {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.tantric-gallery .gimg:nth-child(2) {
  transform: translateY(28px);
}

.tantric-gallery .gimg:nth-child(4) {
  transform: translateY(28px);
}

/* ---------- Big CTA band ---------- */
.cta-band {
  background: var(--onyx);
  color: var(--ivory);
  padding: var(--sp-9) 0;
  text-align: center;
  border-top: 1px solid var(--rule-dark);
}

.cta-band h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 auto var(--sp-5);
  max-width: 24ch;
}

.cta-band h3 em {
  font-style: italic;
  color: var(--brass-soft);
}

.cta-band .actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 5-column contact grid override */
.contact-grid[style*="repeat(5"] {
  max-width: 1200px;
}

/* ---------- Misc ---------- */
.page-fade {
  animation: fadeIn var(--dur-3) var(--ease-out);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .booking-widget {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }

  .booking-widget .col+.col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--rule-dark);
    padding-top: 14px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .steps-head {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid .step:nth-child(3) {
    transform: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-photo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto var(--sp-7);
  }

  .features::before {
    display: none;
  }

  .features-grid .feature.r1c1,
  .features-grid .feature.r1c2,
  .features-grid .feature.r2c1,
  .features-grid .feature.r2c2 {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-card .pricing-divider {
    width: auto;
    height: 1px;
  }

  .pricing-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .text {
    order: 1;
  }

  .split.reverse .media {
    order: 2;
  }

  .svc-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: var(--sp-6) 0;
  }

  .therapist-grid {
    grid-template-columns: 1fr;
  }

  .therapist-feature {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  .therapist-feature .photo {
    max-width: 420px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .locations-list {
    grid-template-columns: 1fr;
  }

  .loc-row {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tantric-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .mosaic .tile:nth-child(4),
  .mosaic .tile:nth-child(5) {
    display: none;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Portfolio page ---------- */

/* The outer section needs no bottom padding — the profile section handles spacing */
.pf-section {
  padding: var(--sp-8) 0;
}

/* Two-column layout — left sticky, right scrolls */
.pf-layout {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: var(--sp-5);
  align-items: start;
  /* critical: lets sticky work */
}

/* ── Left column: the column itself is full height ── */
.pf-left {
  position: sticky;
  top: 120px;
}

/* The sticky inner wrapper */
.pf-left-sticky {
  position: sticky;
  top: 80px;
  /* clears the sticky nav bar (~70px) + small gap */
}

/* Main video player */
.pf-main-video-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  aspect-ratio: 9/16;
  position: relative;
}

.pf-main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Right column: strict 3-column grid ── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Each thumbnail */
.pf-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  border: none;
  padding: 0;
  background: #1a1410;
  cursor: zoom-in;
  display: block;
  width: 100%;
}

.pf-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out), filter 0.3s var(--ease-out);
}

.pf-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

/* Expand icon overlay (images) */
.pf-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
}

.pf-thumb:hover .pf-thumb-overlay {
  opacity: 1;
}

.pf-thumb:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

/* Play icon overlay (video thumbnail) */
.pf-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

.pf-thumb-video:hover .pf-play-icon {
  transform: scale(1.1);
  opacity: 0.92;
}

/* "Video" badge at bottom-left of video thumb */
.pf-video-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 3px 8px;
  pointer-events: none;
}

/* ---------- Portfolio lightbox modal ---------- */
.pf-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 6, 4, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn var(--dur-2) var(--ease-out);
}

.pf-modal-frame {
  position: relative;
  max-width: min(92vw, 900px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image in modal */
.pf-modal-img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  animation: fadeIn var(--dur-2) var(--ease-out);
}

/* Video in modal */
.pf-modal-video {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  background: #000;
  animation: fadeIn var(--dur-2) var(--ease-out);
}

/* Close button */
.pf-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}

.pf-modal-close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.1);
}

/* Prev / Next nav */
.pf-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
  z-index: 2;
}

.pf-modal-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.pf-modal-prev {
  left: -68px;
}

.pf-modal-next {
  right: -68px;
}

.pf-modal-prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.pf-modal-next:hover {
  transform: translateY(-50%) translateX(2px);
}

/* Counter */
.pf-modal-counter {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

/* ---------- Portfolio responsive ---------- */
@media (max-width: 1100px) {
  .pf-layout {
    grid-template-columns: 5fr 7fr;
  }
}

@media (max-width: 980px) {
  .pf-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-7);
  }

  /* No sticky on mobile — just stacks naturally */
  .pf-left-sticky {
    position: static;
  }

  .pf-main-video-wrap {
    aspect-ratio: 16/9;
  }

  .pf-grid {
    gap: 8px;
  }

  .pf-modal-prev {
    left: -54px;
  }

  .pf-modal-next {
    right: -54px;
  }
}

@media (max-width: 600px) {
  .pf-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .pf-modal-nav {
    width: 38px;
    height: 38px;
  }

  .pf-modal-prev {
    left: -44px;
  }

  .pf-modal-next {
    right: -44px;
  }

  .pf-modal-frame {
    max-width: 96vw;
  }
}

/* ---------- Portfolio: text + actions below left video ---------- */
.pf-left-text {
  margin-top: var(--sp-5);
}

.pf-left-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-2);
  margin: 0 0 14px;
}

.pf-left-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--sp-4);
}

/* ---------- Portfolio: Cherry profile section ---------- */
.pf-profile-section {
  background: var(--cream);
  padding: var(--sp-9) 0;
  border-top: 1px solid var(--rule);
}

.pf-profile {
  max-width: 720px;
  /* left-aligned, matches screenshot */
}

.pf-profile-tag {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 10px;
}

.pf-profile-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 20px;
}

.pf-profile-name em {
  font-style: normal;
  color: var(--ink);
}

.pf-profile-title {
  display: block;
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 300;
}

.pf-profile-rule {
  height: 1px;
  background: var(--rule);
  margin: 20px 0;
}

/* Stats row */
.pf-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.pf-profile-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 28px 10px 0;
  min-width: 90px;
}

.pf-profile-stat-label {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.pf-profile-stat-val {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* Bio */
.pf-profile-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 14px;
  max-width: 58ch;
}

/* Italic footer line */
.pf-profile-footer {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 24px;
}

/* CTA buttons */
.pf-profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Portfolio profile responsive ---------- */
@media (max-width: 980px) {
  .pf-left-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pf-profile-name {
    font-size: clamp(34px, 8vw, 52px);
  }

  .pf-profile-meta {
    gap: 0;
  }

  .pf-profile-stat {
    min-width: 80px;
    padding-right: 20px;
  }
}

@media (max-width: 600px) {
  .pf-profile-actions {
    flex-direction: column;
  }

  .pf-profile-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Portfolio: compact page header ---------- */
.pf-page-header-wrap .page-header {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ---------- Home mosaic: video tiles with play icon ---------- */
.mosaic-video-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.mosaic-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.85;
}
.mosaic-video-tile:hover .mosaic-play-icon {
  transform: scale(1.12);
  opacity: 1;
}
.mosaic-video-tile:hover img {
  filter: brightness(0.78);
  transition: filter 0.3s ease;
}

/* ============================================================
   HOME PAGE — Premium minimal redesign
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;

}

.hp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,8,6,0.72) 0%,
    rgba(10,8,6,0.45) 55%,
    rgba(10,8,6,0.65) 100%
  );
}

.hp-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--ivory);
  padding: 0 var(--gutter);
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hp-eyebrow {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 0 0 28px;
}

.hp-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin: 0 0 28px;
}

.hp-title em {
  font-style: italic;
  color: var(--brass-soft);
}

.hp-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(251,246,236,0.72);
  line-height: 1.7;
  margin: 0 0 44px;
  letter-spacing: 0.01em;
}

.hp-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}

.hp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hp-btn-primary:hover { opacity: 0.88; color: white; }

.hp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.hp-btn-ghost:hover {
  background-color: var(--brass-deep);
  color: white;
}

.hp-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.45);
}

.hp-dot {
  color: var(--brass);
  font-size: 8px;
  margin-right: 5px;
}

.hp-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hp-scroll-cue span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ── Sessions strip ───────────────────────────────────────── */
.hp-sessions {
  background: var(--onyx);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.h2-lable{
  color: var(--brass-soft);
  text-align: center;
  padding: 0 0 50px  0 ;
}

.hp-sessions-label {
  text-align: center;
  font-family: var(--font-label);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 40px;
}

.hp-sessions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hp-session-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.hp-session-tile:last-child { border-right: none; }

.hp-st-img {
  position: absolute;
  inset: 0;
}

.hp-st-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.8);
}

.hp-session-tile:hover .hp-st-img img {
  transform: scale(1.06);
  filter: brightness(1);
}

.hp-st-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 28px;
  background: linear-gradient(to top, rgba(10,8,6,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-st-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.hp-st-from {
  font-family: var(--font-label);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-soft);
}

/* ── Editorial split ──────────────────────────────────────── */
.hp-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.hp-editorial-img {
  overflow: hidden;
}

.hp-editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hp-editorial:hover .hp-editorial-img img {
  transform: scale(1.03);
}

.hp-editorial-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px) clamp(40px, 6vw, 88px);
  gap: 0;
}

.hp-editorial-text h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 28px;
}

.hp-editorial-text h2 em {
  font-style: italic;
  color: var(--brass-deep);
}

.hp-editorial-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-2);
  max-width: 44ch;
  margin: 0 0 36px;
}

.hp-ed-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
}

.hp-btn-dark:hover { background: var(--brass-deep); color:white; }

.hp-btn-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-underline-offset: 5px;
}

/* ── Contact strip ────────────────────────────────────────── */
.hp-contact-strip {
  background: var(--onyx);
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hp-cs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hp-cs-left h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 8px 0 0;
}

.hp-cs-channels {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hp-ch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  color: var(--ivory);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}

.hp-ch:hover {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-sessions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-session-tile {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .hp-editorial {
    grid-template-columns: 1fr;
  }
  .hp-editorial-img {
    aspect-ratio: 4/3;
  }
  .hp-cs-inner {
    flex-direction: column;
    text-align: center;
  }
  .hp-cs-channels {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hp-sessions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hp-title {
    font-size: clamp(52px, 14vw, 80px);
  }
}
