:root {
  --bg: #131313;
  --surface: #201f1f;
  --surface-soft: #2a2a2a;
  --text: #e5e2e1;
  --muted: #d5c4ac;
  --gold: #ffdba0;
  --gold-strong: #ffb703;
  --gold-ink: #422c00;
  --border: rgba(81, 69, 50, 0.6);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.38;
}

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

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

.shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  background: rgba(19, 19, 19, 0.92);
}

.site-header__inner,
.section,
.footer__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-strong);
  color: var(--gold-ink);
  box-shadow: 0 12px 28px rgba(255, 183, 3, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button--primary {
  background: var(--gold-strong);
  color: var(--gold-ink);
}

.button--ghost {
  border: 1px solid rgba(213, 196, 172, 0.34);
  color: #f2e0cc;
  background: rgba(255, 255, 255, 0.02);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 72px 0 36px;
}

.hero__grid {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(42, 42, 42, 0.94);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--gold);
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.96;
  font-style: italic;
  letter-spacing: -0.045em;
}

.hero p {
  margin: 18px 0 0;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero__lede {
  color: var(--text);
}

.hero__sub {
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero__stat {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(213, 196, 172, 0.15);
  background: rgba(32, 31, 31, 0.9);
}

.hero__stat strong {
  display: block;
  color: #fff3dc;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.hero__stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__frame {
  padding: 18px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 183, 3, 0.18), transparent 20rem),
    rgba(32, 31, 31, 0.98);
  box-shadow: var(--shadow);
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.section {
  padding: 28px 0 70px;
}

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

.section__head p,
.note,
.card p,
.footer__inner,
.cta p {
  color: var(--muted);
}

.section__head p,
.note,
.cta p {
  max-width: 48rem;
  line-height: 1.75;
}

.gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(213, 196, 172, 0.14);
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.92), rgba(25, 24, 24, 1));
  box-shadow: var(--shadow);
}

.card--span-7 {
  grid-column: span 7;
}

.card--span-5 {
  grid-column: span 5;
}

.card--span-4 {
  grid-column: span 4;
}

.card--span-6 {
  grid-column: span 6;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card--tall img {
  height: 420px;
}

.card__body {
  padding: 18px 18px 20px;
}

.card__label {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h3 {
  margin: 10px 0 8px;
  color: #fff3dc;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  line-height: 1.72;
  font-size: 0.96rem;
}

.cta {
  padding: 10px 0 90px;
}

.cta__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: 28px;
  background: var(--gold-strong);
  color: var(--gold-ink);
}

.cta__band h2,
.cta__band p {
  color: inherit;
}

.cta__band .button--primary {
  background: #201f1f;
  color: var(--gold);
}

.footer {
  border-top: 1px solid var(--border);
  background: #0e0e0e;
}

.footer__inner {
  display: grid;
  gap: 24px;
  padding: 34px 0 42px;
  grid-template-columns: 1.15fr 1fr 1fr;
}

.footer h3,
.footer strong {
  color: #f2e0cc;
}

.footer__links {
  display: grid;
  gap: 10px;
}

@media (max-width: 960px) {
  .hero__grid,
  .footer__inner,
  .cta__band,
  .section__head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    display: none;
  }

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

  .card--span-7,
  .card--span-6,
  .card--span-5,
  .card--span-4 {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .section,
  .footer__inner {
    width: min(1120px, calc(100% - 28px));
  }

  .hero {
    padding-top: 50px;
  }

  .hero__frame {
    padding: 12px;
    border-radius: 24px;
  }

  .hero__frame img {
    border-radius: 16px;
  }

  .card img,
  .card--tall img {
    height: 270px;
  }

  .cta__band {
    padding: 26px;
  }
}
