/* ---------- tokens & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #271c12;
  --bg2: #2f2316;
  --bg3: #392b1b;
  --ink: #d2c0a5;
  --ink-strong: #f4e9d5;
  --ink-dim: #a8946f;
  --gold: #d9b178;
  --gold-deep: #8a6a45;
  --line: rgba(217, 177, 120, .18);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Avenir Next', 'Helvetica Neue', sans-serif;
}
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(96px + env(safe-area-inset-top, 0px)); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--ink-strong); line-height: 1.15; }
h2 { margin-bottom: 18px; }
::selection { background: var(--gold-deep); color: var(--ink-strong); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left)); }
.block { padding: 110px 0; position: relative; }
.block-alt { background: var(--bg2); }
.copy p { margin-bottom: 18px; }
.copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: lowercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 8px; margin-right: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='8' viewBox='0 0 28 8'%3E%3Cpath d='M1 4c3-4 6-4 9 0s6 4 9 0 5-3 8-1' fill='none' stroke='%23d9b178' stroke-opacity='.75' stroke-width='1'/%3E%3C/svg%3E") no-repeat center / contain;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 999px;
  background: var(--gold);
  color: #241a0f;
  transition: background .3s, transform .3s;
}
.btn:hover { background: #e6c693; transform: translateY(-1px); }
.btn-line {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: border-color .3s, color .3s;
}
.btn-line:hover { border-color: var(--gold); }
.framed { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.framed img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-2 > * { min-width: 0; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .block { padding: 80px 0; }
  .grid-2 .framed { max-width: 560px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
/* ---------- header ---------- */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
.site-head.scrolled {
  background: rgba(39, 28, 18, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.wordmark { font-family: var(--serif); color: var(--ink-strong); font-size: 1.05rem; letter-spacing: .3em; text-align: center; }
.wordmark .wm-name { display: block; padding-left: .3em; }
.wordmark .wm-tag {
  display: block; font-family: var(--sans); font-weight: 300;
  font-size: .55rem; letter-spacing: .4em; padding-left: .4em; color: var(--gold); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); transition: color .3s; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); }
