:root {
  color-scheme: light;
  --ink: #282723;
  --muted: rgba(40, 39, 35, 0.68);
  --soft: rgba(72, 70, 64, 0.12);
  --line: rgba(74, 71, 64, 0.2);
  --bg: #d7d7d3;
  --panel: #e7e5df;
  --gold: #b68a36;
  --gold-deep: #7e6127;
  --green: #777d72;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(182, 138, 54, 0.18), transparent 34rem),
    linear-gradient(135deg, #e5e3dc 0%, #d7d7d3 46%, #c5c4bd 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(40, 39, 35, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 39, 35, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(220, 219, 213, 0.9), rgba(220, 219, 213, 0.52), rgba(220, 219, 213, 0));
  backdrop-filter: blur(14px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

nav {
  gap: clamp(12px, 2.6vw, 34px);
  color: rgba(40, 39, 35, 0.74);
  font-size: 13px;
}

nav a {
  transition: color 180ms ease;
}

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

.nav-contact {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 128px clamp(18px, 5vw, 72px) 48px;
  overflow: clip;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.92) brightness(1.12) grayscale(0.16);
  transform: scale(1.03);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(231, 229, 222, 0.94) 0%, rgba(219, 218, 211, 0.82) 43%, rgba(219, 218, 211, 0.28) 100%),
    linear-gradient(to top, #d7d7d3 0%, rgba(215, 215, 211, 0.16) 38%, rgba(215, 215, 211, 0.58) 100%);
}

.hero-content {
  align-self: end;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(56px, 7vw, 116px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.6vw, 78px);
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.lead,
.section-copy p,
.band-copy p,
.plans-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.62;
}

.lead {
  max-width: 560px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #161005;
  background: linear-gradient(135deg, #a97f31, #d8ba74);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(232, 230, 224, 0.54);
}

.hero-facts {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(560px, calc(100% - 36px));
  border: 1px solid var(--line);
  background: rgba(232, 230, 224, 0.68);
  backdrop-filter: blur(22px);
}

.hero-facts div {
  min-height: 130px;
  padding: 18px;
}

.hero-facts strong {
  display: block;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ticker {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(217, 216, 210, 0.72);
}

.ticker span {
  flex: 0 0 auto;
  padding: 16px clamp(22px, 5vw, 58px);
  border-right: 1px solid var(--line);
  color: rgba(40, 39, 35, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.asset-section,
.siteplan-strip,
.plans-section,
.risk-section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 0;
}

.asset-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: end;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-grid article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(232, 230, 224, 0.58);
  transition: background 180ms ease, transform 180ms ease;
}

.metric-grid article:hover {
  background: rgba(182, 138, 54, 0.12);
  transform: translateY(-4px);
}

.metric-grid span,
.risk-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin: 18px 0 14px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.metric-grid p,
.risk-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.siteplan-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: 0;
}

.siteplan-strip h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.siteplan-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(232, 230, 224, 0.72);
}

.siteplan-image img {
  width: 100%;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 520ms ease;
}

.siteplan-image:hover img {
  transform: scale(1.024);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 760px;
  border-block: 1px solid var(--line);
  background: #dad9d3;
}

.band-image {
  min-height: 560px;
  overflow: hidden;
}

.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.06);
  transition: transform 600ms ease;
}

.band-image:hover img {
  transform: scale(1.035);
}

.band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
}

dl {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 18px;
  background: #e4e2dc;
}

dt {
  color: var(--gold);
  font-weight: 900;
}

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

.plans-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.plan-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(232, 230, 224, 0.72);
  box-shadow: 0 32px 110px rgba(71, 68, 58, 0.18);
}

.plan-frame img {
  width: 100%;
  transition: transform 500ms ease;
}

.plan-frame:hover img {
  transform: scale(1.025);
}

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

.prospektus-head {
  margin-bottom: 48px;
}

.prospektus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.prospektus-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 300ms ease, transform 300ms ease;
}

.prospektus-card:hover {
  border-color: var(--gold);
  transform: scale(1.015);
}

.prospektus-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease, filter 400ms ease;
}

.prospektus-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.prospektus-card.tall img {
  height: 340px;
}

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

.prospektus-card.wide img {
  height: 280px;
}

@media (max-width: 640px) {
  .prospektus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .prospektus-card img {
    height: 140px;
  }
  .prospektus-card.tall img {
    height: 200px;
  }
  .prospektus-card.wide img {
    height: 160px;
  }
  .prospektus-card.wide {
    grid-column: span 2;
  }
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 10, 8, 0.92);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  padding: 24px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: min(90vh, 900px);
  object-fit: contain;
  border: 1px solid var(--gold-deep);
  border-radius: 4px;
  box-shadow: 0 32px 120px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 42px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 200ms ease;
  line-height: 1;
}

.lightbox-close:hover {
  opacity: 1;
}

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

.risk-head {
  max-width: 910px;
  margin-bottom: 54px;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.risk-list article {
  min-height: 260px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.risk-list h3 {
  margin-top: 34px;
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
  overflow: clip;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(182, 138, 54, 0.18), transparent 44%),
    #d4d3cd;
}

.coin-stack {
  position: absolute;
  inset: auto 7vw -52px auto;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.62;
  transform: rotate(-8deg);
}

.coin-stack video,
.coin-stack img {
  width: clamp(160px, 20vw, 280px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

.coin-stack video {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: screen;
  box-shadow: 0 0 0 1px rgba(215, 180, 106, 0.22), 0 0 70px rgba(215, 180, 106, 0.2);
}

.coin-stack img {
  width: clamp(110px, 13vw, 180px);
  opacity: 0.48;
}

.contact-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  text-align: center;
}

.contact-copy a {
  display: inline-flex;
  margin: 8px 10px 0;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: rgba(40, 39, 35, 0.62);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #c7c6bf;
}

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

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

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-content {
    align-self: start;
  }

  .hero-facts {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 48px;
  }

  .hero-facts div {
    min-height: auto;
  }

  .asset-section,
  .siteplan-strip,
  .image-band,
  .plans-section {
    grid-template-columns: 1fr;
  }

  .image-band {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-bottom: 34px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 38px;
  }

  .metric-grid,
  .risk-list {
    grid-template-columns: 1fr;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .band-copy {
    padding: 34px 18px;
  }

  .contact-section {
    min-height: 460px;
  }

  .coin-stack {
    right: -42px;
    bottom: -36px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
