:root {
  --bg: #f6f2ea;
  --bg-soft: #fbf8f3;
  --bg-alt: #efe6da;
  --surface: rgba(255, 252, 246, 0.9);
  --surface-strong: #fffdf9;
  --surface-deep: #161b1b;
  --ink: #181b1a;
  --ink-soft: #303633;
  --muted: #5f6862;
  --muted-soft: #879087;
  --line: rgba(24, 27, 26, 0.12);
  --line-strong: rgba(24, 27, 26, 0.24);
  --accent: #1d312d;
  --accent-soft: #6e604c;
  --accent-glow: #d5c0a0;
  --shadow: 0 28px 70px rgba(18, 24, 22, 0.08);
  --shadow-soft: 0 14px 36px rgba(18, 24, 22, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1220px;
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.68;
  background:
    radial-gradient(circle at 14% 0%, rgba(213, 192, 160, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(29, 49, 45, 0.06), transparent 20%),
    linear-gradient(180deg, #fcf9f4 0%, var(--bg) 44%, #faf6f0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.45), transparent 22%),
    radial-gradient(circle at 0% 100%, rgba(213, 192, 160, 0.12), transparent 22%);
  opacity: 0.9;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(var(--max), calc(100vw - 2rem));
  margin: 0 auto;
}

.page-main {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}

.section-space {
  padding-top: 4.5rem;
}

.section-space-tight {
  padding-top: 2.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.84);
  border-bottom: 1px solid rgba(24, 27, 26, 0.08);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid rgba(24, 27, 26, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(213, 192, 160, 0.9) 0 28%, transparent 30%),
    linear-gradient(135deg, rgba(29, 49, 45, 0.08), rgba(110, 96, 76, 0.15));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
h1,
h2,
h3,
.journal-line strong,
.site-footer strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand-copy strong {
  font-size: 1.7rem;
}

.brand-copy span {
  margin-top: 0.18rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.nav-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.nav-toggle span:not(.sr-only) {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 252, 246, 0.98);
  box-shadow: var(--shadow);
}

body.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  padding: 0.75rem 0.85rem;
  border-radius: 999px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(29, 49, 45, 0.07);
  color: var(--ink);
}

.eyebrow,
.section-label,
.post-meta,
.class-time {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3rem, 11vw, 6.4rem);
}

h2 {
  font-size: clamp(2.15rem, 6vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 3.8vw, 2.2rem);
}

.lede,
.section-head p,
.booking-copy p,
.service-prose p,
.article-prose p,
.article-prose li,
.legal-prose p,
.legal-prose li,
.links-card p,
.post-card p,
.footer-shell p,
.program-card p,
.compact-note p,
.journal-line span,
.location-editorial-copy p,
.location-editorial-note p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.location-actions,
.form-actions,
.footer-links,
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button,
.share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.share-link:hover,
.share-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 34px rgba(29, 49, 45, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.share-link {
  min-height: 2.7rem;
  padding: 0.72rem 1rem;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
}

.share-row {
  margin-top: 1.35rem;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent-soft));
}

.text-link,
.post-link {
  color: var(--accent);
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.text-link::after {
  content: "->";
  font-size: 0.84em;
}

.page-hero,
.article-hero {
  padding-top: 2.75rem;
}

.page-intro-grid {
  display: grid;
  gap: 1.4rem;
}

.hero-note-box {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24, 27, 26, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 252, 246, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(213, 192, 160, 0.12), transparent 18%);
  box-shadow: var(--shadow-soft);
}

