:root {
  --black: #070604;
  --charcoal: #11100d;
  --walnut: #21150d;
  --panel: #17120d;
  --cream: #eee4d3;
  --muted: #a99a87;
  --gold: #c9a46a;
  --line: rgba(238, 228, 211, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(118, 77, 38, 0.28), transparent 34rem),
    linear-gradient(180deg, #090705 0%, #100c08 45%, #070604 100%);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: rgba(7, 6, 4, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.86rem;
}

nav a:hover {
  color: var(--cream);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5vw;
  align-items: center;
  padding: 70px 5vw 90px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

h1, h2, h3, p {
  position: relative;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  font-weight: 400;
}

.intro {
  max-width: 560px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.75;
}

.hero-photo,
.large-photo,
.mosaic-card,
.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    radial-gradient(circle at 30% 10%, #8a633a, #27180e 45%, #0d0906 100%);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.hero-photo {
  min-height: 680px;
  border-radius: 42px 42px 6px 42px;
}

.hero-photo::after,
.large-photo::after,
.mosaic-card::after,
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.38));
}

.hero-photo span,
.large-photo span,
.mosaic-card span,
.video-frame span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  color: rgba(238, 228, 211, 0.58);
  font-style: italic;
}

.statement {
  padding: 95px 12vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}

.statement p {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  text-align: center;
}

.featured,
.journal,
.sound,
.about {
  padding: 110px 5vw;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 400;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}

.large-photo {
  min-height: 760px;
  border-radius: 8px 44px 44px 44px;
}

.spec-panel {
  align-self: end;
  padding: 34px;
  min-height: 560px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: 34px;
}

.spec-panel h3 {
  margin: 0 0 34px;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 400;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 270px;
  gap: 22px;
  padding: 0 5vw 110px;
}

.mosaic-card {
  border-radius: 30px;
}

.mosaic-card.wide {
  grid-column: span 2;
}

.mosaic-card.tall {
  grid-row: span 2;
}

.journal {
  border-top: 1px solid var(--line);
}

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

article {
  min-height: 360px;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.article-number {
  color: var(--gold);
  margin: 0 0 90px;
}

article h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
}

article p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.sound {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.sound p:not(.eyebrow),
.about p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.video-frame {
  min-height: 520px;
  border-radius: 42px;
}

.about {
  border-top: 1px solid var(--line);
  text-align: center;
}

.about h2,
.about p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .section-heading,
  footer {
    display: block;
  }

  nav {
    margin-top: 18px;
  }

  nav a {
    display: inline-block;
    margin: 0 18px 12px 0;
  }

  .hero,
  .feature-layout,
  .journal-grid,
  .sound,
  .mosaic {
    display: block;
  }

  .hero-photo,
  .large-photo,
  .video-frame,
  .mosaic-card {
    min-height: 360px;
    margin-top: 24px;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 6rem);
  }

  .statement {
    padding: 70px 5vw;
  }

  .featured,
  .journal,
  .sound,
  .about {
    padding: 80px 5vw;
  }
}
