/* Room of Three — styles.css — 2026-09-16 */
:root {
  --cream: #f1ebe1; --sand: #e3d9c8; --olive: #33402f; --olive-2: #1f281d;
  --ink: #1c1a17; --ink-2: rgba(28, 26, 23, 0.64); --plum: #7a5566;
  --paper: rgba(241, 235, 225, 0.72); --line: rgba(28, 26, 23, 0.12); --line-light: rgba(241, 235, 225, 0.16);
  --serif: "Fraunces", Georgia, serif; --sans: "Karla", system-ui, sans-serif;
  --pad: clamp(20px, 4vw, 64px); --nav-h: 76px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 400 15px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -0.02em; line-height: 1; font-variation-settings: "opsz" 144, "SOFT" 60; }
.serif em { font-style: italic; font-weight: 300; color: var(--plum); }
.dark .serif em { color: var(--sand); }
.h-big { font-size: clamp(44px, 6.4vw, 84px); }
.h-mid { font-size: clamp(34px, 4.4vw, 60px); }
.eyebrow { font-size: 13px; color: var(--ink-2); }
.dark .eyebrow { color: var(--paper); }
.btn { display: inline-flex; align-items: center; height: 46px; padding: 0 26px; border-radius: 999px; background: var(--ink); color: var(--cream); font-size: 14px; letter-spacing: 0.01em; transition: background 0.2s, color 0.2s; }
.btn:hover { background: var(--olive); }
.btn-ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1px currentColor; }
.btn-ghost:hover { background: var(--cream); color: var(--ink); }
.dark { background: var(--olive); color: var(--cream); }
.darker { background: var(--olive-2); color: var(--cream); }

/* nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 30; height: var(--nav-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 var(--pad); background: linear-gradient(180deg, rgba(28, 26, 23, 0.55), rgba(28, 26, 23, 0)); color: var(--cream); transition: background 0.3s, color 0.3s; }
.nav.is-solid { background: var(--cream); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.brand { font-family: var(--serif); font-weight: 300; font-size: 26px; letter-spacing: -0.02em; font-variation-settings: "opsz" 48; justify-self: start; }
.nav-links { display: flex; gap: 30px; font-size: 14px; }
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a[aria-current] { opacity: 1; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.nav-right { justify-self: end; font-size: 14px; }
.nav-toggle { display: none; font-size: 14px; }
.sheet { position: fixed; inset: 0; z-index: 40; background: var(--cream); color: var(--ink); display: grid; grid-template-rows: var(--nav-h) 1fr auto; padding: 0 var(--pad) 32px; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; }
.sheet nav { align-self: center; display: grid; gap: 8px; }
.sheet nav a { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 10vw, 56px); letter-spacing: -0.02em; }
.sheet p { font-size: 13px; color: var(--ink-2); }

/* hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center; overflow: hidden; isolation: isolate; color: var(--cream); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; animation: drift 26s ease-in-out infinite alternate; transform-origin: 50% 50%; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28, 26, 23, 0.2), rgba(28, 26, 23, 0.35)); }
@keyframes drift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-copy { text-align: center; display: grid; justify-items: center; gap: 22px; padding: 0 var(--pad); }
.hero-copy h1 { font-size: clamp(40px, 6vw, 80px); max-width: 14ch; text-wrap: balance; }
.hero .serif em { color: var(--sand); }
.hero .btn { background: var(--cream); color: var(--ink); }
.hero .btn:hover { background: var(--sand); }

/* press strip */
.press { display: flex; gap: clamp(24px, 5vw, 80px); justify-content: center; flex-wrap: wrap; padding: 40px var(--pad); border-bottom: 1px solid var(--line); font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 17px; color: var(--ink-2); }
.press span b { display: block; font: 400 11px/1.4 var(--sans); font-style: normal; letter-spacing: 0.02em; margin-top: 4px; }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; padding: clamp(80px, 10vw, 150px) var(--pad); }
.split figure { aspect-ratio: 4 / 5; overflow: hidden; }
.split figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1); }
.split figure:hover img { transform: scale(1.03); }
.split-copy { display: grid; gap: 24px; max-width: 520px; }
.split-copy p { font-size: 16px; color: var(--ink-2); }
.dark .split-copy p, .darker .split-copy p { color: var(--paper); }
.split-copy .btn { justify-self: start; }
.split.is-flipped figure { order: -1; }

