/* ---------- Design tokens ---------- */
:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --grey: #6f6f6f;
  --line: #e6e6e6;
  --bg: #ffffff;
  --sidebar-w: 300px;
  --content-max: 1100px;
  --pad: clamp(1.5rem, 4vw, 4rem);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.layout { display: flex; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  padding: clamp(2rem, 4vw, 3.5rem) 2rem;
  background: var(--bg);
  overflow-y: auto;
  border-right: 1px solid transparent;
}

.content {
  margin-left: var(--sidebar-w);
  width: calc(100% - var(--sidebar-w));
  max-width: var(--content-max);
  padding: clamp(2rem, 4vw, 3.5rem) var(--pad) 4rem;
}

/* ---------- Sidebar / nav ---------- */
.brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 2.5rem;
  line-height: 1.1;
}

.nav ul { list-style: none; margin: 0; padding: 0; }

.nav-primary { margin-bottom: 1.6rem; }
.nav-primary li { margin: .55rem 0; }
.nav-primary a {
  font-size: 1.15rem;
  color: var(--grey);
  transition: color .2s;
}
.nav-primary a:hover,
.nav-primary a:focus-visible { color: var(--ink); }
.nav-primary a.active { color: var(--ink); font-weight: 500; }

.nav-secondary { margin-bottom: 2rem; }
.nav-secondary li { margin: .4rem 0; }
.nav-secondary a {
  font-size: 1rem;
  color: var(--grey);
  transition: color .2s;
}
.nav-secondary a:hover { color: var(--ink); }

.nav-footer li { margin: 1.1rem 0; }
.nav-footer a { color: var(--ink); font-size: 1rem; }
.nav-footer a:hover { color: var(--grey); }

/* ---------- Sections ---------- */
.section { margin-bottom: clamp(3rem, 6vw, 5rem); scroll-margin-top: 2rem; }

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 1.2rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}

/* ---------- Video blocks ---------- */
.video-block { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 2px;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.caption {
  margin: .9rem 0 0;
  font-size: .95rem;
  color: var(--grey);
}
.caption em { color: var(--ink-soft); font-style: italic; }

/* ---------- Bio ---------- */
.bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.bio-text p { margin: 0 0 1.6rem; }
.bio-text strong { color: var(--ink); font-weight: 600; }
.bio-text em { color: var(--ink); font-style: italic; font-weight: 500; }

.bio-photo { margin: 0; }
.bio-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  background: #d9d9d9;
}

/* ---------- Reviews ---------- */
.review-list { list-style: none; margin: 0; padding: 0; }
.review {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.8rem 0;
}
.review + .review { border-top: 1px solid var(--line); }
.outlet em {
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.25;
}
.review blockquote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Contact form ---------- */
.contact-form { max-width: 720px; }
.field { margin-bottom: 1.6rem; }
.field label {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: .5rem;
}
.field .req { color: var(--grey); font-weight: 400; font-size: .85rem; }

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: .8rem .9rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }

.name-group {
  border: 0;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.name-group legend {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  padding: 0;
  margin-bottom: .5rem;
  grid-column: 1 / -1;
}
.name-group .field { margin: 0; }

.checkbox-field {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.checkbox-field label { margin: 0; font-weight: 400; color: var(--ink-soft); }
.checkbox-field input { width: auto; }

.submit-btn {
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  padding: .6rem 2rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.submit-btn:hover { background: var(--ink); color: #fff; }

.form-status { margin-top: 1rem; color: #2e7d32; font-size: .95rem; min-height: 1.2em; }

/* ---------- Inline links ---------- */
.inline-link {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color .2s;
}
.inline-link:hover { border-color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  font-size: .85rem;
  color: var(--grey);
}

/* ---------- Mobile bar ---------- */
.mobile-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}
.mobile-title { font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.nav-toggle {
  border: 0; background: transparent; cursor: pointer;
  width: 30px; height: 24px; padding: 0;
  display: flex; flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mobile-bar { display: flex; }

  .sidebar {
    position: fixed;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 60;
    box-shadow: 0 0 40px rgba(0,0,0,.12);
    width: min(80vw, 320px);
  }
  .sidebar.open { transform: translateX(0); }

  .content {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .brand { display: none; }
  .bio { grid-template-columns: 1fr; }
  .bio-photo { order: -1; }
  .review { grid-template-columns: 1fr; gap: .6rem; }
  .name-group { grid-template-columns: 1fr; }
}
