:root {
  --ink: #2a2a2a;
  --muted: #6b7573;
  --paper: #f4f4f4;
  --stone: #d5d8d6;
  --teal: #004b57;
  --teal-mid: #1a5a63;
  --sage: #5f7a78;
  --gold: #c4a36a;
  --hero: #d3d7d8;
  --white: #ffffff;
  --err: #9b3d3d;
  --ok: #3d6b52;
  --serif: "Unna", "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
.wrap { width: min(1180px, calc(100% - 2.2rem)); margin: 0 auto; }
.narrow { width: min(560px, 100%); }
.muted { color: var(--muted); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hdr {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 0; position: relative;
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--gold);
  flex-shrink: 0;
}
.brand img { height: 48px; width: auto; }
.brand-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: .01em;
  color: var(--gold);
}
.hdr-region {
  display: flex;
  align-items: center;
  gap: .1rem;
  font-size: .72rem;
  letter-spacing: .02em;
  border: 1px solid var(--stone);
  border-radius: 99px;
  padding: .12rem;
  flex-shrink: 0;
}
.hdr-region a {
  text-decoration: none;
  color: var(--muted);
  padding: .2rem .5rem;
  border-radius: 99px;
  white-space: nowrap;
}
.hdr-region a.is-active {
  background: var(--teal);
  color: #fff;
}
.hdr-account {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .86rem;
  line-height: 1.2;
}
.hdr-account__name {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  max-width: 9.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hdr-account__out {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-left: 1px solid var(--stone);
  padding-left: .55rem;
}
.hdr-account__name:hover,
.hdr-account__out:hover { color: var(--gold); }
.hdr-tools {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  margin-left: .15rem;
  white-space: nowrap;
}
.nav-cart {
  position: relative; color: var(--teal); text-decoration: none; display: inline-flex;
}
.nav-cart em {
  position: absolute; top: -6px; right: -8px;
  display: inline-flex; min-width: 1.05rem; height: 1.05rem; border-radius: 99px;
  background: var(--teal); color: #fff; font-size: .65rem; align-items: center; justify-content: center;
  font-style: normal; padding: 0 .25rem;
}
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center;
  background: none; border: 0; width: 38px; height: 32px; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--teal-mid); margin: 4px 0; }
