:root {
  --ink: #111111;
  --coal: #181818;
  --graphite: #2b2a28;
  --paper: #f7f1e6;
  --cream: #fffaf1;
  --brass: #c49745;
  --ruby: #8e2638;
  --teal: #1e6b67;
  --mist: #e7e1d7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  --max: 1180px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 44px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.32));
  backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.92);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--brass);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 10px 15px;
  color: var(--ink);
  background: var(--brass);
  border-radius: 999px;
  font-weight: 700;
}

.main-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  color: var(--white);
  background: var(--coal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% 22%;
  filter: grayscale(1) contrast(1.1);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.7) 43%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.15), rgba(17, 17, 17, 0.88));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 7svh);
  padding-bottom: 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.origo h2,
.closing h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 8.4vw, 7.2rem);
}

.hero-line {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--brass);
  font-size: clamp(1.35rem, 2.7vw, 2.45rem);
  font-weight: 750;
  line-height: 1.04;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.hero-actions,
.closing .button {
  margin-top: 34px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
}

.button-primary {
  color: var(--ink);
  background: var(--brass);
  border: 1px solid var(--brass);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button:hover,
.button:focus-visible,
.tab-button:hover,
.tab-button:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-1px);
}

.hero-fact {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 44px);
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(760px, calc(100% - 36px));
  gap: 10px;
}

.hero-fact span {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.band-light {
  background: var(--paper);
}

.band-dark {
  color: var(--white);
  background: var(--coal);
}

.band-warm {
  background: #f0dcc3;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.intro-grid,
.origo-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.intro h2,
.origo h2,
.closing h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.intro-copy,
.story-text,
.origo-copy,
.closing-grid p,
.section-heading.wide p {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.intro-copy p:first-child,
.story-text p:first-child,
.origo-copy p:first-of-type {
  margin-top: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 6vw, 68px);
}

.section-heading.wide {
  max-width: 940px;
}

.section-heading p {
  max-width: 780px;
  color: inherit;
}

.band-dark .section-heading p,
.band-dark .story-text p,
.band-dark .closing-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 7vw, 90px);
}

.story-text {
  color: rgba(255, 255, 255, 0.8);
}

.story-text p {
  margin: 0 0 22px;
}

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

.timeline article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--brass);
  font-weight: 850;
}

.timeline h3,
.video-card h3 {
  margin: 0 0 8px;
  letter-spacing: 0;
  line-height: 1.15;
}

.timeline p,
.video-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.studio-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.studio-panel div {
  min-height: 190px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(142, 38, 56, 0.94), rgba(30, 107, 103, 0.9)),
    var(--graphite);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-panel strong {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.studio-panel span {
  color: rgba(255, 255, 255, 0.8);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quote-grid blockquote {
  min-height: 260px;
  margin: 0;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-grid p {
  margin: 0 0 28px;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 780;
  line-height: 1.04;
}

.quote-grid cite {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-button {
  min-height: 44px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.tab-button.active {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.video-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-panel.active {
  display: grid;
}

.video-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.video-card > div:not(.video-frame) {
  padding: 22px;
}

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--graphite);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.03);
  transition: transform 280ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.gallery-item span:not(.placeholder-mark) {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-weight: 850;
  line-height: 1.1;
}

.gallery-item.placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(30, 107, 103, 0.88), rgba(43, 42, 40, 0.96)),
    var(--graphite);
}

.placeholder-mark {
  display: grid;
  place-items: center;
  width: min(120px, 48%);
  aspect-ratio: 1;
  color: var(--brass);
  border: 1px solid rgba(196, 151, 69, 0.65);
  border-radius: 50%;
  font-weight: 900;
}

.gallery-item.placeholder::after {
  height: 34%;
}

.closing-grid {
  align-items: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0c0c0c;
}

.site-footer .section-inner {
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 36px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  width: min(1020px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  border-radius: 8px;
}

.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 13px;
  color: var(--white);
}

.lightbox-caption span {
  color: rgba(255, 255, 255, 0.64);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 20px;
    background: rgba(17, 17, 17, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav .nav-cta {
    width: fit-content;
    margin-top: 10px;
    padding: 12px 16px;
  }

  .intro-grid,
  .origo-grid,
  .closing-grid,
  .story-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .studio-panel,
  .quote-grid,
  .video-panel.active {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-text {
    max-width: 160px;
    line-height: 1.08;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media img {
    object-position: 70% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(17, 17, 17, 0.52)),
      linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.92));
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding-top: calc(var(--header-height) + 7svh);
    padding-bottom: 142px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-fact {
    right: 14px;
    bottom: 18px;
    left: 14px;
    justify-content: flex-start;
  }

  .hero-fact span {
    font-size: 0.78rem;
  }

  .section-inner {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .timeline article,
  .video-card > div:not(.video-frame) {
    padding: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: span 1;
  }

  .quote-grid blockquote {
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