.nav-links .btn { padding: 10px 24px; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 60; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--gold); margin: 7px auto; }
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(39, 28, 18, .97);
    flex-direction: column; justify-content: center; gap: 28px;
    opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .35s, visibility 0s .35s;
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; visibility: visible; transition: opacity .35s; }
  .nav-links .btn { padding: 13px 28px; }
}
/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% 28%, rgba(217, 177, 120, .22), transparent 62%),
    radial-gradient(ellipse 70% 40% at 50% 110%, rgba(138, 106, 69, .24), transparent 70%),
    linear-gradient(#2e2316, var(--bg));
}
.ripples { position: absolute; inset: 0; display: grid; place-items: center; place-content: center; pointer-events: none; }
.ripples i {
  grid-area: 1 / 1;
  border: 1px solid rgba(217, 177, 120, .12);
  border-radius: 50%;
  animation: ripple 9s var(--d, 0s) ease-in-out infinite;
}
.ripples i:nth-child(1) { width: 340px; height: 340px; }
.ripples i:nth-child(2) { width: 560px; height: 560px; --d: -2s; }
.ripples i:nth-child(3) { width: 800px; height: 800px; --d: -4s; }
.ripples i:nth-child(4) { width: 1080px; height: 1080px; --d: -6s; }
@keyframes ripple {
  0%, 100% { transform: scale(.96); opacity: .5; }
  50% { transform: scale(1.04); opacity: 1; }
}
.hero-content { padding-top: 90px; }
.hero-brand { font-family: var(--serif); letter-spacing: .42em; padding-left: .42em; font-size: clamp(1rem, 2vw, 1.3rem); color: var(--gold); }
.hero-tag { font-size: .7rem; letter-spacing: .5em; padding-left: .5em; color: var(--ink-dim); margin: 10px 0 38px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; }
.hero-sub { max-width: 520px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) { .ripples i { animation: none; } }
/* ---------- practice ---------- */
.instruments { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 30px; }
.instruments li { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); }
.instruments li:not(:last-child)::after { content: "·"; color: var(--gold); margin: 0 14px; }
.instruments li:not(:last-child)::after { content: "·" / ""; }
/* ---------- experience ---------- */
.exp-banner { margin-bottom: 64px; }
.exp-banner img { width: 100%; max-height: 420px; object-fit: cover; object-position: center; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.step { position: relative; padding-top: 44px; }
.step .num {
  position: absolute; top: -14px; left: -6px; line-height: 1;
  font-family: var(--serif); font-size: 5.4rem;
  color: rgba(217, 177, 120, .12);
  -webkit-text-stroke: 1px rgba(217, 177, 120, .3);
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; position: relative; }
.step p { font-size: .95rem; position: relative; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
/* ---------- offerings ---------- */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.offer-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; display: flex; flex-direction: column;
  position: relative; transition: border-color .35s, box-shadow .6s ease;
}
.js .offer-card.reveal { transition: border-color .35s, box-shadow .6s ease, opacity .9s ease, transform .9s ease; }
.offer-card::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid transparent;
  border-radius: 3px; pointer-events: none; transition: border-color .5s;
}
.offer-card:hover { border-color: rgba(217, 177, 120, .4); box-shadow: 0 34px 70px -42px rgba(217, 177, 120, .3); }
.offer-card:hover::after { border-color: var(--line); }
.block-alt .offer-card { background: var(--bg3); }
.offer-card > img { height: 240px; width: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.4s ease, filter 1.4s ease; }
.offer-card:hover > img { transform: scale(1.035); filter: saturate(1); }
.offer-body { padding: 36px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.offer-body h3 { font-size: 1.6rem; }
.offer-meta { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.offer-body .btn-line { align-self: flex-start; margin-top: auto; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
/* ---------- about ---------- */
.about-quote {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--ink-strong); line-height: 1.5;
  margin: 30px 0; position: relative;
}
.about-quote::before {
  content: "\201C"; font-family: var(--serif); font-style: normal;
  display: block; font-size: 4.6rem; line-height: 1;
  color: var(--gold); opacity: .45; margin: 0 0 -20px -4px;
}
.text-link { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; transition: color .3s; }
.text-link:hover { color: #e6c693; }
.text-link::after { content: " →"; }
.text-link::after { content: " →" / ""; }
/* ---------- journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: post; }
.post-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; counter-increment: post; transition: border-color .35s;
}
.js .post-card.reveal { transition: border-color .35s, opacity .9s ease, transform .9s ease; }
.post-tag::before { content: counter(post, decimal-leading-zero) " · "; color: var(--ink-dim); }
.post-card:hover { border-color: rgba(217, 177, 120, .4); }
.post-card > img { height: 170px; width: 100%; object-fit: cover; filter: saturate(.92); }
.post-body { padding: 26px; }
.post-tag { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.post-body h3 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 12px; }
.post-body p { font-size: .92rem; }
@media (max-width: 880px) { .journal-grid { grid-template-columns: 1fr; } .post-card > img { height: 220px; } }
/* ---------- closing ---------- */
.closing {
  text-align: center; padding: 150px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(217, 177, 120, .19), transparent 65%), var(--bg);
}
.closing::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 540px; height: 540px;
  margin: -270px 0 0 -270px; border: 1px solid rgba(217, 177, 120, .14);
  border-radius: 50%; pointer-events: none;
  animation: ripple 11s ease-in-out infinite;
}
.closing .container { position: relative; }
.closing h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.closing p { max-width: 460px; margin: 0 auto 36px; }
.closing small { display: block; margin-top: 18px; color: var(--ink-dim); font-size: .8rem; letter-spacing: .05em; }
/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 56px 0; background: var(--bg); }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-meta { display: flex; gap: 26px; flex-wrap: wrap; font-size: .85rem; color: var(--ink-dim); }
.foot-copy { font-size: .75rem; color: var(--ink-dim); margin-top: 26px; letter-spacing: .05em; }
/* ---------- distinctive ui: sound made visible ---------- */
/* candlelit film grain over the whole page */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .04; mix-blend-mode: soft-light;
}
/* scroll progress thread */
.progress-thread {
  position: fixed; top: env(safe-area-inset-top, 0px); left: 0; height: 2px; width: 100%; z-index: 70;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform: scaleX(0); transform-origin: 0 50%; pointer-events: none;
}
/* hero entrance choreography */
@media (prefers-reduced-motion: no-preference) {
  .js .hero-content > * { opacity: 0; animation: rise 1.2s cubic-bezier(.22, .61, .36, 1) forwards; }
  .js .hero-content > :nth-child(1) { animation-delay: .15s; }
  .js .hero-content > :nth-child(2) { animation-delay: .3s; }
  .js .hero-content > :nth-child(3) { animation-delay: .5s; }
  .js .hero-content > :nth-child(4) { animation-delay: .7s; }
  .js .hero-content > :nth-child(5) { animation-delay: .95s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
/* italic gold accent word in the headline */
.accent { font-style: italic; color: var(--gold); }
/* candle glow that drifts after the cursor in the hero */
.hero-flame {
  position: absolute; left: 0; top: 0; width: 480px; height: 480px;
  border-radius: 50%; pointer-events: none; opacity: 0; transition: opacity 1.4s ease;
  background: radial-gradient(circle, rgba(217, 177, 120, .12), transparent 65%);
}
.hero-flame.lit { opacity: 1; }
/* offset echo frames on editorial images */
.grid-2 .framed { overflow: visible; border: none; position: relative; }
.grid-2 .framed img { border-radius: 6px; border: 1px solid var(--line); position: relative; z-index: 1; }
.grid-2 .framed::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(217, 177, 120, .25); border-radius: 6px;
}
/* drifting instrument strip */
.instrument-strip {
  display: flex; overflow: hidden; margin-top: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.instrument-strip .instruments { margin-top: 0; flex-wrap: nowrap; flex-shrink: 0; min-width: 100%; animation: drift 38s linear infinite; }
.instrument-strip .instruments li { white-space: nowrap; }
.instrument-strip .instruments li:last-child::after { content: "·"; color: var(--gold); margin: 0 14px; }
.instrument-strip .instruments li:last-child::after { content: "·" / ""; }
.instrument-strip:hover .instruments { animation-play-state: paused; }
@keyframes drift { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) {
  .closing::before { animation: none; }
  .hero-flame { display: none; }
  .instrument-strip { -webkit-mask-image: none; mask-image: none; }
  .instrument-strip .instruments { animation: none; flex-wrap: wrap; flex-shrink: 1; }
  .instrument-strip .instruments[aria-hidden="true"] { display: none; }
  .instrument-strip .instruments li { white-space: normal; }
}

/* Booking modal: loads the Acuity scheduler in an on-brand overlay */
.book-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 4vw, 40px);
  background: rgba(20, 14, 8, .72);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity .3s ease;
}
.book-modal[hidden] { display: none; }
.book-modal.open { opacity: 1; }
.book-modal-panel {
  position: relative;
  width: min(560px, 100%); height: min(82vh, 820px);
  background: var(--ink-strong);
  border: 1px solid var(--gold-deep);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transform: translateY(12px); transition: transform .3s ease;
}
.book-modal.open .book-modal-panel { transform: none; }
.book-modal-frame { width: 100%; height: 100%; border: 0; display: block; background: var(--ink-strong); }
.book-modal-close {
  position: absolute; top: clamp(8px, 1.6vh, 18px); right: clamp(8px, 1.6vw, 18px); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); color: var(--gold); border: 1px solid var(--gold-deep);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.book-modal-close:hover { background: var(--bg3); }
