:root {
  --ink: #161616;
  --soft-ink: #333333;
  --paper: #ffffff;
  --wash: #efefef;
  --header: #f7f7f7;
  --footer: #222222;
  --footer-muted: #9d9d9d;
  --focus-ring: rgba(121, 54, 34, 0.45);
  --content-max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: #1f212e;
  text-decoration: none;
}

a:hover {
  color: #323549;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  max-width: var(--content-max);
  padding: 0 18px;
  width: 100%;
}

.content-flow > * + * {
  margin-top: 1rem;
}

.skip-link {
  background: #ffffff;
  color: #111111;
  left: 1rem;
  padding: 0.6rem 0.85rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background: var(--header);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1200px;
  padding: 36px 18px 30px;
  text-align: center;
}

.brand-link {
  display: block;
}

.brand-logo {
  height: 180px;
  width: auto;
}

.header-tagline {
  color: var(--soft-ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 10px 0 0;
  text-transform: uppercase;
}

.feature {
  background: #0b0a0c;
  color: #ffffff;
  overflow: hidden;
  padding: 56px 0;
  position: relative;
}

.feature::before {
  background-image: url("../images/fallback/hero/microphone.jpg");
  background-image: image-set(
    url("../images/hero/microphone.webp") type("image/webp"),
    url("../images/fallback/hero/microphone.jpg") type("image/jpeg")
  );
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  filter: grayscale(100%) contrast(1.05) brightness(0.65);
  inset: 0;
  opacity: 0.95;
  position: absolute;
  z-index: 0;
}

.feature::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.feature .container {
  position: relative;
  z-index: 1;
}

.feature-content {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  max-width: 820px;
  padding: 20px 22px;
}

.feature-focus {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 22px;
}

.focus-line {
  align-items: baseline;
  column-gap: 28px;
  display: grid;
  grid-template-columns: auto auto;
}

.focus-line + .focus-line {
  margin-top: 10px;
}

.focus-lead {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.focus-em {
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-services {
  column-count: 2;
  column-gap: 34px;
  margin: 0;
  padding-left: 18px;
}

.feature-services li {
  break-inside: avoid;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.intro-section {
  background: #ffffff;
  padding: 2rem 0;
}

.entry-image {
  margin: 0 auto 1.6rem;
  width: min(50%, 750px);
}

.bio-section {
  background: var(--wash);
  padding: 30px 0;
}

.bio-content {
  min-height: 360px;
}

.bio-content h2 {
  color: #262626;
  font-size: 1.4em;
  line-height: 1.2;
  margin: 30px 0 10px;
}

.bio-image {
  float: right;
  margin: 10px 0 20px 28px;
  width: min(333px, 42vw);
}

.site-footer {
  background: var(--footer);
  color: #ffffff;
  padding: 20px 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.site-footer address {
  font-style: normal;
  margin: 0;
}

.site-footer p {
  color: #ffffff;
  font-size: 0.8em;
  margin: 0.5em 0;
}

.site-footer a {
  color: var(--footer-muted);
}

.site-footer a:hover {
  color: #dddddd;
}

.footer-meta {
  text-align: right;
}

.back-to-top {
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  padding: 0.65rem 0.8rem;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  transform: translateY(0.5rem);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 10;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .feature {
    padding: 48px 0;
  }

  .feature::before {
    background-position: 72% center;
  }

  .feature-content {
    background: rgba(0, 0, 0, 0.3);
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    align-items: flex-start;
  }

  .header-tagline {
    text-align: left;
  }

  .feature {
    padding: 40px 0;
  }

  .feature::after {
    background: rgba(0, 0, 0, 0.68);
  }

  .feature-content {
    max-width: none;
  }

  .focus-lead {
    font-size: 22px;
  }

  .focus-em {
    font-size: 28px;
  }

  .focus-line {
    column-gap: 18px;
  }

  .feature-services {
    column-count: 1;
  }

  .entry-image {
    width: min(80%, 750px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    height: 120px;
  }

  .feature {
    padding: 34px 0;
  }

  .feature::before {
    background-position: center top;
  }

  .feature-content {
    padding: 16px;
  }

  .focus-line {
    grid-template-columns: 1fr;
    row-gap: 0.1rem;
  }

  .entry-image,
  .bio-image {
    width: 100%;
  }

  .bio-image {
    float: none;
    margin: 0 0 1.25rem;
  }
}