.page-intro-aside {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.page-intro-aside h3 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.page-intro-links {
  display: grid;
  gap: 0.75rem;
}

.page-intro-links .text-link {
  margin-top: 0;
}

.page-hero h1,
.article-hero h1 {
  font-size: clamp(2.15rem, 7.9vw, 4.6rem);
  max-width: 11ch;
}

.page-hero .hero-note-box,
.article-hero .hero-note-box {
  padding: 0 0 1.2rem;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.page-hero .lede,
.article-hero .lede {
  max-width: 38rem;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

body.page-home {
  background:
    radial-gradient(circle at 10% 0%, rgba(213, 192, 160, 0.22), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f7f2ea 48%, #faf6f0 100%);
}

.home-hero {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.home-hero-grid,
.location-editorial,
.service-layout,
.booking-shell,
.article-grid,
.legal-grid,
.links-grid,
.news-grid {
  display: grid;
  gap: 1.6rem;
}

.home-hero-grid {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.home-hero-copy {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  max-width: 42rem;
}

.hero-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.home-hero-copy h1 {
  max-width: 7ch;
  line-height: 0.92;
}

.home-hero-copy .lede {
  max-width: 31rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.home-hero-side {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.home-hero-facts {
  display: grid;
}

.hero-fact {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-fact:last-child {
  border-bottom: 0;
}

.hero-fact span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.hero-fact strong {
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--ink);
}

.offerings-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.1rem;
}

.offerings-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offerings-line span::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), var(--accent-soft));
}

.section-head {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 50rem;
}

.session-list {
  counter-reset: sessions;
  display: grid;
  border-top: 1px solid var(--line);
}

.session-row {
  counter-increment: sessions;
  display: grid;
  gap: 1rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
}

.session-meta {
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

.session-meta::before {
  content: counter(sessions, decimal-leading-zero);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.9;
  color: rgba(110, 96, 76, 0.72);
}

.session-meta p {
  color: var(--muted);
}

.session-copy {
  display: grid;
  gap: 0.9rem;
  max-width: 44rem;
}

.session-copy h3 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

.location-editorial {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-editorial-copy,
.booking-copy,
.service-prose,
.legal-prose,
.article-prose {
  display: grid;
  gap: 1rem;
}

.location-editorial-copy h2 {
  max-width: 12ch;
}

.location-caption {
  font-size: 0.92rem;
  color: var(--muted-soft);
}

.location-editorial-note {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.journal-minimal-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.journal-line {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.journal-line strong {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.02;
}

.simple-cta,
.compact-note,
.service-panel,
.links-card,
.post-card,
.article-card,
.legal-card,
.booking-note,
.booking-form {
  border: 1px solid rgba(24, 27, 26, 0.1);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.simple-cta,
.compact-note,
.service-panel,
.links-card,
.post-card,
.article-card,
.legal-card,
.booking-form,
.booking-note {
  padding: 1.4rem;
}

.simple-cta {
  max-width: 50rem;
  display: grid;
  gap: 1rem;
}

.section-booking {
  margin-top: 0.5rem;
}

.booking-copy {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-booking .booking-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 6.2vw, 3rem);
  line-height: 0.98;
}

.booking-note {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.direct-contact-line {
  color: var(--ink-soft);
}

.direct-contact-line a {
  color: var(--accent);
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 1rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.form-header {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.form-header h3 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
}

.booking-form label span {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(24, 27, 26, 0.14);
  background: rgba(250, 247, 241, 0.88);
  color: var(--ink);
}

.booking-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.service-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.service-panel h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.program-grid {
  display: grid;
  gap: 1rem;
}

.program-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem 0 1.4rem;
  border-top: 1px solid var(--line);
}

.program-card h3 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.article-grid,
.legal-grid,
.links-grid,
.news-grid {
  align-items: start;
}

.article-card h2,
.article-card h3,
.legal-card h2,
.links-card h3,
.post-card h3 {
  margin-bottom: 0.65rem;
}

.article-prose h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

.post-card h3 a,
.links-card .post-link {
  color: var(--ink);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.6rem 0 3rem;
  background:
    radial-gradient(circle at 82% 10%, rgba(213, 192, 160, 0.08), transparent 18%),
    linear-gradient(180deg, #171d1d 0%, #101414 100%);
  color: #ecede8;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.5rem;
  color: #fff;
}

.footer-shell {
  display: grid;
  gap: 1rem;
}

.site-footer p,
.footer-links a,
.copyright {
  color: rgba(236, 237, 232, 0.7);
}

.footer-links {
  gap: 1rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.04em;
  text-transform: none;
}

.site-footer .share-link {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.copyright {
  font-size: 0.88rem;
}

.hero-actions,
.location-actions,
.form-actions,
.button,
.share-link,
.site-nav a,
.text-link,
.booking-form input,
.booking-form select,
.booking-form textarea {
  transition: all 180ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.button:focus-visible,
.share-link:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.post-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(29, 49, 45, 0.35);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .booking-form,
  .links-grid,
  .news-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-grid,
  .location-editorial,
  .service-layout,
  .booking-shell,
  .page-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    position: relative;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.6rem;
  }

  .home-hero-side,
  .location-editorial-note,
  .page-intro-aside {
    padding-top: 0;
    padding-left: 1.8rem;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .session-row {
    grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
    gap: 1.9rem;
  }

  .service-layout,
  .booking-shell {
    gap: 2rem;
  }

  .booking-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .links-grid,
  .legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.3fr);
    gap: 1.5rem;
  }

  .article-grid .article-card:last-child {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }

  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .footer-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 1180px) {
  .home-hero-copy h1 {
    font-size: clamp(4rem, 7vw, 6.8rem);
  }

  .hero-note-box,
  .simple-cta,
  .compact-note,
  .service-panel,
  .links-card,
  .post-card,
  .article-card,
  .legal-card,
  .booking-note,
  .booking-form {
    padding: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
