@charset "UTF-8";

:root {
  --ink: #233029;
  --ink-soft: #536159;
  --forest: #263c33;
  --forest-deep: #1d3029;
  --moss: #61766a;
  --sand: #f4efe7;
  --sand-deep: #e9e1d6;
  --clay: #cf7b62;
  --clay-deep: #ba674f;
  --butter: #dfc782;
  --sage: #bacdb8;
  --white: #fffdf9;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, .8, .26, 1);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
::selection { background: var(--clay); color: var(--white); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(var(--container), calc(100% - 72px)); margin-inline: auto; }
.sr-only, .skip-link { 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:focus { width: auto; height: auto; margin: 0; padding: 12px 18px; clip: auto; top: 16px; left: 16px; z-index: 1000; background: var(--clay); color: var(--ink); border-radius: 999px; }

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(244, 239, 231, .84);
  border-color: rgba(35, 48, 41, .1);
  box-shadow: 0 8px 30px rgba(35, 48, 41, .045);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; }
.brand-mark img { width: 100%; height: 100%; }
.brand-word { font-size: 21px; letter-spacing: -.06em; font-weight: 650; }
.desktop-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin-left: 9%; }
.desktop-nav a, .header-signin { position: relative; color: var(--ink-soft); font-size: 12px; letter-spacing: .02em; transition: color .25s ease; }
.desktop-nav a::after, .header-signin::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav a:hover, .header-signin:hover { color: var(--ink); }
.desktop-nav a:hover::after, .header-signin:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 25px; }
.header-signin { color: var(--ink); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.button span { font-size: 17px; font-weight: 400; line-height: 1; transition: transform .35s var(--ease); }
.button:hover { transform: translateY(-3px); box-shadow: 0 13px 24px rgba(35, 48, 41, .12); }
.button:hover span { transform: translate(3px, -3px); }
.button:focus-visible, .text-link:focus-visible, .schedule-tab:focus-visible, .schedule-book:focus-visible, .menu-toggle:focus-visible, summary:focus-visible, .journal-card:focus-visible, .form-submit:focus-visible { outline: 2px solid var(--clay); outline-offset: 5px; }
.button-small { min-height: 41px; padding: 0 17px; gap: 11px; font-size: 11px; }
.button-small span { font-size: 14px; }
.button-ink { background: var(--ink); color: var(--sand); }
.button-ink:hover { background: var(--forest); }
.button-clay { background: var(--clay); color: var(--ink); }
.button-clay:hover { background: var(--clay-deep); color: var(--white); }
.menu-toggle { display: none; position: relative; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(35, 48, 41, .2); background: transparent; border-radius: 50%; cursor: pointer; }
.menu-toggle span { position: absolute; left: 12px; width: 16px; height: 1px; background: currentColor; transition: transform .35s var(--ease), top .35s var(--ease); }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 23px; }
.menu-toggle.is-open span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

/* Shared typography */
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.eyebrow-number { color: var(--clay); font-variant-numeric: tabular-nums; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }
h2 { margin-bottom: 0; font-family: var(--serif); font-size: clamp(48px, 6vw, 86px); font-weight: 400; letter-spacing: -.065em; line-height: .94; }
h2 em { color: var(--clay); font-style: italic; }
.text-link { display: inline-flex; align-items: center; gap: 13px; width: max-content; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 12px; font-weight: 650; transition: gap .35s var(--ease), color .25s ease, border-color .25s ease; }
.text-link span { font-size: 16px; font-weight: 400; line-height: .7; }
.text-link:hover { gap: 19px; }
.text-link-dark:hover { color: var(--clay-deep); }
.text-link-light { color: var(--sand); }
.text-link-light:hover { color: var(--butter); }
.section { padding: clamp(105px, 13vw, 190px) 0; }

