/* Patricia Zanella — Voice, breath, presence */
:root {
  --ink: #2b2424;
  --wine: #6f3948;
  --wine-dark: #512735;
  --clay: #a55f4f;
  --bone: #f7f2eb;
  --paper: #fffdf9;
  --blush: #eee1dd;
  --sage: #53655d;
  --sage-soft: #dbe1d9;
  --line: rgba(43, 36, 36, .18);
  --muted: #6e6462;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1220px, calc(100vw - 64px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.75 var(--sans);
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3 {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
p, li, dd, address { overflow-wrap: break-word; }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px;
  color: #fff; background: var(--wine-dark); transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 10vw, 152px); }
.section--tinted { background: var(--bone); }
.section--sage { color: #fff; background: var(--sage); }
.section--sage .eyebrow--light { color: #fff; }
.section--ink { color: #fff; background: var(--ink); }
.section-marker { display: flex; gap: 18px; color: var(--muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.section-marker span:first-child { color: var(--wine); }
.eyebrow {
  margin-bottom: 22px; color: var(--wine); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; line-height: 1.4; text-transform: uppercase;
}
.eyebrow--light { color: #e7c8c3; }
.display-title, .section-title, .page-title {
  margin-bottom: .55em; font-family: var(--serif); font-weight: 500; line-height: .98;
}
.display-title { max-width: 930px; font-size: clamp(3rem, 6.5vw, 6.6rem); }
.section-title { max-width: 820px; font-size: clamp(2.8rem, 5vw, 5rem); }
.page-title { font-size: clamp(4rem, 8vw, 8rem); letter-spacing: -.035em; }
.page-title em, .home-hero__title em { color: var(--wine); font-weight: 400; }
.page-intro { max-width: 570px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.7; }
.section--ink .section-title, .section--sage .section-title { color: #fff; }
.split-heading { display: grid; grid-template-columns: 210px 1fr; gap: clamp(40px, 7vw, 110px); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.section-heading-row .section-title { margin-bottom: 0; }
.prose { max-width: 760px; font-size: 1.08rem; }
.prose > * + * { margin-top: 1.25em; }
.prose h2, .prose h3 { margin-top: 1.8em; font-family: var(--serif); font-weight: 500; line-height: 1.1; }
.prose a { color: var(--wine); }
.prose--columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 920px; }
.prose--columns p { margin: 0; }

.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 24px;
  padding: 13px 24px; border: 1px solid transparent; font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .3s var(--ease);
}
.button--solid { color: #fff; background: var(--wine); }
.button--solid:hover { background: var(--wine-dark); transform: translateY(-2px); }
.button--ghost, .button--outline { border-color: var(--line); background: transparent; }
.button--ghost:hover, .button--outline:hover { color: #fff; border-color: var(--wine); background: var(--wine); }
.button--light { color: var(--ink); background: var(--paper); }
.text-link {
  display: inline-flex; align-items: center; gap: 18px; color: var(--wine); font-size: .76rem;
  font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.text-link--light { color: #fff; }

/* Header */
.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: 92px; border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, .91); backdrop-filter: blur(14px); transition: .3s ease;
}
.site-header.is-scrolled { height: 76px; border-color: var(--line); }
.site-header__inner { display: flex; height: 100%; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; margin-right: auto; text-decoration: none; }
.brand__mark { width: 43px; height: 43px; fill: none; stroke: var(--wine); stroke-width: 1.35; }
.brand__name { display: grid; font-family: var(--serif); font-size: 1.2rem; letter-spacing: .04em; line-height: .78; text-transform: uppercase; }
.brand__name span:last-child { margin-left: 15px; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav__links { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.site-nav__links a { position: relative; padding-block: 12px; font-size: .71rem; font-weight: 600; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.site-nav__links a::after { content: ""; position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav__links a:hover::after, .site-nav__links a.active::after { transform: scaleX(1); transform-origin: left; }
.language-switcher { display: flex; align-items: center; gap: 7px; }
.language-switcher button { min-width: 30px; min-height: 44px; padding: 0; border: 0; color: var(--muted); background: none; font-size: .68rem; cursor: pointer; }
.language-switcher button.active { color: var(--wine); font-weight: 600; }
.menu-toggle { display: none; min-height: 44px; align-items: center; gap: 12px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.menu-toggle__icon { display: grid; gap: 6px; width: 25px; }
.menu-toggle__icon i { display: block; height: 1px; background: currentColor; transition: .25s; }
.site-header.is-open .menu-toggle__icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.is-open .menu-toggle__icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Footer */
.site-footer { padding: 104px 0 30px; color: #fff; background: var(--wine-dark); }
.site-footer__lead { max-width: 850px; padding-bottom: 90px; }
.site-footer__statement { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 7rem); line-height: .95; }
.site-footer__lower { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.23); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.social-links { display: flex; flex-wrap: wrap; gap: 28px; }
.social-links a { text-decoration: none; }

/* Progressive motion */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal--image { transform: translateY(18px) scale(.98); }
.js .reveal--delay-1 { transition-delay: .1s; }
.js .reveal--delay-2 { transition-delay: .2s; }
.js .reveal--delay-3 { transition-delay: .3s; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Home */
.home-hero { position: relative; display: grid; min-height: 100svh; grid-template-columns: minmax(0, 46%) 1fr; padding-top: 92px; background: var(--bone); overflow: hidden; }
.home-hero__copy {
  z-index: 2; display: flex; width: 100%; min-width: 0; max-width: none; flex-direction: column;
  justify-content: center; padding: 70px clamp(32px, 5vw, 80px) 90px max(32px, calc((100vw - 1220px) / 2));
}
.home-hero__title { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(4.1rem, 7.4vw, 8.2rem); font-weight: 500; letter-spacing: -.045em; line-height: .82; }
.home-hero__title span { display: block; }
.home-hero__title span, .home-hero__title em { hyphens: none; overflow-wrap: normal; word-break: normal; }
.home-hero__intro { max-width: 530px; color: var(--muted); font-size: 1.05rem; }
.home-hero__visual { position: relative; min-height: 650px; overflow: hidden; }
.home-hero__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,242,235,.18), transparent 28%); pointer-events: none; }
.home-hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 38%; }
.home-hero__caption { position: absolute; z-index: 2; right: 30px; bottom: 24px; margin: 0; color: #fff; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.home-hero__orbit { position: absolute; z-index: 2; inset: 50% auto auto 5%; width: clamp(250px, 27vw, 430px); aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.home-hero__orbit i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.home-hero__orbit i:nth-child(2) { inset: 14%; }
.home-hero__orbit i:nth-child(3) { inset: 29%; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: max(32px, calc((100vw - 1220px) / 2)); display: flex; align-items: center; gap: 16px; font-size: .65rem; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; }
.scroll-cue i { display: block; width: 42px; height: 1px; background: currentColor; }

.manifesto__body { display: grid; max-width: 850px; grid-template-columns: 1fr 1fr; gap: 46px; margin-top: 54px; color: var(--muted); font-size: 1.05rem; }
.practice__header { display: grid; grid-template-columns: 210px 1fr; gap: clamp(40px, 7vw, 110px); margin-bottom: 60px; }
.practice__header .section-title { margin: 0; }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.practice-card { position: relative; display: flex; min-height: 500px; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.25); }
.practice-card__number { color: var(--muted); font-size: .7rem; letter-spacing: .12em; }
.practice-card svg { width: 90px; height: 90px; margin: 60px auto 50px; fill: none; stroke: var(--wine); stroke-width: 1; }
.practice-card h3 { margin-bottom: 14px; font-family: var(--serif); font-size: 2.4rem; font-weight: 500; line-height: 1; }
.practice-card p { color: var(--muted); }
.practice-card .text-link { margin-top: auto; }
.practice-card--accent { color: #fff; background: var(--wine); }
.practice-card--accent .practice-card__number, .practice-card--accent p { color: rgba(255,255,255,.78); }
.practice-card--accent svg, .practice-card--accent .text-link { color: #fff; stroke: #fff; }

.events-preview__grid { border-top: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 160px 1fr 60px; align-items: center; gap: 36px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.event-card__date { display: flex; align-items: center; gap: 18px; }
.event-card__date strong { color: var(--wine); font-family: var(--serif); font-size: 4.6rem; font-weight: 400; line-height: .8; }
.event-card__date span { color: var(--muted); font-size: .66rem; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }
.event-card__content > p:first-child { margin-bottom: 6px; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.event-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 500; line-height: 1.05; }
.event-card h3 a { text-decoration: none; }
.event-card__place { margin: 8px 0 0; color: var(--muted); }
.event-card__arrow { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); text-decoration: none; transition: .25s; }
.event-card__arrow:hover { color: #fff; border-color: var(--wine); background: var(--wine); transform: rotate(45deg); }

.portrait-story { overflow: hidden; }
.portrait-story__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1fr); align-items: center; gap: clamp(60px, 10vw, 150px); }
.portrait-story__image { position: relative; max-width: 470px; }
.portrait-story__image img { width: 100%; aspect-ratio: 2/3; object-fit: cover; object-position: 50% 25%; }
.portrait-story__image span { position: absolute; z-index: -1; top: -8%; right: -28%; width: 70%; aspect-ratio: 1; border: 1px solid var(--wine); border-radius: 50%; }
.portrait-story blockquote { max-width: 650px; margin-bottom: 36px; font-family: var(--serif); font-size: clamp(2.7rem, 4.3vw, 4.8rem); font-weight: 400; line-height: .98; }
.portrait-story__copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }

.newsletter__grid { display: grid; grid-template-columns: 1fr minmax(360px, 500px); align-items: center; gap: 80px; }
.newsletter__grid > div:first-child > p:last-child { color: rgba(255,255,255,.92); }
.newsletter__embed { min-height: 300px; overflow: hidden; background: #fff; }
.newsletter__embed iframe { display: block; width: 100%; border: 0; }

/* Interior heroes */
.page-hero { padding-top: 92px; background: var(--bone); }
.page-hero__grid { display: grid; min-height: 720px; grid-template-columns: 1fr minmax(360px, .72fr); align-items: center; gap: 80px; }
.page-hero__image { align-self: stretch; margin: 0; }
.page-hero__image img { width: 100%; height: calc(100% - 48px); object-fit: cover; object-position: 50% 30%; }
.page-hero__image figcaption { padding-top: 15px; color: var(--muted); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.page-hero--simple { border-bottom: 1px solid var(--line); }
.page-hero__simple-grid { display: grid; min-height: 520px; grid-template-columns: 1fr minmax(340px, .65fr); align-items: end; gap: 80px; padding-block: 110px 70px; }
.page-hero--simple .page-title { margin: 0; }

/* Biography */
.bio-stage__grid, .bio-practice__grid { display: grid; grid-template-columns: minmax(320px, .85fr) 1fr; align-items: center; gap: clamp(60px, 10vw, 150px); }
.bio-stage__grid > *, .bio-practice__grid > * { min-width: 0; }
.bio-stage__image { margin: 0; }
.bio-stage__image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 20%; }
.bio-stage__copy > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.74); }
.fact-list { margin: 50px 0; border-top: 1px solid rgba(255,255,255,.22); }
.fact-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.fact-list dt { color: #e7c8c3; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.fact-list dd { margin: 0; }
.bio-practice__grid { grid-template-columns: 1fr minmax(300px, .68fr); }
.bio-practice__copy > p:not(.eyebrow) { max-width: 670px; color: var(--muted); }
.bio-practice__image { order: 2; margin: 0; }
.bio-practice__image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center; }

/* Breathwork */
.breath-hero { min-height: 100svh; padding-top: 92px; color: #fff; background: var(--wine-dark); overflow: hidden; }
.breath-hero__inner { display: grid; min-height: calc(100svh - 92px); grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.breath-hero .eyebrow { color: #e7c8c3; }
.breath-hero .page-title em { color: #e7c8c3; }
.breath-hero .page-intro { color: rgba(255,255,255,.75); }
.breath-hero__art { position: relative; min-height: 650px; }
.breath-hero__art svg { position: absolute; z-index: 2; inset: 8% -15% auto -10%; width: 115%; height: 84%; fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1; }
.breath-circle { position: absolute; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.breath-circle--1 { inset: 7% 4% 5% 5%; }
.breath-circle--2 { inset: 19% 16%; }
.breath-circle--3 { inset: 34% 31%; background: rgba(255,255,255,.05); }
.process-list { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 100px 1fr; gap: 35px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--wine); font-family: var(--serif); font-size: 3.8rem; line-height: 1; }
.process-list h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 2.3rem; font-weight: 500; }
.process-list p { max-width: 620px; margin-bottom: 0; color: var(--muted); }
.breath-formats__grid { display: grid; grid-template-columns: 290px 1fr; gap: 80px; }
.breath-formats__grid > *, .safety-note__grid > * { min-width: 0; }
.breath-formats__grid > div:first-child .section-title { font-size: clamp(2.75rem, 4vw, 3.5rem); }
.format-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.format-card { min-height: 330px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.format-card > span { color: var(--wine); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.format-card h3 { margin: 70px 0 16px; font-family: var(--serif); font-size: 2.5rem; font-weight: 500; line-height: 1; }
.format-card p { color: var(--muted); }
.safety-note__grid { display: grid; grid-template-columns: 280px 1fr; gap: 70px; }
.safety-note__grid > div > p { max-width: 720px; color: rgba(255,255,255,.92); }

/* Agenda and events */
.agenda-section + .agenda-section { margin-top: 130px; }
.agenda-section__heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 35px; }
.agenda-section__heading p { margin-bottom: 0; }
.agenda-section__count { color: var(--muted); font-family: var(--serif); font-size: 4rem; line-height: 1; }
.event-list, .archive-list { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 150px 1fr 60px; align-items: center; gap: 40px; padding: 40px 0; border-bottom: 1px solid var(--line); }
.event-row__date { display: flex; align-items: center; gap: 18px; }
.event-row__date strong { color: var(--wine); font-family: var(--serif); font-size: 5rem; font-weight: 400; line-height: .8; }
.event-row__date span { color: var(--muted); font-size: .7rem; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.event-row__meta { margin-bottom: 8px; color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.event-row h2, .archive-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 500; line-height: 1; }
.event-row h2 a, .archive-row h2 a { text-decoration: none; }
.event-row__main > p:last-child { max-width: 700px; margin: 14px 0 0; color: var(--muted); }
.event-row__arrow { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--wine); text-decoration: none; }
.empty-state { display: grid; grid-template-columns: 200px 1fr; gap: 60px; padding: 70px; background: var(--bone); }
.empty-state__mark { display: block; width: 160px; aspect-ratio: 1; border: 1px solid var(--wine); border-radius: 50%; }
.empty-state h2 { margin-bottom: 12px; font-family: var(--serif); font-size: 2.7rem; font-weight: 500; line-height: 1.05; }
.archive-row { display: grid; grid-template-columns: 130px 1fr 260px 30px; align-items: center; gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.archive-row time, .archive-row > p { margin: 0; color: var(--muted); font-size: .75rem; letter-spacing: .05em; }
.archive-row h2 { font-size: 1.75rem; }
.archive-row h2 { min-width: 0; overflow-wrap: break-word; }
.archive-row > a { color: var(--wine); text-decoration: none; }
.pagination { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin-top: 42px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.pagination a { text-decoration: none; }
.pagination a:last-child { justify-self: end; }

.event-detail-hero { padding: 155px 0 70px; background: var(--bone); }
.back-link { display: inline-flex; gap: 12px; margin-bottom: 80px; color: var(--muted); font-size: .7rem; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.event-detail-hero__grid { display: grid; grid-template-columns: 1fr 210px; align-items: end; gap: 70px; }
.event-detail-hero__grid > *, .event-description, .event-facts { min-width: 0; }
.event-detail-hero .page-title { max-width: 940px; font-size: clamp(3.5rem, 7vw, 7rem); }
.event-detail-hero .page-title, .event-description, .event-description * { overflow-wrap: anywhere; }
.event-detail-hero__date { display: flex; align-items: center; gap: 18px; }
.event-detail-hero__date strong { color: var(--wine); font-family: var(--serif); font-size: 6rem; font-weight: 400; line-height: .75; }
.event-detail-hero__date span { color: var(--muted); font-size: .72rem; letter-spacing: .1em; line-height: 1.6; text-transform: uppercase; }
.event-detail-layout { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1fr); gap: 70px 100px; padding-block: 90px 120px; }
.event-detail-image { grid-column: 1; margin: 0; }
.event-detail-image img { width: 100%; max-height: 720px; object-fit: contain; object-position: top left; }
.event-facts { grid-column: 1; }
.event-facts dl { border-top: 1px solid var(--line); }
.event-facts dl > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.event-facts dt { margin-bottom: 6px; color: var(--wine); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.event-description { grid-column: 2; grid-row: 1 / span 2; font-size: 1.1rem; }
.event-description img, .event-description iframe, .event-description video { max-width: 100%; height: auto; }
.event-description table, .event-description pre { display: block; max-width: 100%; overflow-x: auto; }
.event-detail-footer { border-top: 1px solid var(--line); }

/* Media */
.video-feature, .video-tile, .gallery-item { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #171313; cursor: pointer; text-align: left; }
.video-feature { aspect-ratio: 16/7.6; color: #fff; }
.video-feature img, .video-tile img, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.video-feature:hover img, .video-tile:hover img, .gallery-item:hover img { transform: scale(1.025); }
.video-feature__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,10,12,.78), transparent 58%); }
.play-button { position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: rgba(255,255,255,.12); transform: translate(-50%, -50%); backdrop-filter: blur(8px); }
.play-button i { width: 0; height: 0; margin-left: 5px; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid #fff; }
.play-button--small { width: 62px; height: 62px; }
.video-feature__label { position: absolute; z-index: 2; bottom: 28px; left: 30px; display: grid; }
.video-feature__label small { font-size: .65rem; letter-spacing: .13em; text-transform: uppercase; }
.video-feature__label strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; }
.video-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.video-tile { aspect-ratio: 16/9; color: #fff; }
.video-tile > span:last-child { position: absolute; bottom: 20px; left: 22px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.music-player__grid { display: grid; grid-template-columns: .75fr 1fr; align-items: center; gap: 100px; }
.music-player__grid > div:first-child > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.music-player__embed { padding: 20px; background: var(--bone); }
.music-player__embed iframe { display: block; border: 0; }
.editorial-gallery { display: grid; grid-auto-rows: 260px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { background: var(--bone); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.social-card a { display: block; text-decoration: none; }
.social-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.social-card p { margin: 15px 0 0; color: var(--muted); font-size: .85rem; }
.social-empty { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; border: 1px solid var(--line); }
.social-empty p { max-width: 630px; margin: 0; }

dialog { max-width: none; max-height: none; padding: 0; border: 0; color: #fff; background: transparent; }
dialog::backdrop { background: rgba(20,16,17,.94); backdrop-filter: blur(6px); }

/* Google permits hiding its badge when the required privacy/terms disclosure
   is shown next to the submit button, as it is in the contact form. */
.grecaptcha-badge { visibility: hidden !important; }
.media-dialog { width: min(1100px, calc(100vw - 50px)); }
.media-dialog__frame { aspect-ratio: 16/9; background: #000; }
.media-dialog__frame iframe { width: 100%; height: 100%; border: 0; }
.image-dialog { width: min(1100px, calc(100vw - 50px)); height: min(88vh, 900px); }
.image-dialog figure { display: grid; height: 100%; place-items: center; margin: 0; }
.image-dialog img { max-width: 100%; max-height: calc(88vh - 55px); object-fit: contain; }
.image-dialog figcaption { margin-top: 12px; text-align: center; }
.dialog-close { position: fixed; z-index: 5; top: 22px; right: 26px; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); font-size: 2rem; line-height: 1; cursor: pointer; }

/* Contact */
.contact-hero { padding: 190px 0 95px; background: var(--bone); }
.contact-hero__grid { display: grid; grid-template-columns: 1fr minmax(340px, .65fr); align-items: end; gap: 80px; }
.contact-section { padding-top: 90px; }
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: clamp(60px, 9vw, 130px); }
.contact-aside ul { margin: 0 0 45px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contact-aside li { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
.contact-aside li span { color: var(--wine); font-size: .68rem; }
.contact-aside > p:last-child { color: var(--muted); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 26px; }
.form-field { display: grid; gap: 9px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 12px 4px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--wine); box-shadow: 0 2px 0 var(--wine); }
.form-submit { display: flex; align-items: center; gap: 25px; margin-top: 12px; }
.form-submit button { flex: 0 0 auto; cursor: pointer; }
.form-submit p { max-width: 570px; margin: 0; color: var(--muted); font-size: .66rem; line-height: 1.55; }
.form-alert { margin-bottom: 28px; padding: 16px 20px; border-left: 3px solid var(--wine); background: var(--blush); }
.form-success { padding: 60px; background: var(--bone); text-align: center; }
.form-success > span { display: grid; width: 70px; height: 70px; place-items: center; margin: 0 auto 25px; border: 1px solid var(--wine); border-radius: 50%; color: var(--wine); font-size: 1.5rem; }
.form-success h2 { font-family: var(--serif); font-size: 3.5rem; font-weight: 500; }

/* Responsive */
@media (max-width: 1080px) {
  :root { --shell: min(100% - 48px, 1220px); }
  .site-nav__links { gap: 15px; }
  .site-nav { gap: 18px; }
  .home-hero { grid-template-columns: 52% 48%; }
  .home-hero__copy { padding-left: 4vw; }
  .practice-card { padding: 27px; }
  .page-hero__grid { gap: 50px; }
}

@media (max-width: 900px) {
  .site-header, .site-header.is-scrolled { height: 76px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; z-index: 1; inset: 76px 0 auto; display: flex; width: 100%;
    height: calc(100vh - 76px); height: calc(100dvh - 76px); flex-direction: column;
    align-items: stretch; justify-content: space-between; padding: clamp(30px, 6vh, 52px) 24px 30px;
    padding-bottom: max(30px, calc(env(safe-area-inset-bottom) + 18px));
    overflow-y: auto; overscroll-behavior: contain; color: #fff;
    background: radial-gradient(circle at 88% 10%, rgba(165,95,79,.34), transparent 36%), var(--wine-dark);
    box-shadow: 0 24px 60px rgba(43,36,36,.24); transform: translate3d(100%, 0, 0);
    visibility: hidden; -webkit-overflow-scrolling: touch;
    transition: transform .4s var(--ease), visibility .4s;
  }
  .site-nav.is-open, .site-header.is-open .site-nav { transform: none; visibility: visible; }
  .site-nav__links { display: grid; align-items: stretch; gap: 0; }
  .site-nav__links li { border-bottom: 1px solid rgba(255,255,255,.2); }
  .site-nav__links a { display: block; padding: 15px 0; color: #fff; font-family: var(--serif); font-size: clamp(2.1rem, 7vw, 3.6rem); font-weight: 500; letter-spacing: 0; line-height: 1.1; text-transform: none; }
  .site-nav__links a.active { color: #e7c8c3; }
  .site-nav__links a::after { display: none; }
  .site-nav .language-switcher { justify-content: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
  .site-nav .language-switcher button { color: rgba(255,255,255,.72); }
  .site-nav .language-switcher button.active { color: #fff; }
  .home-hero { display: flex; min-height: auto; flex-direction: column; padding-top: 76px; }
  .home-hero__copy { width: var(--shell); max-width: none; min-height: 590px; margin-inline: auto; padding: 70px 0 80px; }
  .home-hero__title { font-size: clamp(3.75rem, 12vw, 6rem); }
  .home-hero__visual { height: 72svh; min-height: 620px; }
  .home-hero__visual img { object-position: 55% 35%; }
  .home-hero__orbit { left: 20%; width: 300px; }
  .scroll-cue { display: none; }
  .split-heading, .practice__header, .breath-formats__grid, .safety-note__grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 400px; }
  .practice-card svg { margin: 35px auto; }
  .portrait-story__grid, .bio-stage__grid, .bio-practice__grid { gap: 55px; }
  .newsletter__grid, .music-player__grid { grid-template-columns: 1fr; gap: 50px; }
  .page-hero__grid { min-height: 650px; grid-template-columns: 1fr 42%; }
  .page-hero__simple-grid, .contact-hero__grid { grid-template-columns: 1fr; align-content: end; }
  .breath-hero__inner { grid-template-columns: 1fr 40%; }
  .breath-hero__art { min-height: 550px; }
  .contact-layout { grid-template-columns: 250px 1fr; gap: 55px; }
  .archive-row { grid-template-columns: 90px minmax(0, 1fr) 24px; gap: 12px; }
  .archive-row > p { display: none; }
  .archive-row h2 { font-size: 1.5rem; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100vw - 36px); }
  html { scroll-padding-top: 78px; }
  body { font-size: 15px; }
  .section { padding-block: 80px; }
  .brand__name { font-size: 1rem; }
  .brand__mark { width: 38px; height: 38px; }
  .home-hero__copy { min-height: 610px; }
  .home-hero__title { font-size: clamp(3.25rem, 17vw, 5.75rem); }
  .home-hero__visual { min-height: 72svh; }
  .display-title, .section-title { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .manifesto__body, .prose--columns { grid-template-columns: 1fr; gap: 12px; }
  .section-heading-row { align-items: start; flex-direction: column; margin-bottom: 42px; }
  .event-card, .event-row { grid-template-columns: 1fr 44px; gap: 20px; }
  .event-card__date, .event-row__date { grid-column: 1; }
  .event-card__content, .event-row__main { grid-column: 1; }
  .event-card__arrow, .event-row__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .portrait-story__grid, .bio-stage__grid, .bio-practice__grid { grid-template-columns: 1fr; }
  .portrait-story__image { width: 82%; }
  .bio-practice__image { order: -1; }
  .newsletter__grid { grid-template-columns: 1fr; }
  .newsletter__embed { min-height: 320px; }
  .page-hero__grid { display: flex; min-height: auto; flex-direction: column; padding-top: 70px; gap: 45px; }
  .page-hero__copy { padding-top: 45px; }
  .page-hero__image { width: 100%; }
  .page-hero__image img { height: 72svh; object-position: 50% 26%; }
  .page-hero__simple-grid { min-height: 480px; padding-block: 100px 55px; }
  .page-title { font-size: clamp(3.5rem, 18vw, 5.7rem); }
  .breath-hero__inner { display: flex; min-height: auto; flex-direction: column; padding-block: 80px 30px; }
  .breath-hero__copy { z-index: 2; }
  .breath-hero__art { width: 100%; min-height: 400px; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { padding: 28px; }
  .format-card h3 { font-size: 2rem; }
  .process-list li { grid-template-columns: 65px 1fr; gap: 18px; }
  .process-list > li > span { font-size: 3rem; }
  .empty-state { grid-template-columns: 1fr; padding: 35px; }
  .empty-state__mark { width: 100px; }
  .archive-row { grid-template-columns: 72px minmax(0, 1fr) 20px; gap: 10px; }
  .archive-row h2 { font-size: 1.4rem; line-height: 1.08; }
  .archive-row > p { display: none; }
  .event-detail-hero { padding-top: 120px; }
  .back-link { margin-bottom: 50px; }
  .event-detail-hero__grid { grid-template-columns: 1fr; gap: 35px; }
  .event-detail-layout { grid-template-columns: 1fr; gap: 42px; padding-block: 65px 90px; }
  .event-detail-image, .event-facts, .event-description { grid-column: 1; grid-row: auto; }
  .event-description { order: 3; }
  .video-feature { aspect-ratio: 4/5; }
  .video-feature img { object-position: 50% center; }
  .video-pair { grid-template-columns: 1fr; }
  .editorial-gallery { grid-auto-rows: 190px; grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-empty { align-items: start; flex-direction: column; }
  .contact-hero { padding: 145px 0 75px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field { grid-column: 1; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-success { padding: 40px 25px; }
  .site-footer { padding-top: 78px; }
  .site-footer__lower { align-items: start; flex-direction: column; }
}

@media (max-width: 380px) {
  :root { --shell: calc(100vw - 28px); }
  .brand { gap: 7px; }
  .brand__name span:last-child { margin-left: 8px; }
  .menu-toggle__label { display: none; }
  .home-hero__title { font-size: clamp(3rem, 16vw, 4rem); }
  .archive-row { grid-template-columns: 60px minmax(0, 1fr) 18px; gap: 8px; }
  .archive-row h2 { font-size: 1.2rem; }
  .archive-row time { font-size: .66rem; letter-spacing: 0; }
  .button { width: 100%; }
  .social-grid { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .site-footer, .button-row, .event-detail-footer { display: none; }
  body { color: #000; background: #fff; }
  main { padding: 0; }
}