.nav {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: .05rem .15rem;
  position: static;
  background: transparent;
  min-width: 0;
  box-shadow: none;
  padding: 0;
}
.nav a {
  text-decoration: none; color: var(--ink);
  padding: .45rem .55rem; font-size: .9rem;
  white-space: nowrap;
}
.nav a.is-active { color: var(--gold); }
.nav a:hover { color: var(--teal); }
.nav-item { position: relative; }
.nav-item.has-sub > a { display: inline-flex; align-items: center; }
.nav-item.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: .28rem;
  border: 4px solid transparent;
  border-top-color: currentColor;
  vertical-align: middle;
  transform: translateY(2px);
}
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  padding: .4rem 0;
  z-index: 60;
}
.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub:focus-within .nav-sub { display: block; }
.nav-sub a { display: block; padding: .5rem 1rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 0;
  max-height: 560px;
  background: #d0d6d8;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.8rem, 4vw, 3.2rem) clamp(1.6rem, 5vw, 4.5rem);
}
.hero-kicker {
  font-family: var(--serif);
  font-weight: 700;
  color: #104657;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  margin: 0 0 .25rem;
}
.hero-name {
  font-family: var(--serif);
  font-weight: 400;
  color: #fff;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: .92;
  margin: 0 0 1.2rem;
}
.hero-name em {
  display: block;
  font-style: italic;
  font-weight: 400;
}
.hero__aside {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.hero__mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  align-items: stretch;
}
.hero__photo {
  position: relative;
  min-height: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #104657;
  color: #fff;
  padding: 1.15rem 1.2rem 1.25rem;
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.3vw, 1.15rem);
  line-height: 1.4;
}
.hero__overlay p { margin: 0 0 .35rem; font-weight: 700; }
.hero__overlay p:last-child { margin: 0; }
.hero__mint {
  background: #d1dedc;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hero-contact {
  display: block;
  background: #fff;
  color: #2a2a2a;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  padding: 1.35rem 1.2rem;
}
.hero-contact:hover { background: #104657; color: #fff; }
.hero__mint h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.15;
  margin: 0;
  padding: 1.1rem 1.2rem .7rem;
  color: #3a3a3a;
}
.hero__mint img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
}
.hero__social {
  background: #004d67;
  display: flex;
  justify-content: flex-end;
  gap: .55rem;
  padding: .7rem 1.1rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: #fff; text-decoration: none;
  border: 0; border-radius: 0; padding: .9rem 2.1rem;
  font-family: var(--sans); font-size: .82rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
}
.btn--solid { background: #004d67; color: #fff; }
.btn--light { background: #fff; color: var(--teal); }
.btn--ghost { background: transparent; color: var(--teal); border: 1px solid var(--teal); }

.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; color: var(--sage); margin: 0 0 .6rem; }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 1rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.lead a { color: var(--teal); }
.hero__cta, .acc-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.section { padding: 4.2rem 0; }
.section-head { margin-bottom: 2rem; }
.band { background: #f3f1ee; }
.about-band { background: var(--white); }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.portrait { border-radius: 0; overflow: hidden; margin: 0; }
.portrait img { width: 100%; height: auto; display: block; object-fit: cover; }
.card-grid, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.path-card, .product-card {
  background: var(--white); overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.path-card img, .product-card__img img { width: 100%; height: 220px; object-fit: cover; }
.product-card a { text-decoration: none; color: inherit; }
.path-card h3, .product-card h3, .path-card p, .product-card p { padding: 0 1.1rem; }
.path-card h3, .product-card h3 { margin: 1rem 0 .35rem; font-size: 1.45rem; }
.path-card p, .product-card p { padding-bottom: 1.2rem; color: var(--muted); }
.price { color: var(--gold); font-weight: 500; }
.price--lg { font-size: 1.4rem; }
.center { text-align: center; margin-top: 2rem; }
.text-link { display: inline-block; margin-top: 1rem; }

.page-hero, .membership-hero { padding: 4.2rem 0 2rem; background: var(--hero); }
.membership-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
.membership-art img { width: 100%; }
.join-label { margin: 1.6rem 0 .8rem; font-weight: 500; }
.benefit-list { padding-left: 1.2rem; margin: 0 0 2rem; }
.benefit-list li { margin: 0 0 1.1rem; }
.benefit-list strong { display: block; font-family: var(--serif); font-size: 1.25rem; margin-bottom: .25rem; color: var(--teal); }

.prose { font-size: 1.05rem; }
.prose p { margin: 0 0 1rem; }
.prose ol, .prose ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.prose li { margin: 0 0 .4rem; }
.prose h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 1.5rem 0 .35rem;
  color: var(--teal);
}
.healing-page { padding: 3.2rem 0 1rem; background: var(--white); }
.healing-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
.healing-art { margin: 0; }
.healing-art img { width: 100%; }
.healing-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 0; }
.cat-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.cat-bar a {
  text-decoration: none; border: 1px solid var(--stone); border-radius: 999px;
  padding: .35rem .9rem; color: var(--ink); font-size: .85rem;
}
.cat-bar a.is-active { background: var(--teal); color: #fff; border-color: var(--teal); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.product-detail__media img { width: 100%; }
.form { display: grid; gap: .9rem; }
.form label { display: grid; gap: .3rem; font-size: .9rem; }
.form input, .form textarea, .form select {
  border: 1px solid var(--stone); border-radius: 6px; padding: .7rem .8rem; font: inherit; background: #fff;
}
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th, .table td { text-align: left; padding: .75rem; border-bottom: 1px solid var(--stone); }
.flash { width: min(1180px, calc(100% - 2.2rem)); margin: 1rem auto 0; padding: .8rem 1rem; border-radius: 6px; }
.flash--ok { background: #e6f3ea; color: var(--ok); }
.flash--err { background: #f8e6e6; color: var(--err); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  border-radius: 8px;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}
.video-lite { cursor: pointer; }
.video-lite img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-lite__play {
  position: absolute; left: 50%; top: 50%;
  width: 68px; height: 48px; margin: -24px 0 0 -34px;
  border: 0; border-radius: 12px; cursor: pointer;
  background: #c00;
}
.video-lite__play::after {
  content: "";
  position: absolute; left: 28px; top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}
.video-lite:hover .video-lite__play { background: #e00; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.video-card h3 { font-size: 1.15rem; margin: .7rem 0 0; }
.video-card h3 a { text-decoration: none; color: inherit; }
.interview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.interview-grid--large { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.interview-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: .85rem 0 .2rem;
}
.interview-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.ig-card img { width: 100%; height: 100%; object-fit: cover; }
.ig-play {
  position: absolute;
  left: 50%; top: 50%;
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85);
}
.ig-play::after {
  content: "";
  position: absolute;
  left: 16px; top: 13px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.yt-card { text-decoration: none; color: inherit; }
.yt-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.yt-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  margin: .65rem 0 0;
  line-height: 1.3;
}
.members-welcome { padding: 3.5rem 0 2rem; background: #fff; }
.telegram-band { background: var(--hero); }
.event-card { background: #fff; padding: 1.2rem 1.4rem; margin-bottom: 1rem; box-shadow: 0 6px 18px rgba(0,0,0,.05); }

.site-footer { background: var(--teal); color: #e8ecea; padding: 1.6rem 0; }
.footer-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.socials,
.hero__social { display: flex; gap: .6rem; }
.socials a,
.hero__social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
}
.hero__social a { width: 30px; height: 30px; }
.socials a svg,
.hero__social a svg { width: 15px; height: 15px; display: block; }
.hero__social a svg { width: 14px; height: 14px; }
.socials a:hover,
.hero__social a:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.footer-wa {
  background: #25d366; color: #083; text-decoration: none;
  padding: .45rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
}
.footer-copy { margin: 0; opacity: .85; font-size: .85rem; }
.footer-copy a { color: #fff; }
.qty { display: flex; gap: .6rem; align-items: center; margin: 1rem 0; }
.qty input { width: 70px; }
.summary { background: #fff; padding: 1.2rem; border-radius: 8px; }

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #25d366; color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: .55rem;
  padding: .55rem .9rem .55rem .55rem; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  font-size: .9rem;
}
.wa-float__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #128c7e; display: inline-flex; align-items: center; justify-content: center;
}
.to-top {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 61;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--teal, #004b57);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.to-top:hover,
.to-top:focus-visible {
  background: #003844;
}
.to-top svg { display: block; }
@media (prefers-reduced-motion: reduce) {
  .to-top { transition: none; }
}

.preview-banner {
  background: #104657;
  color: #fff;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .9rem;
  position: sticky;
  top: 64px;
  z-index: 45;
}
.preview-banner a { color: #fff; margin-left: .6rem; }
.draft-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: .68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1d2422;
  padding: .12rem .4rem;
  margin-left: .35rem;
  vertical-align: middle;
}

.preview-banner a { color: #fff; text-decoration: underline; }

.booking-widget { margin: 1.4rem 0 1.2rem; }
.booking-copy { font-size: .95rem; margin: 0 0 1rem; }
.booking-tz { font-size: .8rem; color: #667; margin: .8rem 0 0; }
.booking-cal {
  background: #fff; border: 1px solid var(--stone); border-radius: 10px; padding: 1rem;
  max-width: 380px;
}
.booking-cal__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.booking-cal__btn {
  border: 1px solid var(--stone); background: #fff; width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; font-size: 1rem;
}
.booking-cal__weekdays, .booking-cal__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .25rem; text-align: center;
}
.booking-cal__weekdays span { font-size: .72rem; color: #667; padding: .2rem 0; }
.booking-day {
  border: 0; background: #f3f1ee; color: #889; border-radius: 50%;
  width: 38px; height: 38px; margin: 0 auto; cursor: default; font: inherit;
}
.booking-day.is-empty { background: transparent; }
.booking-day.is-available {
  background: #cfe8d3; color: #1d4a2a; cursor: pointer; font-weight: 600;
}
.booking-day.is-available:hover { background: #b7dcbe; }
.booking-day.is-selected { background: var(--teal); color: #fff; }
.booking-day.is-busy { opacity: .55; }
.booking-slots { margin-top: 1rem; }
.booking-slots__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.booking-slot {
  border: 1px solid var(--teal); background: #fff; color: var(--teal);
  padding: .45rem .85rem; border-radius: 999px; cursor: pointer; font: inherit;
}
.booking-slot.is-selected, .booking-slot:hover { background: var(--teal); color: #fff; }
.booking-error { color: var(--err); }
.slot-note { display: block; font-size: .85rem; color: #556; margin-top: .25rem; }

@media (max-width: 980px) {
  .ig-grid, .yt-grid { grid-template-columns: 1fr 1fr; }
	.hero, .hero__mosaic, .split, .card-grid, .product-grid, .product-detail, .video-grid, .membership-layout, .healing-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 0; max-height: none; }
  .hero__copy {
    min-height: 0;
    padding: 2.6rem 1.4rem 2.2rem;
  }
  .hero-name { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero__photo { min-height: 280px; }
  .hero__overlay { position: relative; }
  .hero__mint img { min-height: 160px; flex: none; }
  .hdr-tools { margin-left: auto; }
  .nav-toggle { display: flex; align-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    padding: .8rem 0;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .55rem 1.2rem; font-size: .95rem; }
  .nav-item.has-sub { display: flex; flex-direction: column; }
  .nav-item.has-sub > a::after { display: none; }
  .nav-sub {
    display: flex;
    flex-direction: column;
    position: static;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 .35rem .8rem;
  }
}
@media (max-width: 640px) {
  .ig-grid, .yt-grid, .interview-grid, .interview-grid--large { grid-template-columns: 1fr; }
}