/* Hero */
.hero { position: relative; min-height: min(920px, 100vh); padding: 170px 0 72px; overflow: hidden; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { top: -280px; left: 31%; width: 680px; height: 680px; background: radial-gradient(circle, rgba(223, 199, 130, .2), rgba(223, 199, 130, 0) 70%); }
.hero-glow-two { right: -190px; bottom: -250px; width: 570px; height: 570px; background: radial-gradient(circle, rgba(207, 123, 98, .13), rgba(207, 123, 98, 0) 70%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .84fr); align-items: center; gap: clamp(50px, 9vw, 150px); }
.hero-copy { padding: 34px 0 12px; }
.hero-copy .eyebrow { margin-bottom: 33px; }
.hero h1 { max-width: 700px; margin: 0 0 30px; font-family: var(--serif); font-size: clamp(64px, 8vw, 122px); font-weight: 400; letter-spacing: -.082em; line-height: .84; }
.hero h1 em { color: var(--clay); font-style: italic; }
.hero-intro { max-width: 455px; margin-bottom: 35px; color: var(--ink-soft); font-size: 17px; letter-spacing: -.015em; line-height: 1.57; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-bottom: 72px; }
.hero-details { display: flex; gap: clamp(25px, 4vw, 53px); padding-top: 17px; border-top: 1px solid rgba(35, 48, 41, .18); }
.hero-details > div { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 10px; letter-spacing: .01em; line-height: 1.35; text-transform: uppercase; }
.detail-number { color: var(--clay); font-size: 9px; letter-spacing: .08em; }
.hero-visual-wrap { position: relative; max-width: 568px; width: 100%; justify-self: end; }
.hero-visual { position: relative; aspect-ratio: .84; width: 100%; overflow: visible; border-radius: 320px 320px 11px 11px; background: var(--forest); box-shadow: 18px 24px 0 rgba(38, 60, 51, .05); }
.hero-visual::before { content: ""; position: absolute; inset: 16px; z-index: 2; border: 1px solid rgba(244, 239, 231, .33); border-radius: 280px 280px 5px 5px; pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; border-radius: inherit; object-fit: cover; filter: saturate(.86) contrast(.97); }
.visual-stamp { position: absolute; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 88px; height: 88px; border-radius: 50%; background: var(--butter); color: var(--forest); transform: rotate(10deg); text-align: center; text-transform: uppercase; }
.visual-stamp-top { top: 45px; right: -36px; }
.visual-stamp span { font-size: 8px; font-weight: 700; letter-spacing: .13em; line-height: 1.2; }
.visual-stamp strong { margin: 2px 0; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.07em; line-height: .9; }
.floating-class-card { position: absolute; z-index: 4; bottom: 34px; left: -45px; display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; width: 220px; padding: 17px 17px 17px 19px; border: 1px solid rgba(35, 48, 41, .12); border-radius: 3px; background: rgba(244, 239, 231, .94); box-shadow: 12px 18px 35px rgba(35, 48, 41, .12); backdrop-filter: blur(15px); }
.floating-label { grid-column: 1 / -1; color: var(--clay-deep); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.floating-class-card strong { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -.05em; line-height: 1.1; }
.floating-meta { align-self: end; grid-column: 1 / -1; color: var(--ink-soft); font-size: 10px; }
.floating-class-card a { align-self: center; grid-column: 2; grid-row: 2; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--sand); font-size: 17px; transition: background .3s ease, transform .3s var(--ease); }
.floating-class-card a:hover { background: var(--clay); color: var(--ink); transform: translate(2px, -2px); }
.visual-side-note { position: absolute; top: 50%; right: -98px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg) translateX(50%); transform-origin: right center; white-space: nowrap; }
.visual-caption { display: flex; justify-content: space-between; width: 100%; margin-top: 15px; color: var(--ink-soft); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 55px; left: max(36px, calc((100vw - var(--container)) / 2)); display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-line { position: relative; display: block; width: 42px; height: 1px; background: currentColor; }
.scroll-line::after { content: ""; position: absolute; top: -2px; right: 0; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); }

