
:root {
color-scheme: dark;
--ink: #0c0b0a;
--ink-2: #141210;
--smoke: #221f1c;
--ash: #8a847b;
--mist: #b8b1a6;
--ivory: #f1ebe1;
--paper: #f8f4ee;
--champagne: #c6ad85;
--champagne-soft: #dfcfb2;
--online: #a3abb6;
--serif: 'Bodoni Moda', 'Didot', 'Bodoni 72', 'Times New Roman', serif;
--sans: 'Jost', 'Futura', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
--fs-hero: clamp(4.1rem, 19.5vw, 13.5rem);
--fs-display: clamp(2.7rem, 9vw, 6.4rem);
--fs-h2: clamp(2.2rem, 6vw, 4.4rem);
--fs-h3: clamp(1.55rem, 2.6vw, 2.1rem);
--fs-lead: clamp(1.12rem, 1.8vw, 1.38rem);
--fs-body: 1rem;
--fs-small: 0.875rem;
--fs-label: 0.6875rem;
--gutter: clamp(20px, 5.5vw, 80px);
--wrap: 1320px;
--space-section: clamp(88px, 14vw, 180px);
--radius: 2px;
--radius-pill: 999px;
--ease: cubic-bezier(0.22, 0.61, 0.21, 1);
--ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
--glass-bg: rgba(20, 18, 16, 0.42);
--glass-line: rgba(241, 235, 225, 0.14);
--glass-hi: rgba(255, 255, 255, 0.06);
--bg: var(--ink);
--fg: var(--ivory);
--muted: var(--mist);
--faint: var(--ash);
--line: rgba(241, 235, 225, 0.12);
--accent: var(--champagne);
}
.theme-ink { --bg: var(--ink); --fg: var(--ivory); --muted: var(--mist); --faint: var(--ash); --line: rgba(241, 235, 225, 0.12); --accent: var(--champagne); background: var(--bg); color: var(--fg); }
.theme-ivory { --bg: var(--ivory); --fg: var(--ink); --muted: #5b554d; --faint: #8c857a; --line: rgba(12, 11, 10, 0.14); --accent: #8e7550; background: var(--bg); color: var(--fg); color-scheme: light; }
.theme-paper { --bg: var(--paper); --fg: var(--ink); --muted: #5b554d; --faint: #8c857a; --line: rgba(12, 11, 10, 0.12); --accent: #8e7550; background: var(--bg); color: var(--fg); color-scheme: light; }
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
background: var(--ink);
color: var(--ivory);
font-family: var(--sans);
font-size: var(--fs-body);
font-weight: 350;
line-height: 1.65;
letter-spacing: 0.005em;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.015em; text-wrap: balance; font-optical-sizing: auto; }
p { margin: 0; text-wrap: pretty; }
ul, ol, dl, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
::selection { background: var(--champagne); color: var(--ink); }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 4px; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--ivory); color: var(--ink); font-size: var(--fs-small); }
.skip:focus { top: calc(12px + env(safe-area-inset-top, 0px)); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); position: relative; }
.label {
font-family: var(--sans);
font-size: var(--fs-label);
font-weight: 500;
letter-spacing: 0.24em;
text-transform: uppercase;
color: var(--muted);
}
.label--accent { color: var(--accent); }
.display { font-size: var(--fs-display); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); line-height: 1.1; }
.italic, em { font-style: italic; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); max-width: 34em; font-weight: 300; }
.body { color: var(--muted); max-width: 36em; }
.small { font-size: var(--fs-small); }
.num { font-variant-numeric: tabular-nums lining-nums; }
.serif { font-family: var(--serif); }
.tbd {
color: var(--faint);
font-style: italic;
background-image: linear-gradient(90deg, currentColor 40%, transparent 0);
background-size: 5px 1px;
background-repeat: repeat-x;
background-position: 0 100%;
padding-bottom: 1px;
}
.reveal { transition: transform 1.1s var(--ease-slow), opacity 1.1s var(--ease-slow); }
.js .reveal:not(.is-in) { transform: translateY(18px); opacity: 0.35; }
@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; }
.js .reveal:not(.is-in) { transform: none; opacity: 1; }
}
.btn {
--h: 52px;
display: inline-flex; align-items: center; justify-content: center; gap: 12px;
min-height: var(--h); padding: 0 28px;
font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
border-radius: var(--radius-pill);
transition: background-color .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--solid { background: var(--fg); color: var(--bg); }
.btn--solid:hover { background: var(--accent); color: var(--ink); }
.btn--glass {
background: rgba(241, 235, 225, 0.06); color: var(--fg);
border: 1px solid var(--glass-line);
backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%);
box-shadow: inset 0 1px 0 var(--glass-hi);
}
.btn--glass:hover { border-color: rgba(241, 235, 225, 0.4); background: rgba(241, 235, 225, 0.1); }
.btn--line { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.btn--line:hover { border-color: var(--fg); }
.btn--sm { --h: 42px; padding: 0 20px; font-size: 0.6875rem; }
.btn[disabled] { opacity: 0.35; pointer-events: none; }
.btn .arrow { width: 18px; height: 1px; background: currentColor; position: relative; transition: width .5s var(--ease); }
.btn .arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 26px; }
.link {
display: inline-flex; align-items: center; gap: 10px;
font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
padding-bottom: 6px;
transition: background-size .6s var(--ease);
}
.link:hover { background-size: 30% 1px; }
.nav {
position: fixed; inset: 0 0 auto 0; z-index: 50;
padding-top: env(safe-area-inset-top, 0px);
transition: background-color .6s var(--ease), border-color .6s var(--ease), transform .6s var(--ease);
border-bottom: 1px solid transparent;
}
.nav.is-solid {
background: rgba(12, 11, 10, 0.55);
backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
border-bottom-color: rgba(241, 235, 225, 0.08);
}
.nav__bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.nav__brand { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.01em; color: var(--ivory); white-space: nowrap; }
.nav__brand i { color: var(--champagne-soft); }
.nav__links { display: none; gap: clamp(18px, 2.4vw, 36px); }
.nav__links a { font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(241, 235, 225, 0.72); transition: color .4s; position: relative; padding-block: 6px; }
.nav__links a:hover, .nav__links a[aria-current='page'] { color: var(--ivory); }
.nav__links a[aria-current='page']::after { content: ''; position: absolute; left: 50%; bottom: -2px; width: 3px; height: 3px; border-radius: 50%; background: var(--champagne); transform: translateX(-50%); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__menu { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; }
.nav__menu span { display: block; width: 22px; height: 1px; background: var(--ivory); transition: transform .5s var(--ease), opacity .3s; }
.menu-open .nav__menu span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .nav__menu span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1040px) { .nav__links { display: flex; } .nav__menu { display: none; } }
@media (max-width: 380px) { .nav__brand { font-size: 1.05rem; } .nav .btn--sm { padding: 0 16px; } }
.menu {
position: fixed; inset: 0; z-index: 45;
background: rgba(12, 11, 10, 0.94);
backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
padding: calc(110px + env(safe-area-inset-top, 0px)) var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px));
display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility .6s;
overflow-y: auto;
}
.menu-open .menu { opacity: 1; visibility: visible; }
.menu ol { display: grid; gap: 6px; }
.menu ol a { font-family: var(--serif); font-size: clamp(2.3rem, 11vw, 3.4rem); line-height: 1.15; display: inline-block; transform: translateY(12px); opacity: 0; transition: transform .8s var(--ease-slow), opacity .8s var(--ease-slow), color .3s; }
.menu ol a:hover { color: var(--champagne-soft); font-style: italic; }
.menu-open .menu ol a { transform: none; opacity: 1; }
.menu-open .menu ol li:nth-child(2) a { transition-delay: .04s; } .menu-open .menu ol li:nth-child(3) a { transition-delay: .08s; }
.menu-open .menu ol li:nth-child(4) a { transition-delay: .12s; } .menu-open .menu ol li:nth-child(5) a { transition-delay: .16s; }
.menu-open .menu ol li:nth-child(6) a { transition-delay: .2s; } .menu-open .menu ol li:nth-child(7) a { transition-delay: .24s; }
.menu__foot { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.menu-open { overflow: hidden; }
.frame { position: relative; overflow: hidden; background: var(--smoke); max-width: 100%; }
.frame > img, .frame > video { width: 100%; height: 100%; object-fit: cover; }
.frame--45 { aspect-ratio: 4 / 5; }
.frame--916 { aspect-ratio: 9 / 16; }
.frame--169 { aspect-ratio: 16 / 9; }
.frame__spec {
position: absolute; left: 14px; bottom: 12px; right: 14px;
font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase;
color: rgba(241, 235, 225, 0.5);
pointer-events: none;
}
.gallery__item .frame__spec, .voice--media .frame__spec, .service__media .frame__spec { top: 14px; bottom: auto; left: auto; text-align: right; }
.zoom > img { transition: transform 1.6s var(--ease-slow); }
.zoom:hover > img, a:hover .gallery__item .frame__spec, .voice--media .frame__spec, .service__media .frame__spec { top: 14px; bottom: auto; left: auto; text-align: right; }
.zoom > img { transform: scale(1.045); }
.play {
position: absolute; left: 50%; top: 50%; translate: -50% -50%;
width: 64px; height: 64px; border-radius: 50%;
display: grid; place-items: center;
background: rgba(20, 18, 16, 0.3); border: 1px solid rgba(241, 235, 225, 0.35);
backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
transition: transform .6s var(--ease), background-color .6s;
}
.play::before { content: ''; margin-left: 4px; border-left: 11px solid var(--ivory); border-top: 7px solid transparent; border-bottom: 7px solid transparent; }
a:hover .play, button:hover .play { transform: scale(1.08); background: rgba(20, 18, 16, 0.5); }
.glass {
background: linear-gradient(160deg, rgba(241, 235, 225, 0.08), rgba(241, 235, 225, 0.02) 60%), var(--glass-bg);
border: 1px solid var(--glass-line);
backdrop-filter: blur(22px) saturate(130%); -webkit-backdrop-filter: blur(22px) saturate(130%);
box-shadow: inset 0 1px 0 var(--glass-hi), 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: var(--ink); isolation: isolate; }
.hero__media { position: absolute; inset: -6% 0 0 0; z-index: -2; will-change: transform; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; animation: drift 26s var(--ease) infinite alternate; }
@keyframes drift { from { transform: scale(1.08) translate3d(0, 0, 0); } to { transform: scale(1.16) translate3d(-2%, -1.5%, 0); } }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 11, 10, 0.55) 0%, rgba(12, 11, 10, 0) 26%, rgba(12, 11, 10, 0.05) 50%, rgba(12, 11, 10, 0.88) 100%); }
.hero__inner { padding-top: calc(120px + env(safe-area-inset-top, 0px)); padding-bottom: clamp(28px, 5vw, 56px); display: grid; gap: clamp(22px, 3vw, 36px); }
.hero__chip { position: absolute; top: calc(92px + env(safe-area-inset-top, 0px)); right: var(--gutter); display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px; border-radius: var(--radius-pill); font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; }
.hero__chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 0 4px rgba(198, 173, 133, 0.18); }
.hero__title { font-size: var(--fs-hero); line-height: 0.84; letter-spacing: -0.035em; font-weight: 400; }
.hero__title span { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.1em; }
.hero__title span > b { display: inline-block; font-weight: inherit; animation: rise 1.6s var(--ease-slow) both; }
.hero__title span:nth-child(2) { padding-left: 0.5em; }
.hero__title span:nth-child(2) > b { font-style: italic; animation-delay: .12s; }
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
.hero__meta { display: grid; gap: 22px; animation: fade 1.4s .5s var(--ease) both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.hero__roles { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--ivory); }
.hero__where { display: flex; align-items: center; gap: 14px; }
.hero__where::before { content: ''; width: 36px; height: 1px; background: var(--champagne); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__rail { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 22px; border-top: 1px solid rgba(241, 235, 225, 0.14); animation: fade 1.4s .8s var(--ease) both; }
.hero__rail .scroll { display: inline-flex; align-items: center; gap: 12px; }
.hero__rail .scroll i { width: 1px; height: 28px; background: linear-gradient(var(--ivory), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-width: 599px) { .hero__ctas .btn { flex: 1 1 100%; } .hero__rail .coords { display: none; } }
@media (min-width: 900px) {
.hero__inner { grid-template-columns: 1fr auto; align-items: end; column-gap: 48px; }
.hero__title { grid-column: 1 / -1; }
.hero__rail { grid-column: 1 / -1; }
}
.head { display: grid; gap: 22px; margin-bottom: clamp(44px, 7vw, 88px); }
.head .label { display: flex; align-items: center; gap: 14px; }
.head .label::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: .6; }
@media (min-width: 900px) { .head--split { grid-template-columns: 1.1fr 0.9fr; align-items: end; column-gap: 64px; } .head--split .label { grid-column: 1 / -1; } }
.about { display: grid; gap: clamp(40px, 7vw, 96px); }
.about__figure { position: relative; }
.about__figure figcaption { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; }
.about__statement { font-size: var(--fs-display); line-height: 0.98; }
.about__statement em { color: var(--accent); }
.about__text { display: grid; gap: 22px; margin-top: clamp(28px, 4vw, 44px); }
.facts { margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--line); }
.facts > div { display: grid; grid-template-columns: minmax(110px, 0.8fr) 1.6fr; gap: 20px; padding-block: 16px; border-bottom: 1px solid var(--line); align-items: baseline; }
.facts dt { font-size: var(--fs-label); letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint); }
.facts dd { font-size: 1.02rem; }
.facts--edu > div { padding-block: 22px; }
.facts--edu dd { display: grid; gap: 18px; }
.edu { display: grid; gap: 4px; }
.edu__school { font-family: var(--serif); font-size: 1.2rem; line-height: 1.25; }
.edu__degree { font-size: var(--fs-small); color: var(--muted); }
@media (max-width: 559px) { .facts--edu > div { grid-template-columns: 1fr; gap: 12px; } }
.selected { margin-top: clamp(40px, 5vw, 60px); display: grid; gap: 14px; }
.selected li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: baseline; font-family: var(--serif); font-size: 1.25rem; }
.selected li .num { font-family: var(--sans); font-size: var(--fs-small); color: var(--faint); }
@media (min-width: 900px) {
.about { grid-template-columns: 5fr 6fr; align-items: start; }
.about__figure { position: sticky; top: 110px; }
}
.services { display: grid; gap: 20px; }
.service { display: grid; gap: 22px; align-content: start; }
.service__media { position: relative; }
.service__tag { position: absolute; top: 14px; left: 14px; padding: 7px 12px; border-radius: var(--radius-pill); font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase; }
.service h3 { font-size: clamp(1.9rem, 3vw, 2.4rem); }
.service__desc { color: var(--muted); max-width: 30em; }
.service__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.price-from { display: grid; gap: 2px; }
.price-from b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.service__actions { display: flex; align-items: center; gap: 18px; }
@media (max-width: 767px) {
.services { grid-auto-flow: column; grid-auto-columns: 84%; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); scrollbar-width: none; padding-bottom: 6px; }
.services::-webkit-scrollbar { display: none; }
.service { scroll-snap-align: start; }
}
@media (min-width: 768px) { .services { grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); } }
.swipe-hint { display: flex; gap: 6px; margin-top: 22px; }
.swipe-hint i { width: 18px; height: 1px; background: var(--line); }
.swipe-hint i.on { background: var(--fg); }
@media (min-width: 768px) { .swipe-hint { display: none; } }
.intensives { border-top: 1px solid var(--line); }
.intensive { display: grid; gap: 18px 28px; padding-block: clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line); grid-template-columns: auto 1fr; }
.intensive__date { font-family: var(--serif); line-height: 0.9; min-width: 4.4ch; }
.intensive__date b { display: block; font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.03em; }
.intensive__date span { font-family: var(--sans); font-size: var(--fs-label); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.intensive__body { display: grid; gap: 12px; align-content: start; }
.intensive__title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.intensive__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; color: var(--muted); font-size: var(--fs-small); }
.intensive__meta span + span::before { content: '·'; margin-right: 18px; color: var(--faint); }
.map-link { color: inherit; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; transition: color .3s, text-decoration-color .3s; }
.map-link:hover { color: var(--fg); text-decoration-color: currentColor; }
.intensive__meta span:has(> .map-link) { flex-basis: 100%; line-height: 1.55; }
.intensive__meta span:has(> .map-link)::before { content: none; }
.intensive__side { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; justify-content: space-between; }
.intensive__price { font-family: var(--serif); font-size: 1.6rem; }
.spots { display: grid; gap: 8px; }
.spots__dots { display: flex; gap: 5px; }
.spots__dots i { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--fg); opacity: .5; }
.spots__dots i.taken { background: var(--fg); opacity: .9; }
.spots__text { font-size: var(--fs-label); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.spots__text.low { color: var(--accent); }
.intensive.is-full .intensive__title { color: var(--muted); }
@media (min-width: 900px) {
.intensive { grid-template-columns: 160px 1fr auto; align-items: center; }
.intensive__side { grid-column: auto; justify-content: flex-end; }
}
.pricing { display: grid; gap: 20px; }
.tier { padding: clamp(28px, 3.5vw, 44px); border: 1px solid var(--line); display: grid; gap: 26px; align-content: start; position: relative; }
.tier.glass { border-color: var(--glass-line); }
.tier__head { display: grid; gap: 10px; }
.tier__head h3 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.tier__list { display: grid; }
.tier__row { display: grid; grid-template-columns: 1fr auto; gap: 4px 16px; padding-block: 16px; border-top: 1px solid var(--line); }
.tier__row .name { font-size: 1.02rem; }
.tier__row .price { font-family: var(--serif); font-size: 1.45rem; text-align: right; }
.tier__row .detail { grid-column: 1 / -1; font-size: var(--fs-small); color: var(--muted); display: flex; justify-content: space-between; gap: 12px; }
.tier__row.is-featured .name::after { content: 'Recommended'; margin-left: 10px; font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); vertical-align: 2px; }
.tier__note { font-size: var(--fs-small); color: var(--muted); }
.pricing-foot { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 32px; color: var(--muted); font-size: var(--fs-small); }
.pricing-foot span::before { content: ''; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-right: 10px; vertical-align: 2px; }
@media (min-width: 960px) { .pricing { grid-template-columns: repeat(3, 1fr); gap: 0; } .tier + .tier { border-left: 0; } .tier.glass { margin-block: -18px; z-index: 1; } }
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.chip {
display: inline-flex; align-items: center; gap: 8px;
min-height: 38px; padding: 0 16px; border-radius: var(--radius-pill);
border: 1px solid var(--line); color: var(--muted);
font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
transition: all .4s var(--ease);
}
.chip:hover { color: var(--fg); border-color: var(--fg); }
.chip[aria-pressed='true'] { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.chip .count { opacity: .6; font-variant-numeric: tabular-nums; }
.gallery { columns: 2; column-gap: 10px; }
.gallery__item { break-inside: avoid; margin-bottom: 10px; display: block; width: 100%; text-align: left; position: relative; }
.gallery__item .frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12, 11, 10, 0.7)); opacity: 0; transition: opacity .6s var(--ease); }
.gallery__item:hover .frame::after, .gallery__item:focus-visible .frame::after { opacity: 1; }
.gallery__cap { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 8px; color: var(--ivory); }
.gallery__cap .t { font-family: var(--serif); font-size: 1.05rem; line-height: 1.15; }
.gallery__cap .d { font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: .8; white-space: nowrap; }
.gallery__item .badge { position: absolute; top: 10px; left: 10px; z-index: 1; padding: 5px 10px; border-radius: var(--radius-pill); font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase; }
.gallery .play { width: 48px; height: 48px; }
@media (min-width: 760px) { .gallery { columns: 3; column-gap: 16px; } .gallery__item { margin-bottom: 16px; } }
@media (min-width: 1200px) { .gallery--full { columns: 4; } }
.lightbox {
position: fixed; inset: 0; z-index: 80; display: grid; grid-template-rows: auto 1fr auto;
background: rgba(8, 7, 6, 0.9);
backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
padding: calc(14px + env(safe-area-inset-top, 0px)) 16px calc(18px + env(safe-area-inset-bottom, 0px));
opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__top, .lightbox__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1200px; width: 100%; margin-inline: auto; }
.lightbox__stage { display: grid; place-items: center; min-height: 0; padding-block: 14px; }
.lightbox__stage .frame { max-height: 100%; height: 100%; width: auto; max-width: min(100%, 1200px); transform: scale(0.97); transition: transform .7s var(--ease-slow); }
.lightbox.is-open .lightbox__stage .frame { transform: none; }
.lightbox__stage .frame--169 { height: auto; width: 100%; }
.icon-btn { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--glass-line); color: var(--ivory); transition: border-color .4s; }
.icon-btn:hover { border-color: var(--ivory); }
.icon-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.2; }
.lightbox__nav { display: flex; gap: 10px; }
.lightbox__note { position: absolute; left: 50%; bottom: 18%; translate: -50% 0; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); padding: 8px 14px; border-radius: var(--radius-pill); white-space: nowrap; }
.voices { display: grid; gap: 16px; }
.voice { border: 1px solid var(--line); padding: clamp(26px, 3vw, 40px); display: grid; gap: 22px; align-content: space-between; min-height: 300px; position: relative; overflow: hidden; }
.voice__mark { font-family: var(--serif); font-size: 5rem; line-height: 0.5; height: 0.4em; color: var(--accent); }
.voice__quote { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.65rem); line-height: 1.3; }
.voice__who { display: grid; gap: 4px; }
.voice__who .name { font-size: 1rem; }
.voice--media { padding: 0; border: 0; color: var(--ivory); }
.voice--media .frame { position: absolute; inset: 0; }
.voice--media .frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,10,0.1), rgba(12,11,10,0.85)); }
.voice--media .voice__inner { position: relative; z-index: 1; padding: clamp(26px, 3vw, 40px); display: grid; gap: 14px; align-content: end; height: 100%; min-height: 360px; }
.voice--media .voice__who .label { color: var(--mist); }
@media (min-width: 760px) { .voices { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .voices { grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr; } }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding-block: 24px; cursor: pointer; font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 14px; height: 14px; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ''; position: absolute; left: 0; top: 50%; width: 14px; height: 1px; background: currentColor; transition: transform .5s var(--ease); }
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary .pm::after { transform: rotate(0); }
.faq .answer { padding-bottom: 26px; color: var(--muted); max-width: 40em; }
.faq summary:hover { color: var(--accent); }
@media (min-width: 900px) { .faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: start; } .faq-layout .head { position: sticky; top: 120px; } }
.final { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding-block: clamp(140px, 22vw, 260px); }
.final__media { position: absolute; inset: -10% 0; z-index: -2; }
.final__media img { width: 100%; height: 100%; object-fit: cover; }
.final::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 50% 60%, rgba(12,11,10,0.25), rgba(12,11,10,0.85) 75%); }
.final h2 { font-size: clamp(3rem, 12vw, 9rem); line-height: 0.9; letter-spacing: -0.03em; }
.final h2 em { display: block; color: var(--champagne-soft); }
.final .label { margin-top: 30px; display: block; color: var(--mist); }
.final .btn { margin-top: 40px; }
.footer { padding-top: clamp(72px, 10vw, 120px); padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); }
.footer__top { display: grid; gap: 48px; }
.footer__name { font-family: var(--serif); font-size: clamp(2.6rem, 10vw, 7rem); line-height: 0.92; letter-spacing: -0.03em; }
.footer__name em { color: var(--champagne-soft); }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer__cols h4 { font-family: var(--sans); font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 500; }
.footer__cols li + li { margin-top: 8px; }
.footer__cols a, .footer__cols button { color: var(--muted); transition: color .3s; text-align: left; }
.footer__cols a:hover, .footer__cols button:hover { color: var(--fg); }
.footer__bottom { margin-top: clamp(56px, 8vw, 96px); padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--faint); font-size: 0.75rem; }
.footer__bottom a { color: inherit; transition: color .3s; }
.footer__bottom a:hover { color: var(--fg); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.3fr 1fr; align-items: end; } .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.toast { position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); translate: -50% 20px; z-index: 90; padding: 12px 20px; border-radius: var(--radius-pill); font-size: var(--fs-small); color: var(--ivory); opacity: 0; transition: opacity .4s, translate .5s var(--ease); pointer-events: none; max-width: calc(100% - 32px); text-align: center; }
.toast.is-on { opacity: 1; translate: -50% 0; }
.page-head { position: relative; overflow: hidden; isolation: isolate; padding-top: calc(150px + env(safe-area-inset-top, 0px)); padding-bottom: clamp(56px, 8vw, 110px); }
.page-head__media { position: absolute; inset: 0; z-index: -2; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.page-head::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,11,10,.5), rgba(12,11,10,.35) 40%, var(--ink) 100%); }
.page-head__crumb { display: flex; gap: 10px; align-items: center; margin-bottom: 28px; }
.page-head__crumb a { color: var(--mist); }
.page-head__crumb a:hover { color: var(--ivory); }
.page-head h1 { font-size: var(--fs-display); line-height: 0.95; }
.page-head h1 em { color: var(--champagne-soft); }
.page-head .lead { margin-top: 26px; color: var(--mist); }
.page-head__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.keyfacts { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.keyfacts > * { padding: 22px clamp(16px, 2vw, 28px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 8px; align-content: start; }
.keyfacts b { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.15; }
@media (min-width: 900px) { .keyfacts { grid-template-columns: repeat(4, 1fr); } }
.keyfacts--credentials b { font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.keyfacts--credentials > * { padding-block: clamp(26px, 4vw, 44px); gap: 14px; }
.keyfacts--3 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .keyfacts--3 { grid-template-columns: repeat(3, 1fr); } }
.areas { display: grid; gap: 12px; margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: 1px solid var(--line); }
.areas__list { font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.3; }
.prose { display: grid; gap: 22px; }
.prose p { color: var(--muted); max-width: 36em; }
.prose p:first-child { font-size: var(--fs-lead); color: var(--fg); font-weight: 300; line-height: 1.55; }
.grid-items { display: grid; gap: 0; border-top: 1px solid var(--line); }
.grid-items > li { padding-block: 26px; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.grid-items h3 { font-size: 1.6rem; }
.grid-items p { color: var(--muted); max-width: 30em; }
@media (min-width: 760px) { .grid-items { grid-template-columns: repeat(2, 1fr); column-gap: 48px; } }
@media (min-width: 1100px) { .grid-items--3 { grid-template-columns: repeat(3, 1fr); } }
.split { display: grid; gap: clamp(40px, 6vw, 80px); }
@media (min-width: 960px) { .split { grid-template-columns: 0.85fr 1.15fr; align-items: start; } .split > .head { position: sticky; top: 120px; margin-bottom: 0; } }
.levels { display: grid; gap: 0; counter-reset: lv; }
.levels li { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding-block: 22px; border-top: 1px solid var(--line); }
.levels .bars { display: flex; gap: 4px; align-items: end; height: 22px; padding-top: 4px; }
.levels .bars i { width: 5px; background: var(--line); }
.levels .bars i.on { background: var(--accent); }
.levels .bars i:nth-child(1) { height: 25%; } .levels .bars i:nth-child(2) { height: 50%; } .levels .bars i:nth-child(3) { height: 75%; } .levels .bars i:nth-child(4) { height: 100%; }
.levels h3 { font-size: 1.45rem; margin-bottom: 6px; }
.levels p { color: var(--muted); }
.table-wrap { overflow-x: auto; }
.tempo { width: 100%; border-collapse: collapse; }
.tempo td.num { white-space: nowrap; padding-inline: 12px; }
.tempo td + td { padding-left: 14px; }
.tempo--studios td:first-child { font-size: clamp(1.15rem, 2.4vw, 1.6rem); }
.tempo--studios td:last-child { font-size: var(--fs-small); line-height: 1.5; }
.tempo th { text-align: left; font-weight: 500; font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase; color: var(--faint); padding: 0 0 14px; border-bottom: 1px solid var(--line); }
.tempo td { padding: 20px 0; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.tempo td:first-child { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); }
.tempo td.num { font-size: 1.05rem; }
.tempo .unit { color: var(--faint); font-size: var(--fs-small); margin-left: 6px; }
.tempo th:last-child, .tempo td:last-child { text-align: right; color: var(--muted); }
.locations { display: grid; gap: 12px; }
.loc { padding: 24px; border: 1px solid var(--line); display: grid; gap: 6px; }
.loc h3 { font-size: 1.5rem; }
.loc p { color: var(--muted); font-size: var(--fs-small); }
.loc .days { margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.loc .days span { font-size: .625rem; letter-spacing: .14em; text-transform: uppercase; padding: 4px 8px; border: 1px solid var(--line); color: var(--faint); }
.loc .days span.on { color: var(--fg); border-color: var(--fg); }
@media (min-width: 760px) { .locations { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .locations { grid-template-columns: repeat(4, 1fr); } }
.band { display: grid; gap: 28px; align-items: center; padding: clamp(32px, 5vw, 64px); }
.band h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
@media (min-width: 900px) { .band { grid-template-columns: 1fr auto; } }
.tz { padding: clamp(24px, 3vw, 40px); display: grid; gap: 26px; }
.tz__clocks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tz__clock { display: grid; gap: 6px; }
.tz__clock b { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; font-variant-numeric: tabular-nums lining-nums; }
.tz__slots { border-top: 1px solid var(--glass-line); }
.tz__slots li { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding-block: 12px; border-bottom: 1px solid var(--glass-line); font-size: var(--fs-small); }
.tz__slots li span:last-child { color: var(--champagne-soft); font-variant-numeric: tabular-nums; }
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); counter-reset: st; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding-block: 22px; border-bottom: 1px solid var(--line); counter-increment: st; }
.steps li::before { content: counter(st, decimal-leading-zero); font-size: var(--fs-small); color: var(--accent); font-variant-numeric: tabular-nums; padding-top: 6px; }
.steps h3 { font-size: 1.4rem; margin-bottom: 4px; }
.steps p { color: var(--muted); }
@media (min-width: 960px) { .steps { grid-template-columns: repeat(4, 1fr); border-top: 0; column-gap: 28px; } .steps li { grid-template-columns: 1fr; border-top: 1px solid var(--line); border-bottom: 0; } }
.sched__bar { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.sched__week { display: flex; align-items: center; gap: 10px; }
.sched__week .range { min-width: 150px; text-align: center; font-family: var(--serif); font-size: 1.2rem; }
.legend-dot { width: 9px; height: 9px; display: inline-block; flex: none; }
.t-private .legend-dot, .legend-dot.t-private { background: var(--ivory); }
.t-group .legend-dot, .legend-dot.t-group { background: var(--champagne); border-radius: 50%; }
.t-online .legend-dot, .legend-dot.t-online { border: 1.5px solid var(--online); border-radius: 50%; }
.sched__grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.day { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding-block: 16px; border-bottom: 1px solid var(--line); }
.day__head { display: grid; align-content: start; gap: 2px; }
.day__head b { font-family: var(--serif); font-weight: 400; font-size: 2rem; line-height: 1; font-variant-numeric: lining-nums; }
.day.is-today .day__head b { color: var(--champagne); }
.day__events { display: grid; gap: 8px; }
.day__empty { color: var(--faint); font-size: var(--fs-small); padding-top: 8px; }
.ev { display: grid; grid-template-columns: auto 1fr; gap: 3px 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); text-align: left; width: 100%; transition: border-color .4s, background-color .4s; }
.ev:hover { border-color: rgba(241,235,225,.4); background: rgba(241,235,225,.03); }
.ev .t { font-size: .75rem; font-variant-numeric: tabular-nums; color: var(--muted); grid-column: 2; }
.ev .n { grid-column: 2; font-size: .95rem; line-height: 1.3; }
.ev .l { grid-column: 2; font-size: .75rem; color: var(--faint); }
.ev .legend-dot { grid-row: 1 / span 3; align-self: start; margin-top: 5px; }
.ev.t-group { border-color: rgba(198,173,133,.45); background: rgba(198,173,133,.06); }
.ev.t-online { border-style: dashed; }
@media (min-width: 1000px) {
.sched__grid { grid-template-columns: repeat(7, 1fr); border-top: 0; border-left: 1px solid var(--line); }
.day { grid-template-columns: 1fr; border: 1px solid var(--line); border-left: 0; min-height: 360px; padding: 16px 12px; align-content: start; }
.day__head { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
}
.book { padding-top: calc(120px + env(safe-area-inset-top, 0px)); padding-bottom: clamp(80px, 10vw, 140px); min-height: 100svh; position: relative; isolation: isolate; }
.book__bg { position: fixed; inset: 0; z-index: -1; }
.book__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: blur(2px); }
.book__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,10,.7), rgba(12,11,10,.92)); }
.book__layout { display: grid; gap: 24px; }
@media (min-width: 1040px) { .book__layout { grid-template-columns: 1fr 360px; align-items: start; gap: 40px; } .summary { position: sticky; top: 104px; } }
.book__title { font-size: clamp(2.4rem, 7vw, 4.4rem); margin-bottom: 10px; }
.progress { display: flex; gap: 4px; margin: 28px 0 10px; }
.progress i { flex: 1; height: 2px; background: rgba(241,235,225,.14); transition: background-color .6s var(--ease); }
.progress i.done { background: var(--champagne); }
.progress-label { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.panel { padding: clamp(22px, 3.5vw, 44px); }
.step-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.step-sub { color: var(--mist); margin-bottom: 28px; font-size: var(--fs-small); }
.options { display: grid; gap: 10px; }
@media (min-width: 700px) { .options--3 { grid-template-columns: repeat(3, 1fr); } .options--2 { grid-template-columns: repeat(2, 1fr); } }
.option {
position: relative; display: grid; gap: 6px; align-content: start; text-align: left;
padding: 20px; border: 1px solid rgba(241,235,225,.16);
transition: border-color .4s var(--ease), background-color .4s var(--ease);
}
.option:hover { border-color: rgba(241,235,225,.45); }
.option[aria-pressed='true'], .option[aria-checked='true'] { border-color: var(--champagne); background: rgba(198,173,133,.08); }
.option[aria-pressed='true']::after, .option[aria-checked='true']::after { content: ''; position: absolute; top: 18px; right: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); }
.option .o-title { font-family: var(--serif); font-size: 1.4rem; line-height: 1.15; padding-right: 20px; }
.option .o-meta { font-size: var(--fs-small); color: var(--mist); }
.option .o-price { margin-top: 8px; font-family: var(--serif); font-size: 1.25rem; }
.option[disabled] { opacity: .4; cursor: not-allowed; }
.cal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cal__head b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dow { text-align: center; font-size: .625rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); padding-bottom: 8px; }
.cal__day { aspect-ratio: 1; display: grid; place-items: center; position: relative; font-variant-numeric: tabular-nums; font-size: .95rem; border: 1px solid transparent; transition: all .3s var(--ease); max-width: 100%; }
.cal__day[disabled] { color: rgba(241,235,225,.22); cursor: default; }
.cal__day:not([disabled])::after { content: ''; position: absolute; bottom: 18%; width: 3px; height: 3px; border-radius: 50%; background: var(--champagne); }
.cal__day:not([disabled]):hover { border-color: rgba(241,235,225,.4); }
.cal__day[aria-pressed='true'] { background: var(--ivory); color: var(--ink); }
.cal__day[aria-pressed='true']::after { background: var(--ink); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 8px; }
.slot { padding: 14px 10px; border: 1px solid rgba(241,235,225,.16); display: grid; gap: 2px; text-align: center; transition: all .3s var(--ease); }
.slot:hover { border-color: rgba(241,235,225,.45); }
.slot b { font-weight: 400; font-size: 1rem; font-variant-numeric: tabular-nums; }
.slot span { font-size: .6875rem; color: var(--ash); }
.slot[aria-pressed='true'] { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.slot[aria-pressed='true'] span { color: #5b554d; }
.tz-note { margin-top: 16px; font-size: var(--fs-small); color: var(--mist); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.form { display: grid; gap: 18px; }
@media (min-width: 700px) { .form { grid-template-columns: 1fr 1fr; } .form .full { grid-column: 1 / -1; } }
.field { display: grid; gap: 8px; }
.field label { font-size: var(--fs-label); letter-spacing: .2em; text-transform: uppercase; color: var(--mist); }
.field input, .field select, .field textarea {
width: 100%; min-height: 50px; padding: 12px 0; background: transparent;
border: 0; border-bottom: 1px solid rgba(241,235,225,.22); border-radius: 0;
font-size: 1rem; transition: border-color .3s;
}
.field textarea { min-height: 90px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--mist) 50%), linear-gradient(135deg, var(--mist) 50%, transparent 50%); background-position: calc(100% - 10px) 55%, calc(100% - 5px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--champagne); }
.field .err { font-size: .75rem; color: #e0a98f; min-height: 1em; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-small); color: var(--mist); }
.check input { margin-top: 4px; accent-color: var(--champagne); width: 16px; height: 16px; flex: none; }
.pay { display: grid; gap: 10px; }
.pay-card { margin-top: 22px; padding: 18px; border: 1px dashed rgba(241,235,225,.22); display: grid; gap: 6px; font-size: var(--fs-small); color: var(--mist); }
.pay-card b { color: var(--ivory); font-weight: 400; }
.step-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.step-actions .btn--solid { min-width: 180px; }
@media (max-width: 599px) { .step-actions .btn--solid { flex: 1; } }
.summary { padding: 26px; display: grid; gap: 18px; }
.summary dl { display: grid; gap: 0; }
.summary dl > div { display: flex; justify-content: space-between; gap: 16px; padding-block: 11px; border-bottom: 1px solid var(--glass-line); font-size: var(--fs-small); }
.summary dt { color: var(--ash); }
.summary dd { text-align: right; }
.summary .total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.summary .total b { font-family: var(--serif); font-weight: 400; font-size: 2rem; }
.summary .pending { color: var(--ash); font-style: italic; }
.confirm { text-align: center; display: grid; gap: 18px; justify-items: center; padding-block: clamp(20px, 4vw, 40px); }
.confirm__mark { width: 72px; height: 72px; border-radius: 50%; border: 1px solid var(--champagne); display: grid; place-items: center; }
.confirm__mark svg { width: 26px; stroke: var(--champagne); fill: none; stroke-width: 1.2; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw 1.2s .3s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.confirm h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.confirm .ref { font-variant-numeric: tabular-nums; letter-spacing: .2em; }
.confirm dl { width: 100%; max-width: 440px; text-align: left; }
.dev-note { margin-top: 12px; font-size: .75rem; color: var(--ash); max-width: 44em; }
@media (max-width: 599px) {
.tempo--studios thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tempo--studios tr { display: grid; gap: 4px; padding-block: 20px; border-bottom: 1px solid var(--line); }
.tempo--studios td { display: block; padding: 0; border: 0; text-align: left !important; }
.tempo--studios td + td { padding-left: 0; }
.tempo--studios td:nth-child(2) { font-size: 1rem; }
}
.policy-note { padding: 18px 20px; border: 1px dashed rgba(241,235,225,.22); display: grid; gap: 8px; font-size: var(--fs-small); line-height: 1.6; color: var(--mist); }
.policy-note .label { margin-bottom: 2px; }
.check a, .policy-line a { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(241,235,225,.35); }
.policy-line { margin-top: 14px; font-size: var(--fs-small); color: var(--mist); line-height: 1.6; }
.policy-text { max-width: 40em; display: grid; gap: 18px; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem); line-height: 1.75; color: var(--mist); }
.policy-page__actions { margin-top: clamp(32px, 5vw, 48px); }
.art { aspect-ratio: var(--ar-m, var(--ar)); background: var(--smoke); }
.art > img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos-m, var(--pos, 50% 50%)); }
@media (min-width: 900px) {
.art { aspect-ratio: var(--ar); }
.art > img { object-position: var(--pos, 50% 50%); }
}
.frame.art--fill { aspect-ratio: auto; width: 100%; height: 100%; background: transparent; }
.split__media { pointer-events: none; }
@media (max-width: 899px) {
.split__media { position: relative !important; inset: auto !important; width: 100% !important; }
.tone-dark .split__media, .hero .split__media {
-webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
}
@media (min-width: 900px) {
.tone-dark .split__media, .hero .split__media {
-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%), linear-gradient(180deg, #000 78%, transparent 100%);
-webkit-mask-composite: source-in;
mask-image: linear-gradient(90deg, transparent 0%, #000 26%), linear-gradient(180deg, #000 78%, transparent 100%);
mask-composite: intersect;
}
}
.hero__media { inset: 0; }
.hero__media .art > img, .hero__media video { animation: none; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { background: linear-gradient(180deg, rgba(12, 11, 10, 0.5) 0%, rgba(12, 11, 10, 0) 16%, rgba(12, 11, 10, 0) 72%, rgba(12, 11, 10, 0.55) 100%); }
.hero__chip { justify-self: start; }
@media (max-width: 899px) {
.hero { display: block; min-height: 0; }
.hero__media { height: 54svh; min-height: 380px; z-index: 0; }
.hero::after { display: none; }
.hero__inner { position: relative; z-index: 1; margin-top: -92px; padding-top: 0; gap: 20px; }
.hero__chip { position: static; }
}
@media (min-width: 900px) {
.hero__media { left: auto; width: 64%; }
.hero__title { font-size: min(var(--fs-hero), 10.5vw); }
.hero__inner { grid-template-columns: minmax(0, 1fr); }
.hero__meta, .hero__ctas { max-width: 44vw; }
.hero__chip { position: absolute; top: calc(92px + env(safe-area-inset-top, 0px)); right: var(--gutter); left: auto; }
}
.page-head.has-photo::after { display: none; }
.page-head.has-photo .page-head__media img { opacity: 1; }
@media (max-width: 899px) {
.page-head.has-photo { padding-top: 0; }
.page-head.has-photo .page-head__media { height: 58svh; min-height: 360px; z-index: 0; }
.page-head.has-photo .page-head__text { position: relative; z-index: 1; }
.page-head.tone-dark .page-head__text { margin-top: -64px; }
.page-head.tone-light .page-head__text { padding-top: 36px; }
.page-head.tone-light { padding-top: calc(72px + env(safe-area-inset-top, 0px)); }
}
@media (min-width: 900px) {
.page-head.has-photo { min-height: clamp(620px, 86vh, 880px); display: flex; align-items: flex-end; }
.page-head.has-photo .page-head__media { left: auto; width: 56%; }
.page-head.has-photo .page-head__text > * { max-width: min(600px, 40vw); }
.page-head.tone-light .page-head__media { width: 50%; }
}
.final { text-align: left; padding-block: 0; }
.final::after { display: none; }
.final__media { inset: 0; }
.final__text { position: relative; z-index: 1; }
.final .btn { margin-top: 36px; }
@media (max-width: 899px) {
.final__media { height: 60svh; min-height: 380px; }
.final__text { padding-block: 40px clamp(80px, 14vw, 120px); }
.final.tone-dark .final__text { margin-top: -64px; }
}
@media (min-width: 900px) {
.final { min-height: clamp(560px, 82vh, 820px); display: flex; align-items: center; }
.final__media { left: auto; width: 46%; }
.final__text { padding-block: clamp(96px, 12vw, 160px); }
.final__text > * { max-width: 46vw; }
.final h2 { font-size: clamp(3rem, 6.6vw, 6.8rem); }
}
.spread { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.spread__media { position: relative; }
.spread__text { display: grid; gap: 24px; align-content: center; max-width: 36em; }
.spread-wide { margin-block: clamp(72px, 11vw, 150px); }
.pull { font-family: var(--serif); font-size: clamp(2rem, 4.4vw, 3.9rem); line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
.pull em { color: var(--accent); }
.pull--sm { font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.15; }
@media (min-width: 900px) {
.spread { grid-template-columns: 1fr 1fr; gap: clamp(56px, 8vw, 128px); }
.spread--flip { grid-template-columns: 1fr 1fr; }
.spread--flip .spread__media { order: 2; }
.spread--flip .spread__text { justify-self: end; }
}
.conn__offer { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-block: 16px; border-block: 1px solid var(--line); }
.conn__offer b { font-family: var(--serif); font-weight: 400; font-size: 2rem; }
.split__aside { display: grid; gap: 32px; align-content: start; }
.split__aside .head { margin-bottom: 0; }
.aside-photo { max-width: 420px; }
@media (min-width: 960px) { .split > .split__aside { position: sticky; top: 120px; } }
.gallery--editorial { columns: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: dense; gap: 10px; align-items: center; }
.gallery--editorial .gallery__item { margin: 0; }
.gallery--editorial .g--wide, .gallery--editorial .g--major { grid-column: span 2; }
@media (min-width: 900px) {
.gallery--editorial { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); row-gap: clamp(28px, 4vw, 56px); }
.gallery--editorial .g--wide { grid-column: span 12; }
.gallery--editorial .g--major { grid-column: span 7; }
.gallery--editorial .g--minor { grid-column: span 5; }
.gallery--editorial .g--third { grid-column: span 4; }
}
.gallery__item { display: block; }
.spread .gallery__item, .spread-wide .gallery__item { margin: 0; width: 100%; }
.lightbox__stage .lb-photo { height: auto; width: auto; max-width: 100%; aspect-ratio: auto; background: none; transform: none; }
.lightbox__stage .lb-photo > img { width: auto; height: auto; max-width: 100%; max-height: calc(100svh - 190px); object-fit: contain; }
.book__bg .frame { height: 100%; }
.nav.is-solid { background: rgba(12, 11, 10, 0.72); }
.gallery--editorial .gallery__item .frame::after { display: none; }
.gallery--editorial .gallery__cap { position: static; padding-top: 10px; color: var(--muted); align-items: baseline; }
.gallery--editorial .gallery__cap .t { font-size: 1rem; color: var(--fg); }
@media (max-width: 899px) {
.gallery--editorial .g--full-m { grid-column: span 2; }
.gallery--editorial .gallery__cap .d { display: none; }
}
.film { position: relative; }
.film > .film__poster, .film > .film__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos-m, var(--pos, 50% 50%)); }
.film > .film__video { opacity: 0; transition: opacity 1.2s var(--ease); pointer-events: none; }
.film.is-playing > .film__video { opacity: 1; }
@media (min-width: 900px) { .film > .film__poster, .film > .film__video { object-position: var(--pos, 50% 50%); } }
.film video::-webkit-media-controls, .film video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.areas--film { grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: end; }
.areas__film { width: 58%; max-width: 280px; }
.areas__text { display: grid; gap: 14px; }
@media (min-width: 760px) {
.areas--film { grid-template-columns: minmax(200px, 260px) 1fr; gap: clamp(32px, 5vw, 64px); }
.areas__film { width: 100%; }
}
.group-layout { display: grid; gap: 44px; }
.group-film { width: 78%; max-width: 360px; }
@media (min-width: 960px) {
.group-layout { grid-template-columns: minmax(0, 1fr) clamp(260px, 26vw, 360px); gap: clamp(40px, 5vw, 72px); align-items: start; }
.group-film { width: 100%; position: sticky; top: 110px; }
.group-layout .intensive { grid-template-columns: 130px minmax(0, 1fr); }
.group-layout .intensive__side { grid-column: 2; justify-content: flex-start; gap: 18px 36px; }
}
.film-band { position: relative; margin-inline: calc(50% - 50vw); width: 100vw; margin-top: clamp(40px, 6vw, 80px); }
.film-band__ambient { display: none; }
.film-band__main .film { aspect-ratio: 9 / 16; }
.film-band__cap { display: grid; gap: 22px; max-width: 36em; padding: 32px var(--gutter) 0; }
@media (min-width: 900px) {
.film-band { --band-h: min(92vh, 980px); height: var(--band-h); min-height: 640px; overflow: hidden; isolation: isolate; }
.film-band__ambient { display: block; position: absolute; inset: 0; z-index: -1; }
.film-band__ambient img { width: 100%; height: 100%; object-fit: cover; filter: blur(56px) saturate(1.15); transform: scale(1.3); opacity: 0.78; }
.film-band__ambient { -webkit-mask-image: radial-gradient(ellipse 58% 75% at 50% 50%, #000 35%, transparent 92%); mask-image: radial-gradient(ellipse 58% 75% at 50% 50%, #000 35%, transparent 92%); }
.film-band__main { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); aspect-ratio: 9 / 16; }
.film-band__main .film { height: 100%; aspect-ratio: auto; }
.film-band__cap { position: absolute; left: var(--gutter); bottom: clamp(40px, 6vh, 72px); padding: 0; max-width: min(34em, calc((100vw - var(--band-h) * 9 / 16) / 2 - var(--gutter) - 40px)); }
}
@media (min-width: 900px) and (max-width: 1199px) {
.film-band { height: auto; min-height: 0; overflow: visible; }
.film-band__main { position: relative; left: auto; transform: none; height: min(88vh, 900px); margin-inline: auto; }
.film-band__cap { position: static; max-width: 36em; padding: 36px var(--gutter) 0; }
}
@media (prefers-reduced-motion: reduce) { .film > .film__video { display: none; } }
.standard__grid { display: grid; gap: clamp(36px, 6vw, 64px); }
.standard__film { margin-inline: calc(var(--gutter) * -1); }
.standard__film figcaption { display: flex; justify-content: space-between; gap: 16px; padding: 14px var(--gutter) 0; }
.standard__text { display: grid; gap: 24px; align-content: center; }
.disciplines { display: grid; border-top: 1px solid var(--line); margin-top: 8px; }
.discipline { display: grid; gap: 10px; padding-block: 24px; border-bottom: 1px solid var(--line); }
.discipline dt { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; }
.discipline__name { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.1; }
.discipline dd { display: grid; gap: 8px; }
.discipline__dances { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--accent); }
.standard__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 8px; }
@media (min-width: 900px) {
.standard__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(56px, 7vw, 120px); align-items: center; }
.standard__film { margin-inline: 0; width: min(100%, calc(86vh * 2 / 3)); justify-self: center; }
.standard__film figcaption { padding-inline: 0; }
.standard__text { max-width: 34em; }
}
.duo { display: grid; gap: 28px; }
.duo__item { display: grid; gap: 10px; width: 58%; max-width: 280px; }
.duo__item:nth-child(2) { justify-self: end; }
.duo__offer { display: grid; border-top: 1px solid var(--line); }
.duo__offer > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-block: 12px; border-bottom: 1px solid var(--line); }
.duo__offer dt { font-family: var(--serif); font-size: 1.15rem; }
.duo__offer dd { font-size: var(--fs-label); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-align: right; }
.duo__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 6px; }
@media (min-width: 760px) {
.areas--duo { grid-template-columns: minmax(0, 1fr); }
.duo { grid-template-columns: repeat(2, minmax(0, 260px)); gap: 20px; }
.duo__item { width: 100%; }
.duo__item:nth-child(2) { justify-self: start; }
}
@media (min-width: 1100px) {
.areas--duo { grid-template-columns: auto minmax(0, 1fr); align-items: end; }
}
@media (max-width: 899px) {
#disciplines { padding-top: clamp(40px, 10vw, 56px); }
.standard__film { display: flex; flex-direction: column; }
.standard__film figcaption { padding: 0 var(--gutter) 14px; }
}
@media (min-width: 900px) {
.standard__film { display: flex; flex-direction: column-reverse; }
.standard__film figcaption { padding-top: 14px; }
}
:root {
--noir-black: #0c0b0a;
--noir-deep: #100d0b;
--noir-espresso: #17120e;
--noir-charcoal: #141311;
--noir-line: rgba(241, 235, 225, 0.07);
}
.theme-ivory, .theme-paper {
--bg: var(--noir-espresso); --fg: var(--ivory); --muted: var(--mist); --faint: #958e84;
--line: rgba(241, 235, 225, 0.12); --accent: var(--champagne);
color-scheme: dark;
box-shadow: inset 0 1px 0 var(--noir-line);
}
.theme-paper { --bg: var(--noir-charcoal); }
#maria { --bg: var(--noir-espresso); }
#experience { --bg: var(--noir-charcoal); }
#coaching { --bg: var(--noir-espresso); }
#disciplines { background: var(--noir-deep); box-shadow: inset 0 1px 0 var(--noir-line); }
#latin { --bg: var(--noir-espresso); }
#faq { --bg: var(--noir-charcoal); }
.footer { background: var(--noir-deep); }
main > section.theme-ivory:nth-of-type(even) { --bg: var(--noir-charcoal); }
#experience .keyfacts--credentials b { color: var(--champagne-soft); }
.standard__film .film, .duo__item .film, .areas__film .film { box-shadow: 0 0 0 1px rgba(241, 235, 225, 0.08); }
.theme-ivory .btn--solid, .theme-paper .btn--solid { background: var(--ivory); color: var(--ink); }
.theme-ivory .btn--solid:hover, .theme-paper .btn--solid:hover { background: var(--champagne); }
@media (max-width: 759px) {
:root { --space-section: 60px; }
.head { margin-bottom: 36px; }
.spread-wide { margin-block: 48px 40px; }
.film-band { margin-top: 32px; }
.areas { margin-top: 44px; }
.final__text { padding-bottom: 72px; }
#maria, #coaching { padding-top: 36px; }
.pricing-foot { margin-top: 20px; }
}
#maria .about__figure .art,
#coaching .spread__media .art,
#artistry > .wrap > .spread:first-child .spread__media .art,
.standard__film .film {
-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000 7%);
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000 7%);
}
@media (max-width: 899px) {
.film-band__main .film,
.final__media {
-webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, #000 6%);
mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, #000 6%);
}
}
@media (max-width: 759px) {
.page-head { padding-bottom: 40px; }
.section:has(> .wrap.about) { padding-top: 36px; }
}
:root { --reveal-ease: cubic-bezier(0.19, 0.8, 0.26, 1); --reveal-dur: 1.1s; }
.reveal { transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease); }
.js .reveal:not(.is-in) { opacity: 0; transform: translate3d(0, 26px, 0); }
.js .reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text):not(.is-in) { opacity: 1; transform: none; }
.reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text) > * {
transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease);
}
.js .reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text):not(.is-in) > * { opacity: 0; transform: translate3d(0, 22px, 0); }
.reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text) > :nth-child(2) { transition-delay: 110ms; }
.reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text) > :nth-child(3) { transition-delay: 220ms; }
.reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text) > :nth-child(4) { transition-delay: 330ms; }
.reveal:is(.head, .spread__text, .standard__text, .about__text, .film-band__cap, .areas__text) > :nth-child(n+5) { transition-delay: 440ms; }
.reveal:is(figure, .service, .spread-wide, .film-band) { --reveal-dur: 1.25s; }
@media (prefers-reduced-motion: reduce) {
.js .reveal:not(.is-in), .js .reveal:not(.is-in) > * { opacity: 1 !important; transform: none !important; }
}
.art.m-wait { transition: opacity 1.3s var(--reveal-ease), transform 1.3s var(--reveal-ease); }
.art.m-wait:not(.is-shown) { opacity: 0; transform: translate3d(0, 24px, 0); }
.art.m-wait.art--fill:not(.is-shown) { transform: translate3d(0, 14px, 0); }
.frame.art { background: transparent; }
.js .reveal:has(.art):not(.is-in) { transform: none; }
.nav { animation: noirFade 1s .1s var(--reveal-ease) both; }
.hero .art.m-wait { transition: opacity 1.6s var(--reveal-ease), transform 1.9s var(--reveal-ease); }
.hero .art.m-wait:not(.is-shown) { opacity: 0; transform: scale(1.02); }
.hero__chip { animation: noirRise 1s .35s var(--reveal-ease) both; }
.hero__title span > b { animation: rise 1.4s var(--reveal-ease) .5s both, noirFade 1.2s var(--reveal-ease) .5s both; }
.hero__title span:nth-child(2) > b { animation-delay: .64s, .64s; }
.hero__meta { animation: none; }
.hero__roles { animation: noirRise 1s .95s var(--reveal-ease) both; }
.hero__where { animation: noirRise 1s 1.1s var(--reveal-ease) both; }
.hero__ctas { animation: noirRise 1s 1.25s var(--reveal-ease) both; }
.hero__rail { animation: noirFade 1s 1.45s var(--reveal-ease) both; }
.hero-done .hero :is(.hero__chip, .hero__title span > b, .hero__roles, .hero__where, .hero__ctas, .hero__rail),
.hero-done .nav { animation: none; }
@keyframes noirFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes noirRise { from { opacity: 0; transform: translate3d(0, 20px, 0); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
.art.m-wait:not(.is-shown) { transform: none; }
.nav, .hero :is(.hero__chip, .hero__title span > b, .hero__roles, .hero__where, .hero__ctas, .hero__rail) { animation: none !important; }
}
.hero__title span:nth-child(2) > b { color: var(--champagne-soft); }
