:root {
  --soot: #0a0c0f;
  --slate: #161b21;
  --iron: #232a33;
  --verdigris: #57c7a8;
  --tungsten: #ffb46b;
  --bone: #ede8df;
  --ash: #848c96;
  --blood: #d1503c;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "IBM Plex Sans Condensed", "Avenir Next Condensed", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--bone);
  background: var(--soot);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: var(--verdigris);
  text-decoration: none;
}

a:hover {
  color: var(--bone);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 70% 10%, rgba(87, 199, 168, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(255, 180, 107, 0.08), transparent 50%),
    linear-gradient(180deg, #0d1116 0%, var(--soot) 40%, #07090c 100%);
  pointer-events: none;
}

.atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(10, 12, 15, 0.72);
  border-bottom: 1px solid rgba(237, 232, 223, 0.06);
}

.mark {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--bone);
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}

nav a[aria-current="page"],
nav a:hover {
  color: var(--bone);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
  min-height: min(100vh, 920px);
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.2rem, 4vw, 3rem) 3rem;
}

.hero-copy {
  max-width: 34rem;
  animation: rise 0.9s ease-out both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--verdigris);
}

h1 {
  margin: 0;
  line-height: 0.88;
}

h1 .num {
  display: block;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(5.5rem, 18vw, 9.5rem);
  letter-spacing: -0.04em;
  color: var(--bone);
}

h1 .word {
  display: block;
  margin-top: 0.15em;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--verdigris);
}

.tagline {
  margin: 1.4rem 0 0;
  max-width: 22rem;
  font-size: 1.15rem;
  color: rgba(237, 232, 223, 0.78);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--verdigris);
  color: var(--soot);
}

.btn.primary:hover {
  background: #6fd4b6;
  color: var(--soot);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--bone);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.btn.inline {
  margin-top: 0.5rem;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 320px);
  animation: rise 1.05s 0.12s ease-out both;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.55);
}

.strip,
.gallery,
.page {
  padding: 4rem clamp(1.2rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.strip h2,
.gallery h2,
.panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.15rem;
  color: rgba(237, 232, 223, 0.72);
}

.beats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.beats li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(237, 232, 223, 0.1);
  color: var(--ash);
  letter-spacing: 0.02em;
}

.beats li:last-child {
  border-bottom: 1px solid rgba(237, 232, 223, 0.1);
}

.beats strong {
  color: var(--bone);
  font-weight: 700;
}

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.shots figure {
  margin: 0;
}

.shots img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease;
}

.shots figure:hover img {
  transform: translateY(-4px);
}

.shots figcaption {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

.page-title {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 4.5rem);
  letter-spacing: -0.03em;
}

.panel {
  margin: 2.25rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(237, 232, 223, 0.1);
  animation: rise 0.7s ease-out both;
}

.panel p,
.panel li {
  color: rgba(237, 232, 223, 0.78);
}

.panel ul {
  padding-left: 1.2rem;
}

.note {
  font-size: 0.92rem;
  color: var(--ash) !important;
}

.faq {
  margin: 0;
}

.faq > div {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(237, 232, 223, 0.08);
}

.faq dt {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.faq dd {
  margin: 0.45rem 0 0;
  color: rgba(237, 232, 223, 0.72);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem clamp(1.2rem, 4vw, 3rem) 3rem;
  border-top: 1px solid rgba(237, 232, 223, 0.08);
  margin-top: 2rem;
}

.foot-brand {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
}

.foot-meta {
  margin: 0.25rem 0 0;
  color: var(--ash);
  font-size: 0.85rem;
}

.foot-links {
  display: flex;
  gap: 1.25rem;
}

.foot-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-visual {
    justify-self: end;
    width: min(100%, 360px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
