:root {
  color-scheme: dark;
  --ink: #f7efe1;
  --muted: #c8bca8;
  --soft: rgba(247, 239, 225, 0.76);
  --coal: #101922;
  --deep: #071014;
  --line: rgba(247, 239, 225, 0.2);
  --field: #29412f;
  --moss: #79a86b;
  --copper: #c97842;
  --gold: #e0b65a;
  --water: #57aebb;
  --rose: #bb776e;
  --shadow: rgba(5, 11, 16, 0.5);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--gold);
  color: var(--deep);
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(7, 16, 20, 0.28);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 20, 0.78);
  border-color: rgba(247, 239, 225, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 26px);
}

nav a {
  color: rgba(247, 239, 225, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a.is-active {
  color: var(--gold);
}

.hero {
  min-height: min(760px, 82vh);
  display: grid;
  align-items: center;
  padding: 104px clamp(20px, 6vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.92) 0%, rgba(7, 16, 20, 0.68) 39%, rgba(7, 16, 20, 0.22) 76%),
    linear-gradient(0deg, rgba(7, 16, 20, 0.9) 0%, rgba(7, 16, 20, 0.12) 42%),
    url("assets/share-image-v2.jpg") center / cover;
}

.hero-copy {
  max-width: 720px;
}

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

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 11.5vw, 9.6rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.wip-note {
  max-width: 650px;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: rgba(247, 239, 225, 0.82);
  font-size: 1rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1510;
}

.button.quiet {
  background: rgba(247, 239, 225, 0.08);
}

.button[aria-disabled="true"] {
  cursor: default;
}

.section-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.intro-band,
.note-band,
.feature-band,
.gallery-band,
.availability-band {
  padding: clamp(72px, 9vw, 130px) 0;
}

.intro-band {
  background:
    linear-gradient(180deg, #071014 0%, #172319 100%);
  border-top: 1px solid rgba(247, 239, 225, 0.08);
}

.two-column,
.note-layout,
.availability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.two-column p,
.note-copy p,
.feature-head p,
.availability-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.note-band {
  background:
    linear-gradient(120deg, rgba(224, 182, 90, 0.11), transparent 34%),
    linear-gradient(180deg, #172319 0%, #101922 100%);
  border-top: 1px solid rgba(247, 239, 225, 0.08);
}

.note-layout {
  align-items: start;
}

.note-copy {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(247, 239, 225, 0.14);
  border-radius: 8px;
  background: rgba(247, 239, 225, 0.055);
}

.note-copy p:last-child {
  margin-bottom: 0;
}

.portrait-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
}

.portrait-row figure,
.gallery-grid figure {
  margin: 0;
}

.portrait-row figure {
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(247, 239, 225, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 239, 225, 0.08), rgba(247, 239, 225, 0.02)),
    #1a2a25;
  box-shadow: 0 20px 60px var(--shadow);
}

.portrait-row img {
  width: min(100%, 360px);
  margin: auto auto 0;
  image-rendering: pixelated;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.35));
}

figcaption {
  padding: 12px 14px 14px;
  color: rgba(247, 239, 225, 0.82);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-band {
  background:
    linear-gradient(90deg, rgba(87, 174, 187, 0.12), transparent 34%),
    linear-gradient(180deg, #172319 0%, #101922 100%);
}

.feature-head {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(247, 239, 225, 0.14);
  border-radius: 8px;
  background: rgba(247, 239, 225, 0.055);
}

.feature-card span {
  display: block;
  margin-bottom: 40px;
  color: var(--water);
  font-weight: 950;
}

.feature-card p {
  color: var(--muted);
}

.gallery-band {
  background: #101922;
}

.section-kicker {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

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

.gallery-grid figure {
  overflow: hidden;
  border: 1px solid rgba(247, 239, 225, 0.14);
  border-radius: 8px;
  background: #16222a;
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  image-rendering: pixelated;
  background: #111;
}

.gallery-grid figure.wide img {
  aspect-ratio: 16 / 9;
}

.gallery-grid figcaption {
  background: rgba(7, 16, 20, 0.82);
  border-top: 1px solid rgba(247, 239, 225, 0.1);
}

.availability-band {
  background:
    linear-gradient(135deg, rgba(201, 120, 66, 0.16), transparent 38%),
    linear-gradient(180deg, #101922 0%, #071014 100%);
}

.release-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.release-facts div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(247, 239, 225, 0.14);
  border-radius: 8px;
  background: rgba(247, 239, 225, 0.055);
}

.release-facts dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 30px 20px 42px;
  background: #071014;
  color: rgba(247, 239, 225, 0.6);
  text-align: center;
}

.site-footer p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.site-footer .portfolio-link {
  margin-top: 10px;
  color: rgba(247, 239, 225, 0.46);
  font-size: 0.82rem;
}

.site-footer a {
  color: rgba(247, 239, 225, 0.68);
  text-decoration-color: rgba(224, 182, 90, 0.44);
  text-underline-offset: 3px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  nav a {
    font-size: 0.76rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 150px;
    background-position: 62% center;
  }

  .two-column,
  .note-layout,
  .availability-layout,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .portrait-row figure {
    min-height: 230px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card span {
    margin-bottom: 22px;
  }

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

  .section-kicker {
    display: block;
  }

  .gallery-grid figure.wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .portrait-row {
    gap: 10px;
  }

  .portrait-row figure {
    min-height: 190px;
  }

  figcaption {
    padding: 10px 11px 12px;
    font-size: 0.82rem;
  }
}

@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;
  }
}
