:root {
  --paper: #f7f4ec;
  --paper-deep: #eee9dd;
  --ink: #273c43;
  --body: #36474c;
  --muted: #788080;
  --line: #ddd8cc;
  --blue: #d5edf4;
  --blue-deep: #c6e5ed;
  --max: 1160px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
  background: rgba(247,244,236,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; }
.brand-name { font: 400 clamp(1.55rem, 2.3vw, 2rem)/1.1 var(--serif); color: var(--ink); }
.brand-role {
  margin-top: 7px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none;
  font-size: .82rem;
  color: #5c686b;
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 0; background: transparent; padding: 8px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block; height: 2px; background: var(--ink); margin: 6px 0;
}
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  padding-top: 56px;
  padding-bottom: 0;
}
.hero-copy { padding: 66px 0 70px; }
.eyebrow {
  margin: 0 0 15px;
  font-size: .76rem;
  line-height: 1.3;
  letter-spacing: .055em;
  text-transform: uppercase;
  color: #727d80;
  font-weight: 600;
}
h1, h2 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero h1 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 1.18;
  margin: 0 0 28px;
}
.lead { max-width: 570px; font-size: 1.05rem; margin: 0 0 28px; }
.muted { max-width: 510px; color: var(--muted); font-size: .94rem; margin: 0; }
.author-image {
  min-height: 560px;
  align-self: stretch;
}
.image-placeholder {
  background:
    linear-gradient(135deg, rgba(214,212,202,.75), rgba(187,191,186,.65)),
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.8), transparent 38%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.image-placeholder > div {
  text-align: center;
  color: #596467;
  padding: 24px;
}
.placeholder-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  border: 1px solid rgba(39,60,67,.35);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 300;
}
.image-placeholder strong, .image-placeholder small { display: block; }
.image-placeholder small { margin-top: 3px; opacity: .8; }

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-band {
  margin-top: 0;
  background: var(--blue);
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 70px;
  padding: 43px 0 46px;
  align-items: center;
}
.event-band h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.55rem);
  line-height: 1.15;
  margin: 0;
}
.event-copy {
  border-left: 1px solid rgba(39,60,67,.18);
  padding-left: 42px;
}
.event-copy p {
  margin: 0;
  max-width: 670px;
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.75;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr;
  gap: 52px;
  padding-top: 48px;
  min-height: 360px;
}
.contact-item { align-self: start; }
.contact .eyebrow { margin-bottom: 18px; }
.underlined {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.contact-text { color: var(--muted); font-size: .9rem; line-height: 1.55; max-width: 300px; margin: 0 0 22px; }

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
  color: #747c7e;
  font-size: .78rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.dot { margin: 0 10px; }

.legal-page {
  min-height: calc(100vh - 160px);
  padding-top: 78px;
  padding-bottom: 100px;
}
.legal-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 45px;
}
.legal-placeholder {
  max-width: 820px;
  min-height: 420px;
  border: 1px dashed #c9c2b5;
  padding: 36px;
  background: rgba(255,255,255,.18);
}
.legal-placeholder strong { font-family: var(--serif); color: var(--ink); }

@media (max-width: 860px) {
  .header-inner { min-height: 78px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .main-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; gap: 0; padding-top: 0; }
  .hero-copy { padding: 58px 0 48px; }
  .author-image { min-height: 440px; }
  .event-grid { grid-template-columns: 1fr; gap: 28px; padding: 38px 0; }
  .event-copy { border-left: 0; border-top: 1px solid rgba(39,60,67,.18); padding: 26px 0 0; }
  .contact { grid-template-columns: 1fr 1fr; gap: 42px 28px; min-height: auto; padding-bottom: 55px; }
  .contact-item:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .hero h1 { font-size: 2rem; }
  .lead { font-size: 1rem; }
  .author-image { min-height: 350px; }
  .event-copy p { font-size: 1rem; }
  .contact { grid-template-columns: 1fr; padding-top: 38px; }
  .contact-item:last-child { grid-column: auto; }
  .site-footer { width: calc(100% - 32px); }
  .footer-inner { flex-direction: column; gap: 9px; }
  .legal-page { padding-top: 52px; }
  .legal-placeholder { padding: 24px; }
}
