:root {
  color-scheme: light;
  --ink: #16191d;
  --muted: #626a73;
  --paper: #f7f3ec;
  --panel: #ffffff;
  --line: #ded7cc;
  --charcoal: #101820;
  --red: #c51f35;
  --gold: #d7a84f;
  --green: #286b5f;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img,
iframe {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(16, 24, 32, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
  opacity: 0.86;
}

nav a:hover,
nav a:focus-visible {
  opacity: 1;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% 36%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.62) 44%, rgba(16, 24, 32, 0.16)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.62), rgba(16, 24, 32, 0.04) 44%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(197, 31, 53, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta,
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.hero-meta span {
  padding: 14px 16px;
  background: rgba(16, 24, 32, 0.54);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 108px) 0;
}

.intro-grid,
.production,
.contact,
.resume-band,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.05;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.intro-copy p {
  font-size: 1.05rem;
}

.stat-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin-top: 42px;
  background: var(--line);
  border-color: var(--line);
}

.stat {
  min-height: 132px;
  padding: 24px;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.45rem, 5vw, 3rem);
  line-height: 0.85;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.band {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: #15191e;
  color: #fff;
}

.band p,
.band .demo-card p,
.band .video-caption p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 34px;
  align-items: end;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.demo-grid,
.video-grid,
.photo-grid {
  display: grid;
  gap: 18px;
}

.audio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

.demo-card,
.video-card,
.timeline article,
.contact-panel {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-card,
.video-card {
  overflow: hidden;
}

.demo-card {
  padding: 18px;
  background: #20262d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.demo-card h3,
.video-card h3 {
  margin-bottom: 14px;
}

.demo-card iframe {
  width: 100%;
  height: 166px;
  border: 0;
  border-radius: 8px;
}

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

.featured-video {
  grid-column: span 2;
  grid-row: span 2;
}

.video-card {
  background: #20262d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: none;
}

.video-card h3,
.video-caption {
  padding: 16px 18px 18px;
}

.video-card h3 {
  margin: 0;
}

.video-caption h3 {
  margin-bottom: 4px;
}

.video-caption p {
  margin-bottom: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b0d10;
}

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

.production {
  align-items: center;
}

.production img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.family-feature {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.family-photo {
  max-width: 360px;
}

.family-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.family-feature h2 {
  max-width: 620px;
}

.family-feature p {
  max-width: 640px;
}

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

.timeline article {
  display: block;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  box-shadow: none;
}

.timeline span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 4px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.timeline-location {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.timeline p {
  margin-bottom: 0;
  max-width: 980px;
}

.timeline p + p {
  margin-top: 12px;
}

.resume-band {
  width: 100%;
  padding-left: max(18px, calc((100% - 1180px) / 2));
  padding-right: max(18px, calc((100% - 1180px) / 2));
  background: var(--green);
  color: #fff;
  align-items: center;
}

.resume-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.resume-band .button {
  justify-self: end;
  white-space: nowrap;
}

.photo-grid {
  display: block;
  columns: 3 260px;
  column-gap: 18px;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-panel > a {
  color: var(--charcoal);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-decoration: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.socials a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-bg {
    object-position: 74% 38%;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.24));
  }

  .intro-grid,
  .production,
  .family-feature,
  .contact,
  .resume-band,
  .section-heading,
  .timeline article {
    grid-template-columns: 1fr;
  }

  .stat-row,
  .audio-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    columns: 2 240px;
  }

  .featured-video {
    grid-column: span 2;
  }

  .resume-band .button {
    justify-self: start;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  nav a {
    white-space: nowrap;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-bottom: 44px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .stat-row,
  .audio-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    columns: 1;
  }

  .featured-video {
    grid-column: span 1;
  }

  .timeline article,
  .contact-panel {
    padding: 20px;
  }
}
