:root {
  --primary: #384150;
  --bg: #f4f5f7;
  --ink: #1a1e26;
  --accent: #f0a32a;
  --paper: #ffffff;
  --line: #dfe2e8;
  --mute: #5e6680;
  --deep: #22293a;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Nunito Sans', system-ui, sans-serif;
  --r: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--bg); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; }
h1 { font-size: clamp(30px, 4.8vw, 54px); font-weight: 700; }
h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-family: var(--display); font-size: 17px; font-weight: 600; }
p { color: var(--mute); font-size: 15px; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* site-header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244,245,247,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__row { display: flex; align-items: center; gap: 18px; height: 64px; }
.wordmark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.wordmark__icon { color: var(--accent); font-size: 18px; }
.main-nav { display: flex; gap: 20px; margin-left: auto; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--mute); transition: color .15s; }
.main-nav a:hover { color: var(--primary); }

/* pill buttons */
.pill-btn {
  display: inline-flex; align-items: center;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 800;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .12s;
}
.pill-btn:hover { background: var(--primary); transform: translateY(-1px); }
.pill-btn--lg { padding: 15px 28px; font-size: 15px; }
.pill-btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.pill-btn--ghost:hover { background: var(--ink); color: #fff; }
.pill-btn--accent { background: var(--accent); color: var(--ink); }
.pill-btn--accent:hover { background: #d9920f; }
.pill-btn--white { background: #fff; color: var(--ink); }
.pill-btn--white:hover { background: #eef0f4; }

/* editorial hero */
.editorial-hero { padding: clamp(44px, 6vw, 80px) 0; }
.editorial-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.editorial-hero__cover figure img {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  object-fit: cover;
  border-radius: calc(var(--r) + 4px);
  box-shadow: 0 20px 50px -20px rgba(26,30,38,.3);
}
.editorial-hero__meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.meta-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
}
.editorial-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.editorial-intro { font-size: 15px; color: var(--mute); max-width: 50ch; margin: 14px 0 24px; }
.editorial-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.editorial-numbers {
  display: flex; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.en-val {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.en-desc { font-size: 13px; color: var(--mute); }

/* play section */
.play-section { padding: clamp(52px, 7vw, 84px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.play-section__head { max-width: 54ch; margin-bottom: 36px; }
.play-section__head p { margin-top: 8px; }
.play-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.play-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.play-card__time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.play-card h3 { font-size: 19px; color: var(--ink); margin-bottom: 8px; }
.play-card p { font-size: 14px; flex: 1; }
.play-card__price { margin-top: 16px; font-weight: 800; font-size: 16px; color: var(--primary); }

/* rental section */
.rental-section { padding: clamp(52px, 7vw, 84px) 0; }
.rental-section__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.rental-card {
  background: var(--ink);
  border-radius: var(--r);
  padding: 32px;
}
.rental-card h3 { color: #fff; font-size: 22px; margin-bottom: 14px; }
.rental-card > p { color: rgba(255,255,255,.75); font-size: 14px; margin-bottom: 20px; }
.rental-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.rental-list li { font-size: 14px; color: rgba(255,255,255,.7); padding-left: 14px; position: relative; }
.rental-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.rental-list strong { color: var(--accent); }
.rental-note { font-size: 13px; color: rgba(255,255,255,.5); font-style: italic; }
.rental-section__text h2 { margin: 10px 0 14px; }
.rental-section__text > p { max-width: 44ch; margin-bottom: 14px; }

/* school section */
.school-section { padding: clamp(52px, 7vw, 84px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.school-section__sub { color: var(--mute); max-width: 52ch; margin: 10px 0 32px; }
.school-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.school-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
}
.school-item__age {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.school-item h4 { color: var(--ink); }
.school-item p { font-size: 13.5px; }

/* info section */
.info-section { padding: clamp(52px, 7vw, 84px) 0; }
.info-section__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  padding: clamp(24px, 4vw, 48px);
}
.info-block h3 { font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.info-block p { font-size: 15px; max-width: 44ch; }
.info-list { list-style: none; display: grid; gap: 10px; }
.info-list li { font-size: 14px; color: var(--mute); padding-left: 18px; position: relative; }
.info-list li::before { content: '·'; position: absolute; left: 4px; color: var(--accent); font-size: 18px; line-height: 1; top: 0; }

/* book section */
.book-section { padding: clamp(44px, 6vw, 72px) 0; }
.book-section__in {
  background: linear-gradient(130deg, var(--primary), var(--deep));
  border-radius: calc(var(--r) + 6px);
  padding: clamp(28px, 4vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.book-section__in h2 { color: #fff; }
.book-section__in > div > p { color: rgba(255,255,255,.75); margin-top: 8px; font-size: 14px; }
.book-contact { font-weight: 700 !important; color: rgba(255,255,255,.85) !important; margin-top: 6px !important; }

/* site-footer */
.site-footer { background: var(--ink); padding: 28px 0; }
.site-footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); }

@media (max-width: 900px) {
  .editorial-hero__grid { grid-template-columns: 1fr; }
  .play-cards { grid-template-columns: 1fr 1fr; }
  .rental-section__in { grid-template-columns: 1fr; }
  .school-grid { grid-template-columns: repeat(2, 1fr); }
  .info-section__in { grid-template-columns: 1fr; }
  .main-nav { display: none; }
}
@media (max-width: 520px) {
  .play-cards { grid-template-columns: 1fr; }
  .school-grid { grid-template-columns: 1fr; }
}
