:root {
  --ink: #10231b;
  --muted: #51625a;
  --paper: #e9eee4;
  --surface: #f5f7f0;
  --line: #cbd5c5;
  --charcoal: #123225;
  --teal: #1f5f46;
  --copper: #0f6b3c;
  --moss: #6f7f3f;
  --cream: #fbfcf4;
  --gold: #f2cf2f;
  --shadow: 0 8px 22px rgba(16, 35, 27, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(233, 238, 228, 0.94);
  border-bottom: 1px solid rgba(16, 35, 27, 0.12);
  display: flex;
  height: 60px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(16px, 3vw, 36px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.work-card a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.social-nav {
  align-items: center;
  display: flex;
  gap: 7px;
}

.site-nav .social-link {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  width: 30px;
}

.social-link svg {
  fill: currentColor;
  height: 15px;
  width: 15px;
}

.site-nav .youtube-link:hover,
.site-nav .youtube-link:focus-visible {
  background: #c92323;
  border-color: #c92323;
  color: white;
  transform: translateY(-1px);
}

.site-nav .instagram-link:hover,
.site-nav .instagram-link:focus-visible {
  background: #c13584;
  border-color: #c13584;
  color: white;
  transform: translateY(-1px);
}

.site-nav .linkedin-link:hover,
.site-nav .linkedin-link:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: white;
  transform: translateY(-1px);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  min-height: 62vh;
  overflow: hidden;
  padding: 60px clamp(16px, 3vw, 36px) 0;
  position: relative;
  display: grid;
  align-items: end;
}

.hero-media {
  inset: 60px 0 0;
  position: absolute;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(5, 31, 20, 0.88), rgba(10, 57, 36, 0.55) 54%, rgba(10, 57, 36, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  width: 100%;
}

.hero-credit {
  background: rgba(7, 28, 19, 0.72);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.66rem;
  font-weight: 700;
  padding: 5px 7px;
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  text-decoration: none;
  top: 72px;
  z-index: 2;
}

.hero-credit:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-content {
  color: var(--cream);
  max-width: 760px;
  padding: clamp(34px, 7vh, 64px) 0 clamp(28px, 6vh, 52px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  margin-bottom: 12px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  max-width: 760px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.dek {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 650px;
}

.hero-actions,
.resume-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  text-decoration: none;
}

.button.primary {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.quick-strip {
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.quick-strip div {
  background: rgba(255, 255, 255, 0.045);
  padding: clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 36px);
}

.quick-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.7vw, 2.1rem);
  line-height: 1;
  margin-bottom: 8px;
}

.quick-strip span,
.section-heading p,
.work-card p,
.beat-list p,
.about-copy p,
.timeline p {
  color: var(--muted);
}

.quick-strip span {
  color: #dce4d2;
}

.section {
  padding: clamp(38px, 5.5vw, 68px) clamp(16px, 3vw, 36px);
}

.section-heading {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.section-heading.wide {
  align-items: end;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.section-heading.wide .eyebrow,
.section-heading.wide h2 {
  grid-column: 1;
}

.section-heading.wide p:last-child {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 4px;
}

.reel-section {
  background: #dfe8dc;
}

.reel-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
}

.reel-layout > * {
  min-width: 0;
}

.video-frame {
  aspect-ratio: 16 / 9;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.reel-notes {
  background: var(--paper);
  border-left: 4px solid var(--copper);
  padding: 18px;
}

.reel-notes ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.reel-notes li + li {
  margin-top: 6px;
}

.work-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.format-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.work-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.format-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.format-video iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.card-body {
  padding: 14px;
}

.tag {
  color: var(--copper) !important;
  font-size: 0.75rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.beat-section {
  background: #e8ecdd;
}

.sports-section {
  background: var(--charcoal);
  color: var(--cream);
}

.sports-section .section-heading p,
.sports-section .coverage-card p {
  color: #d8e2d3;
}

.community-section {
  background: var(--surface);
}

.coverage-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.community-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.community-grid .coverage-card {
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 230px;
}

.community-grid .coverage-card > img {
  min-height: 230px;
}

.coverage-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
}

.sports-section .coverage-card {
  background: #193e2d;
  border-color: rgba(255, 255, 255, 0.12);
}

.coverage-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.coverage-card .video-thumbnail {
  object-position: center;
}

.coverage-card div {
  display: grid;
  padding: 14px 16px;
}

.coverage-card a {
  align-self: end;
  font-weight: 850;
  margin-top: 6px;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.beats-section {
  background: #e8ecdd;
}

.beat-list {
  border-top: 1px solid rgba(16, 35, 27, 0.22);
}

.beat-list div {
  border-bottom: 1px solid rgba(16, 35, 27, 0.22);
  display: grid;
  gap: 22px;
  grid-template-columns: 70px minmax(180px, 0.6fr) minmax(260px, 1fr);
  padding: 24px 0;
}

.beat-list span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.beat-list h3,
.beat-list p {
  margin: 0;
}

.about-section {
  align-items: center;
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  gap: clamp(20px, 4vw, 42px);
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
}

.portrait {
  aspect-ratio: 4 / 5;
  min-height: 260px;
  overflow: hidden;
}

.portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-copy p {
  color: #d8e2d3;
  font-size: 1rem;
}

.resume-panel {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 24px;
  padding-top: 20px;
}

.resume-panel h3 {
  margin-bottom: 6px;
}

.resume-panel p {
  margin-bottom: 0;
}

.resume-panel .tag {
  color: var(--gold) !important;
  margin-bottom: 5px;
}

.resume-panel .resume-row {
  justify-content: flex-end;
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 1px;
}

.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 160px minmax(180px, 0.6fr) minmax(240px, 1fr);
  padding: 16px;
}

.timeline time {
  color: var(--copper);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  margin: 0;
}

.site-footer {
  background: #071c13;
  color: var(--cream);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(34px, 5vw, 52px) clamp(16px, 3vw, 36px);
}

.site-footer h2 {
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  margin-bottom: 0;
}

address {
  align-content: end;
  display: grid;
  font-style: normal;
  gap: 12px;
  justify-items: end;
}

@media (max-width: 1050px) {
  .work-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.wide,
  .reel-layout,
  .about-section,
  .resume-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading.wide p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  address {
    justify-items: start;
  }

  .resume-panel .resume-row {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 58px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 58px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .social-nav {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    margin: 4px 0;
    padding: 10px 0;
  }

  .site-nav .social-link {
    height: 34px;
    padding: 0;
    width: 34px;
  }

  .hero {
    min-height: 56vh;
    padding-top: 58px;
  }

  .hero-content {
    padding: 28px 0 26px;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.5rem, 9vw, 2.1rem);
  }

  h3 {
    font-size: 1rem;
  }

  .dek {
    font-size: 0.98rem;
  }

  .hero-actions,
  .resume-row {
    margin-top: 14px;
  }

  .section {
    padding: 32px 16px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .hero-media {
    inset: 58px 0 0;
  }

  .hero-credit {
    right: 10px;
    top: 68px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(11, 15, 17, 0.45), rgba(11, 15, 17, 0.88));
  }

  .quick-strip,
  .work-grid,
  .format-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .community-grid .coverage-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 0;
  }

  .community-grid .coverage-card > img {
    min-height: 0;
  }

  .quick-strip strong {
    margin-bottom: 4px;
  }

  .quick-strip div {
    padding: 12px 16px;
  }

  .beat-list div,
  .timeline article {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .portrait {
    min-height: 210px;
  }

  .video-frame {
    min-height: 0;
  }

  .reel-notes {
    padding: 14px;
  }

  .reel-notes li + li {
    margin-top: 4px;
  }

  .work-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .work-card img {
    aspect-ratio: auto;
    height: 100%;
  }

  .card-body {
    padding: 12px;
  }

  .work-card .card-body p:not(.tag),
  .coverage-card p:not(.tag) {
    display: none;
  }

  .coverage-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .coverage-card img {
    aspect-ratio: auto;
  }

  .coverage-card div {
    padding: 12px;
  }

  .coverage-card h3 {
    font-size: 1rem;
  }

  .coverage-card p:not(.tag) {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.article-page {
  background: var(--paper);
}

.article-header {
  align-items: center;
  background: rgba(233, 238, 228, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(16px, 4vw, 52px);
}

.article-back {
  font-size: 0.82rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.article-main {
  padding: clamp(42px, 7vw, 88px) 16px;
}

.article-content {
  margin: 0 auto;
  max-width: 780px;
}

.article-title {
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  padding-bottom: 24px;
}

.article-title h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.article-byline {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0;
}

.article-body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.article-body p {
  margin-bottom: 1.35em;
}

.article-footer {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 24px;
}

@media (max-width: 600px) {
  .article-header {
    align-items: flex-start;
    gap: 10px;
  }

  .article-back {
    max-width: 150px;
    text-align: right;
  }
}
