:root {
  --ink: #1c1916;
  --ink-soft: #6b635a;
  --muted: #6b635a;
  --paper: #f6f1e8;
  --card: #fffdf8;
  --line: #e4d9c8;
  --accent: #9a7b3c;
  --accent-2: #c4a574;
  --accent-soft: #f3ebe0;
  --online: #6b635a;
  --video: #9a7b3c;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(40, 30, 10, 0.05);
  --shadow-hover: 0 16px 40px rgba(40, 30, 10, 0.1);
  --font: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  --display: "Iowan Old Style", Georgia, serif;
}
body { font-family: var(--font); background: var(--paper); color: var(--ink); }
.bg {
  background: var(--paper);
}
main { max-width: 1120px; }
.hero-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  margin: 0 0 1.1rem;
  min-height: 280px;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  padding: 0;
  background: #1a1408;
  border: 0;
  box-shadow: none;
}
.hero-copy {
  padding: 28px 22px 26px;
  color: #fff;
}
.hero-copy .eyebrow { color: #c4a574; letter-spacing: .16em; }
.hero-copy h1 {
  font-family: var(--display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -.03em;
  line-height: .98;
}
.hero-copy .lede { color: rgba(243,230,200,.88); }
.hero-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 280px;
}
.hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photos img:first-child { grid-row: 1 / span 2; }
.hero-orb { display: none; }
@media (max-width: 720px) {
  .hero-visual { grid-template-columns: 1fr; min-height: 0; border-radius: 0; }
  .hero-photos { min-height: 180px; }
}
.practice-as {
  background: var(--card);
  border: 1px solid var(--line);
}
.practice-as-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.practice-tab.on,
.chip.on,
.browse-tab.on {
  background: #2a241c;
  color: #fff;
  border-color: #2a241c;
}
.btn.primary { background: #2a241c; color: #fff; }
.site-foot { display: none; }

.class-cover,
.class-cover.placeholder,
.studio-cover,
.entity-card .studio-cover.placeholder {
  background:
    radial-gradient(circle at 30% 28%, #f3ebe0 0%, transparent 48%),
    linear-gradient(155deg, #e4d9c8 0%, #c4a574 70%, #2a241c 140%) !important;
}
.bg { background: var(--paper) !important; }