/* reflections */
.reflections { padding: clamp(80px, 10vw, 140px) var(--pad); text-align: center; display: grid; justify-items: center; gap: 28px; }
.reflections .eyebrow { font-size: 12px; }
.quote { max-width: 820px; min-height: 8.5em; display: grid; gap: 22px; }
.quote p { font-size: clamp(20px, 2.3vw, 30px); line-height: 1.35; letter-spacing: -0.01em; font-weight: 400; }
.quote cite { font-style: normal; font-size: 14px; color: var(--paper); }
.quote-nav { display: flex; gap: 12px; }
.quote-nav button { width: 64px; height: 34px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-light); display: grid; place-items: center; transition: background 0.2s; }
.quote-nav button:hover { background: rgba(241, 235, 225, 0.12); }
.quote-nav svg { width: 22px; height: 10px; }

/* footer */
.footer { padding: clamp(64px, 8vw, 110px) var(--pad) 28px; display: grid; gap: 64px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; align-items: start; }
.footer-top .serif { font-size: clamp(40px, 5vw, 72px); }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--paper); }
.footer-bottom span { display: inline-flex; gap: 18px; }

/* inner pages */
.page-head { padding: calc(var(--nav-h) + clamp(56px, 8vw, 110px)) var(--pad) clamp(40px, 5vw, 72px); display: grid; gap: 20px; max-width: 900px; }
.page-head p { font-size: 17px; color: var(--ink-2); max-width: 52ch; }
.classes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 var(--pad) clamp(80px, 10vw, 140px); }
.class { display: grid; gap: 14px; }
.class figure { aspect-ratio: 4 / 5; overflow: hidden; }
.class figure img { width: 100%; height: 100%; object-fit: cover; }
.class h2 { font-size: clamp(26px, 2.6vw, 34px); }
.class p { font-size: 14px; color: var(--ink-2); }
.class .price { font-size: 14px; color: var(--ink); }
.prices { padding: clamp(64px, 8vw, 110px) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prices table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prices td { padding: 14px 0; border-top: 1px solid var(--line-light); }
.prices td:last-child { text-align: right; }
.prices tr:last-child td { border-bottom: 1px solid var(--line-light); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 var(--pad) clamp(80px, 10vw, 140px); }
.team figure { aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 14px; }
.team figure img { width: 100%; height: 100%; object-fit: cover; }
.team h3 { font-size: 22px; font-weight: 300; font-family: var(--serif); }
.team p { font-size: 14px; color: var(--ink-2); margin-top: 6px; }
.timetable { padding: 0 var(--pad) clamp(80px, 10vw, 140px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.timetable table { width: 100%; border-collapse: collapse; font-size: 14px; }
.timetable th { text-align: left; font-weight: 400; font-size: 12px; color: var(--ink-2); padding: 0 0 10px; }
.timetable td { padding: 12px 8px 12px 0; border-top: 1px solid var(--line); vertical-align: top; }
.timetable td small { display: block; color: var(--ink-2); font-size: 12px; }
.tag { display: inline-block; padding: 3px 8px; border-radius: 999px; background: var(--sand); font-size: 11px; }
.form { display: grid; gap: 14px; background: var(--sand); padding: 28px; border-radius: 4px; }
.form h2 { font-size: 26px; }
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--ink-2); }
.form input, .form select, .form textarea { font: inherit; color: var(--ink); background: var(--cream); border: 1px solid var(--line); padding: 11px 12px; border-radius: 3px; }
.form textarea { min-height: 110px; resize: vertical; }
.form .btn { justify-self: start; margin-top: 6px; }
.form-status { font-size: 13px; color: var(--plum); min-height: 1em; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 0 var(--pad) clamp(80px, 10vw, 140px); align-items: start; }
.contact dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 28px; font-size: 15px; }
.contact dt { color: var(--ink-2); font-size: 13px; padding-top: 2px; }
.contact dd { margin: 0; }
.contact figure { aspect-ratio: 4 / 5; overflow: hidden; }
.contact figure img { width: 100%; height: 100%; object-fit: cover; }

/* demo note */
.demo-note { position: fixed; left: 12px; bottom: 12px; z-index: 50; padding: 6px 10px; border-radius: 999px; background: rgba(28, 26, 23, 0.55); color: rgba(241, 235, 225, 0.7); font: 400 11px/1 var(--sans); backdrop-filter: blur(6px); }
.demo-note:hover { color: var(--cream); }

@media (prefers-reduced-motion: reduce) { .hero img { animation: none; } * { transition-duration: 0.001s !important; } html { scroll-behavior: auto; } }
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: inline-block; justify-self: end; }
  .split, .prices, .timetable, .contact { grid-template-columns: 1fr; }
  .split figure { aspect-ratio: 4 / 3; }
  .split.is-flipped figure { order: 0; }
  .classes, .team { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .quote { min-height: 0; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .press { gap: 20px; }
}