@media (prefers-reduced-motion: reduce) {
  .book-modal, .book-modal-panel { transition: none; }
}

/* ---------- journal article ---------- */
/* heading, excerpt, media and prose all share one content column */
.article-head { max-width: 68ch; padding-top: 132px; padding-bottom: 14px; }
.article-back {
  display: inline-block; margin-bottom: 30px;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-dim);
}
.article-back:hover { color: var(--gold); }
.article-head h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 14px 0 24px; }
.article-lead {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.7; color: var(--ink-strong);
}
.article-media { max-width: 68ch; margin: 44px auto 0; padding: 0 max(24px, env(safe-area-inset-right)) 0 max(24px, env(safe-area-inset-left)); }
.article-media img {
  width: 100%; height: clamp(240px, 44vh, 460px); object-fit: cover;
  border-radius: 8px; filter: saturate(.92);
}
.article-body { padding: 64px 0 120px; }
.article-body > .container { max-width: 68ch; }
.prose { max-width: none; margin: 0; }
.prose p { margin-bottom: 1.5em; line-height: 1.9; color: var(--ink); }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 1.9em 0 .5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose h3 { font-size: 1.3rem; margin: 1.7em 0 .4em; color: var(--ink-strong); }
.prose ul { margin: 0 0 1.5em 1.2em; }
.prose li { margin-bottom: .6em; line-height: 1.85; color: var(--ink); }
.prose strong { color: var(--ink-strong); font-weight: 500; }
.prose .article-sign { font-style: italic; color: var(--ink-dim); margin-top: 2.4em; }
.post-card-link { display: block; height: 100%; color: inherit; }
.post-card-link .post-card { display: flex; flex-direction: column; height: 100%; }
.post-card-link .post-card > img { flex-shrink: 0; }
.post-card-link .post-body { flex: 1 1 auto; }
.post-card-link h3 { color: var(--ink-strong); transition: color .35s; }
.post-card-link:hover h3 { color: var(--gold); }