/* Proof strip */
.proof-strip { border-top: 1px solid rgba(35, 48, 41, .13); border-bottom: 1px solid rgba(35, 48, 41, .13); }
.proof-inner { display: flex; align-items: center; justify-content: space-between; min-height: 73px; gap: 28px; }
.proof-kicker { color: var(--clay-deep); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.proof-items { display: flex; align-items: center; justify-content: flex-end; gap: clamp(15px, 3vw, 42px); color: var(--ink-soft); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.proof-items i { width: 4px; height: 4px; border-radius: 50%; background: var(--clay); }

/* Manifesto */
.manifesto { background: var(--sand-deep); }
.manifesto-intro { display: grid; grid-template-columns: .7fr 1.6fr .78fr; align-items: start; gap: 40px; }
.manifesto-intro .eyebrow { padding-top: 10px; }
.manifesto-intro h2 { max-width: 760px; }
.intro-copy { padding-top: 11px; }
.intro-copy p { margin-bottom: 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }
.studio-story { display: grid; grid-template-columns: minmax(0, 1fr) .45fr; align-items: end; gap: clamp(42px, 9vw, 130px); margin-top: 115px; }
.studio-image-wrap { position: relative; max-width: 650px; }
.studio-image { aspect-ratio: 1.26; width: 100%; object-fit: cover; border-radius: 47% 47% 5px 5px; filter: saturate(.78) contrast(.96); }
.studio-image-wrap::after { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(244, 239, 231, .55); border-radius: 44% 44% 2px 2px; pointer-events: none; }
.image-tag { position: absolute; z-index: 2; right: -37px; bottom: 30px; display: flex; flex-direction: column; justify-content: center; width: 138px; height: 138px; padding-left: 22px; border-radius: 50%; background: var(--clay); color: var(--ink); font-family: var(--serif); font-size: 19px; letter-spacing: -.04em; line-height: .97; transform: rotate(-8deg); }
.image-tag span { margin-top: 10px; font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: .12em; line-height: 1.2; text-transform: uppercase; }
.studio-note { max-width: 230px; padding-bottom: 25px; }
.note-line { display: block; width: 44px; height: 1px; margin-bottom: 20px; background: var(--clay); }
.studio-note p { margin-bottom: 17px; font-family: var(--serif); font-size: clamp(23px, 2.3vw, 31px); letter-spacing: -.045em; line-height: 1.08; }
.note-credit { display: block; color: var(--ink-soft); font-size: 9px; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }

/* Offerings */
.offerings { background: var(--sand); }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.section-heading-row h2 { margin-top: 31px; }
.heading-aside { max-width: 210px; margin-bottom: 8px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.offering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 82px; }
.offering-card { position: relative; display: flex; min-height: 515px; flex-direction: column; padding: 23px 23px 25px; overflow: hidden; border-radius: 3px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.offering-card:hover { transform: translateY(-8px); box-shadow: 0 25px 35px rgba(35, 48, 41, .13); }
.offering-card-dark { background: var(--forest); color: var(--sand); }
.offering-card-clay { background: var(--clay); color: var(--ink); }
.offering-card-sand { background: var(--butter); color: var(--ink); }
.card-topline { display: flex; align-items: center; justify-content: space-between; color: currentColor; font-size: 9px; font-weight: 700; letter-spacing: .15em; opacity: .72; text-transform: uppercase; }
.card-arrow { font-size: 20px; font-weight: 300; letter-spacing: 0; line-height: 1; transition: transform .35s var(--ease); }
.offering-card:hover .card-arrow { transform: translate(4px, -4px); }
.offering-photo { position: relative; height: 190px; margin: 28px 0 26px; overflow: hidden; border-radius: 2px; background: rgba(244, 239, 231, .14); }
.offering-photo::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(244, 239, 231, .52); pointer-events: none; }
.offering-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.96); transition: transform .7s var(--ease), filter .5s ease; }
.offering-card:hover .offering-photo img { transform: scale(1.045); filter: saturate(.95) contrast(1); }
.offering-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: clamp(38px, 4.5vw, 55px); letter-spacing: -.07em; line-height: .9; }
.offering-card p { max-width: 272px; margin-bottom: 40px; opacity: .75; font-size: 13px; line-height: 1.53; }
.card-footer { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid currentColor; opacity: .68; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.offerings-foot { display: flex; align-items: center; gap: 17px; justify-content: flex-end; margin-top: 22px; color: var(--ink-soft); font-size: 11px; }

/* Schedule */
.schedule-section { padding: clamp(110px, 12vw, 170px) 0 clamp(120px, 14vw, 200px); background: var(--forest); color: var(--sand); }
.eyebrow-light { color: var(--sage); }
.schedule-heading { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 60px; }
.schedule-heading h2 { margin-top: 31px; }
.schedule-heading h2 em { color: var(--butter); }
.schedule-copy { max-width: 255px; padding-bottom: 8px; }
.schedule-copy p { margin-bottom: 25px; color: rgba(244, 239, 231, .67); font-size: 13px; line-height: 1.6; }
.schedule-ui { margin-top: 80px; padding: 20px 28px 22px; border: 1px solid rgba(244, 239, 231, .22); border-radius: 3px; background: rgba(29, 48, 41, .27); }
.schedule-tabs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding-bottom: 20px; border-bottom: 1px solid rgba(244, 239, 231, .18); }
.schedule-tab { display: flex; align-items: center; justify-content: space-between; padding: 15px 14px; border: 1px solid transparent; border-radius: 2px; background: transparent; color: var(--sage); cursor: pointer; text-align: left; transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s var(--ease); }
.schedule-tab:hover { color: var(--sand); border-color: rgba(244, 239, 231, .22); transform: translateY(-2px); }
.schedule-tab span { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.schedule-tab strong { color: inherit; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.08em; line-height: .8; }
.schedule-tab.is-active { background: var(--clay); color: var(--ink); }
.schedule-list { min-height: 160px; }
.schedule-row { display: grid; grid-template-columns: .64fr 1.45fr 1fr .55fr; align-items: center; gap: 20px; padding: 23px 0; border-bottom: 1px solid rgba(244, 239, 231, .15); transition: opacity .3s ease, transform .3s var(--ease); }
.schedule-row[hidden] { display: none; }
.schedule-time { display: flex; align-items: baseline; gap: 10px; }
.schedule-time strong { color: var(--butter); font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -.06em; }
.schedule-time span, .schedule-class span { color: rgba(244, 239, 231, .55); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.schedule-class h3 { margin: 0 0 3px; font-family: var(--serif); font-size: 27px; letter-spacing: -.05em; line-height: 1; }
.schedule-teacher { display: flex; align-items: center; gap: 10px; color: rgba(244, 239, 231, .74); font-size: 11px; }
.teacher-avatar { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--ink); font-size: 10px; font-weight: 700; }
.avatar-mara { background: var(--butter); }
.avatar-nia { background: var(--clay); }
.avatar-luis { background: var(--sage); }
.avatar-suki { background: #d9ad9f; }
.avatar-ines { background: #e6d8b6; }
.schedule-book { justify-self: end; display: inline-flex; align-items: center; gap: 10px; color: var(--sand); border-bottom: 1px solid rgba(244, 239, 231, .45); padding-bottom: 4px; font-size: 11px; font-weight: 650; transition: gap .3s var(--ease), color .25s ease, border-color .25s ease; }
.schedule-book span { font-size: 16px; line-height: .7; }
.schedule-book:hover { gap: 15px; color: var(--butter); border-color: var(--butter); }
.schedule-footnote { display: flex; align-items: center; gap: 11px; margin: 21px 0 0; color: rgba(244, 239, 231, .47); font-size: 10px; }
.schedule-footnote span { color: var(--clay); font-size: 15px; }

/* Approach */
.approach { background: var(--sand); }
.approach-grid { display: grid; grid-template-columns: .95fr 1fr; align-items: center; gap: clamp(70px, 11vw, 160px); }
.approach-photo { position: relative; aspect-ratio: 1; max-width: 510px; overflow: hidden; border-radius: 4px; background: var(--forest); }
.approach-photo::after { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(244, 239, 231, .58); pointer-events: none; }
.approach-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(.98); transition: transform .9s var(--ease), filter .5s ease; }
.approach-photo:hover > img { transform: scale(1.035); filter: saturate(.9) contrast(1); }
.approach-photo-note { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; width: 143px; height: 143px; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: rgba(35, 48, 41, .86); color: var(--sand); text-align: center; transform: translate(-50%, -50%); box-shadow: 0 14px 30px rgba(35, 48, 41, .18); }
.approach-photo-note span { color: var(--sage); font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.approach-photo-note strong { margin: 5px 0 6px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.08em; line-height: .85; }
.approach-photo-caption { position: absolute; z-index: 2; bottom: 27px; left: 31px; display: flex; flex-direction: column; color: var(--sand); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-shadow: 0 1px 8px rgba(35, 48, 41, .3); text-transform: uppercase; }
.approach-copy h2 { max-width: 620px; margin: 29px 0 31px; }
.approach-lede { max-width: 435px; margin-bottom: 42px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.principles { max-width: 550px; border-top: 1px solid rgba(35, 48, 41, .18); }
.principles details { border-bottom: 1px solid rgba(35, 48, 41, .18); }
.principles summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 23px; letter-spacing: -.04em; }
.principles summary::-webkit-details-marker { display: none; }
.summary-plus { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid rgba(35, 48, 41, .4); border-radius: 50%; font-family: var(--sans); font-size: 18px; font-weight: 300; line-height: 1; transition: transform .35s var(--ease), background .3s ease, color .3s ease; }
.principles details[open] .summary-plus { background: var(--clay); color: var(--ink); transform: rotate(45deg); }
.principles details p { max-width: 455px; margin: -4px 40px 22px 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

/* Quote */
.quote-section { padding: clamp(115px, 14vw, 190px) 0; background: var(--clay); color: var(--ink); }
.quote-grid { display: grid; grid-template-columns: .7fr 1.55fr .5fr; gap: 30px; align-items: start; }
.quote-index { padding-top: 11px; color: rgba(35, 48, 41, .66); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
blockquote { max-width: 735px; margin: 0; font-family: var(--serif); font-size: clamp(43px, 5.6vw, 79px); letter-spacing: -.075em; line-height: .92; }
.quote-attribution { display: flex; align-items: center; gap: 13px; justify-self: end; padding-top: 17px; color: rgba(35, 48, 41, .78); font-size: 11px; line-height: 1.3; }
.quote-attribution small { color: rgba(35, 48, 41, .6); font-size: 9px; letter-spacing: .05em; text-transform: uppercase; }
.quote-line { display: block; width: 30px; height: 1px; background: currentColor; }

/* Journal */
.journal { background: var(--sand-deep); }
.journal-heading { align-items: end; }
.journal-heading h2 { margin-top: 31px; }
.journal-grid { display: grid; grid-template-columns: 1.22fr 1fr 1fr; gap: 13px; margin-top: 76px; }
.journal-card { position: relative; display: flex; min-height: 455px; flex-direction: column; padding: 21px 22px 22px; overflow: hidden; color: var(--ink); border-radius: 3px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.journal-card:hover { transform: translateY(-8px); box-shadow: 0 25px 35px rgba(35, 48, 41, .12); }
.journal-card-featured { background: var(--forest); color: var(--sand); }
.journal-card-olive { background: var(--moss); color: var(--sand); }
.journal-card-butter { background: var(--butter); }
.journal-number { font-size: 9px; font-weight: 700; letter-spacing: .14em; opacity: .7; }
.journal-art { position: relative; display: grid; place-items: center; flex: 1; min-height: 230px; margin: 8px 0 28px; overflow: hidden; background: var(--moss); }
.journal-art::after { content: ""; position: absolute; inset: 10px; z-index: 1; border: 1px solid rgba(244, 239, 231, .55); pointer-events: none; }
.journal-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(.98); transition: transform .8s var(--ease), filter .5s ease; }
.journal-card:hover .journal-art img { transform: scale(1.05); filter: saturate(.92) contrast(1); }
.journal-card-copy { position: relative; }
.journal-meta { display: block; margin-bottom: 10px; color: currentColor; font-size: 9px; font-weight: 700; letter-spacing: .14em; opacity: .66; text-transform: uppercase; }
.journal-card h3 { max-width: 300px; margin: 0; font-family: var(--serif); font-size: clamp(27px, 3vw, 39px); letter-spacing: -.06em; line-height: .94; }
.journal-arrow { position: absolute; right: 0; bottom: 0; font-size: 24px; line-height: 1; transition: transform .35s var(--ease); }
.journal-card:hover .journal-arrow { transform: translate(5px, -5px); }

/* Membership */
.membership { position: relative; overflow: hidden; padding: clamp(120px, 14vw, 205px) 0; background: var(--butter); }
.membership-inner { position: relative; z-index: 1; max-width: 800px; text-align: center; }
.membership-inner .eyebrow { justify-content: center; color: rgba(35, 48, 41, .7); }
.membership-inner h2 { margin: 29px 0 28px; font-size: clamp(66px, 9vw, 126px); }
.membership-inner p:not(.eyebrow) { max-width: 400px; margin: 0 auto 34px; color: rgba(35, 48, 41, .72); font-size: 15px; line-height: 1.58; }
.membership-actions { display: flex; align-items: center; justify-content: center; gap: 27px; }
.membership-note { display: flex; justify-content: center; gap: 10px; margin-top: 51px; color: rgba(35, 48, 41, .55); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.membership-note span:first-child { color: var(--clay-deep); }
.membership-photo { position: absolute; z-index: 0; width: 190px; height: 245px; overflow: hidden; border: 9px solid rgba(244, 239, 231, .62); box-shadow: 0 19px 34px rgba(35, 48, 41, .13); }
.membership-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.membership-photo-left { top: 14%; left: 5%; transform: rotate(-8deg); }
.membership-photo-right { right: 5%; bottom: 13%; transform: rotate(8deg); }
.membership-photo-left img { object-position: 54% center; }
.membership-photo-right img { object-position: 47% center; }

/* Newsletter */
.newsletter { padding: 65px 0 70px; background: var(--sand); border-bottom: 1px solid rgba(35, 48, 41, .16); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; }
.newsletter h2 { margin-top: 18px; font-size: clamp(38px, 4.4vw, 56px); }
.newsletter-form { position: relative; display: flex; align-items: center; border-bottom: 1px solid rgba(35, 48, 41, .5); }
.newsletter-form input { width: 100%; height: 52px; padding: 0 46px 0 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; }
.newsletter-form input::placeholder { color: var(--ink-soft); opacity: .75; }
.form-submit { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; margin-bottom: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--ink); color: var(--sand); cursor: pointer; font-size: 17px; transition: background .25s ease, color .25s ease, transform .35s var(--ease); }
.form-submit:hover { background: var(--clay); color: var(--ink); transform: translate(2px, -2px); }
.form-message { position: absolute; top: calc(100% + 12px); left: 0; margin: 0; color: var(--clay-deep); font-size: 11px; }

/* Footer */
.site-footer { padding: 67px 0 24px; background: var(--sand); }
.footer-top { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.08fr; gap: 40px; padding-bottom: 80px; }
.brand-footer { margin-bottom: 18px; }
.footer-brand p { max-width: 145px; color: var(--ink-soft); font-family: var(--serif); font-size: 19px; letter-spacing: -.04em; line-height: 1.05; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.footer-label { margin-bottom: 9px; color: var(--clay-deep); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.footer-column p { margin: 0 0 4px; }
.footer-column a { border-bottom: 1px solid transparent; transition: color .25s ease, border-color .25s ease; }
.footer-column a:hover { color: var(--ink); border-color: currentColor; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(35, 48, 41, .16); color: var(--ink-soft); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom a { color: var(--ink); transition: color .25s ease; }
.footer-bottom a:hover { color: var(--clay-deep); }

/* Entrance motion */
[data-reveal] { opacity: 0; transform: translateY(27px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="90"] { transition-delay: 90ms; }
[data-reveal-delay="160"] { transition-delay: 160ms; }
[data-reveal-delay="180"] { transition-delay: 180ms; }

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

@media (max-width: 1080px) {
  .container { width: min(var(--container), calc(100% - 52px)); }
  .desktop-nav { margin-left: 0; }
  .hero-grid { gap: 70px; }
  .hero h1 { font-size: clamp(62px, 8vw, 100px); }
  .visual-side-note { display: none; }
  .manifesto-intro { grid-template-columns: .52fr 1.45fr .7fr; gap: 25px; }
  .studio-story { gap: 70px; }
}

@media (max-width: 850px) {
  .container { width: min(var(--container), calc(100% - 42px)); }
  .desktop-nav, .header-signin { display: none; }
  .menu-toggle { display: block; }
  .header-actions { gap: 13px; }
  .mobile-menu { position: fixed; z-index: 40; top: 0; right: 0; bottom: 0; left: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: space-between; padding: 130px 21px 30px; background: var(--forest); color: var(--sand); opacity: 0; transform: translateY(-15px); transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s; }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-bottom: 1px solid rgba(244, 239, 231, .2); font-family: var(--serif); font-size: clamp(39px, 9vw, 66px); letter-spacing: -.07em; line-height: .9; }
  .mobile-menu nav a:first-child { border-top: 1px solid rgba(244, 239, 231, .2); }
  .mobile-menu nav a span { color: var(--clay); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
  .mobile-menu-footer { display: flex; justify-content: space-between; gap: 20px; color: var(--sage); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-menu-footer a { color: var(--sand); border-bottom: 1px solid rgba(244, 239, 231, .4); }
  body.menu-open { height: 100vh; overflow: hidden; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-grid { grid-template-columns: 1fr; gap: 78px; }
  .hero-copy { padding: 10px 0 0; }
  .hero h1 { max-width: 620px; font-size: clamp(66px, 13vw, 112px); }
  .hero-visual-wrap { max-width: 570px; justify-self: center; }
  .scroll-cue { position: relative; bottom: auto; left: auto; width: fit-content; margin: 54px auto 0; }
  .manifesto-intro { grid-template-columns: 1fr 1.7fr; }
  .manifesto-intro .intro-copy { grid-column: 2; padding-top: 0; }
  .studio-story { grid-template-columns: 1fr; gap: 53px; }
  .studio-note { max-width: 400px; padding-left: 25%; }
  .offering-card { min-height: 385px; }
  .schedule-heading { grid-template-columns: 1fr .8fr; }
  .schedule-ui { padding-inline: 19px; }
  .schedule-row { grid-template-columns: .55fr 1.3fr .9fr .45fr; gap: 13px; }
  .schedule-teacher { font-size: 10px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card-featured { grid-column: 1 / -1; min-height: 500px; }
  .journal-card { min-height: 390px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 32px); }
  .site-header { padding: 16px 0; }
  .site-header.is-scrolled { padding: 10px 0; }
  .brand-word { font-size: 20px; }
  .button-small { min-height: 40px; padding-inline: 13px; }
  .button-small span { display: none; }
  .hero { padding-top: 122px; padding-bottom: 55px; }
  .hero-copy .eyebrow { margin-bottom: 25px; }
  .hero h1 { margin-bottom: 26px; font-size: clamp(57px, 17vw, 88px); line-height: .87; }
  .hero-intro { max-width: 350px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; margin-bottom: 56px; }
  .hero-details { justify-content: space-between; gap: 10px; }
  .hero-details > div { gap: 6px; font-size: 8px; }
  .hero-visual-wrap { width: calc(100% - 12px); margin-right: 12px; }
  .hero-visual { aspect-ratio: .82; }
  .visual-stamp-top { top: 28px; right: -23px; width: 72px; height: 72px; }
  .visual-stamp strong { font-size: 19px; }
  .floating-class-card { bottom: 22px; left: -15px; width: 198px; padding: 14px 14px 14px 15px; }
  .floating-class-card strong { font-size: 20px; }
  .visual-caption { font-size: 7px; }
  .proof-inner { align-items: flex-start; flex-direction: column; gap: 15px; padding: 22px 0; }
  .proof-items { justify-content: flex-start; flex-wrap: wrap; row-gap: 10px; font-size: 8px; }
  .proof-items i { width: 3px; height: 3px; }
  .section { padding: 93px 0; }
  h2 { font-size: clamp(47px, 14vw, 70px); }
  .manifesto-intro { display: block; }
  .manifesto-intro h2 { margin: 29px 0 27px; }
  .intro-copy { max-width: 350px; }
  .studio-story { margin-top: 75px; }
  .studio-image { aspect-ratio: .98; }
  .image-tag { right: -10px; bottom: 18px; width: 111px; height: 111px; padding-left: 16px; font-size: 16px; }
  .image-tag span { margin-top: 7px; font-size: 7px; }
  .studio-note { max-width: 310px; padding-left: 18%; }
  .section-heading-row { display: block; }
  .section-heading-row h2 { margin-top: 27px; }
  .heading-aside { max-width: 300px; margin-top: 26px; }
  .offering-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 52px; }
  .offering-card { min-height: 475px; padding: 20px; }
  .offering-photo { height: 190px; margin-top: 46px; }
  .offerings-foot { align-items: flex-start; flex-direction: column; gap: 9px; }
  .schedule-section { padding: 95px 0 105px; }
  .schedule-heading { display: block; }
  .schedule-copy { max-width: 320px; margin-top: 28px; }
  .schedule-ui { margin-top: 52px; padding: 13px 14px 18px; }
  .schedule-tabs { gap: 4px; overflow-x: auto; margin-inline: -5px; padding: 0 5px 14px; scrollbar-width: none; }
  .schedule-tabs::-webkit-scrollbar { display: none; }
  .schedule-tab { min-width: 72px; flex: 0 0 72px; padding: 12px 9px; }
  .schedule-tab strong { font-size: 20px; }
  .schedule-row { display: grid; grid-template-columns: 1fr auto; gap: 11px 14px; padding: 19px 0; }
  .schedule-time { grid-column: 1; }
  .schedule-time strong { font-size: 25px; }
  .schedule-class { grid-column: 1 / -1; grid-row: 2; }
  .schedule-class h3 { font-size: 25px; }
  .schedule-teacher { grid-column: 1; grid-row: 3; }
  .schedule-book { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .schedule-footnote { align-items: flex-start; line-height: 1.45; }
  .approach-grid { grid-template-columns: 1fr; gap: 65px; }
  .approach-photo { max-width: none; }
  .approach-photo-note { width: 125px; height: 125px; }
  .approach-copy h2 { margin-top: 27px; }
  .approach-lede { margin-bottom: 31px; }
  .principles summary { font-size: 21px; }
  .quote-section { padding: 100px 0 110px; }
  .quote-grid { display: block; }
  blockquote { margin: 47px 0 42px; font-size: clamp(48px, 14vw, 75px); }
  .quote-attribution { justify-content: flex-end; }
  .journal-heading .text-link { margin-top: 27px; }
  .journal-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 52px; }
  .journal-card-featured, .journal-card { grid-column: auto; min-height: 430px; }
  .journal-card-featured { min-height: 470px; }
  .membership { padding: 105px 0 115px; }
  .membership-photo { width: 100px; height: 132px; opacity: .22; border-width: 5px; }
  .membership-photo-left { top: 8%; left: -38px; transform: rotate(-10deg); }
  .membership-photo-right { right: -38px; bottom: 8%; transform: rotate(10deg); }
  .membership-inner h2 { margin-top: 27px; font-size: clamp(66px, 19vw, 100px); }
  .membership-inner p:not(.eyebrow) { max-width: 330px; font-size: 14px; }
  .membership-actions { align-items: flex-start; flex-direction: column; gap: 21px; width: max-content; margin-inline: auto; }
  .membership-note { align-items: center; flex-direction: column; gap: 3px; margin-top: 42px; font-size: 8px; }
  .newsletter { padding: 57px 0 65px; }
  .newsletter-inner { display: block; }
  .newsletter h2 { margin-top: 16px; }
  .newsletter-form { margin-top: 38px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-bottom: 62px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; line-height: 1.4; }
}

@media (max-width: 380px) {
  .header-actions { gap: 8px; }
  .button-small { padding-inline: 11px; font-size: 10px; }
  .hero h1 { font-size: 55px; }
  .hero-details > div:nth-child(3) { display: none; }
  .hero-details { justify-content: flex-start; gap: 22px; }
  .proof-items { column-gap: 10px; }
}
