:root {
  --ink: #111827;
  --muted: #596275;
  --line: #d8dee9;
  --paper: #f5f7fa;
  --panel: #ffffff;
  --ice: #58c7e8;
  --navy: #123a5f;
  --green: #7aa66a;
  --gold: #c49a4a;
  --shadow: 0 18px 50px rgba(20, 36, 60, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .52), rgba(0, 0, 0, 0));
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .13);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, .86);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 14, 28, .9), rgba(4, 14, 28, .5) 48%, rgba(4, 14, 28, .14)),
    linear-gradient(0deg, rgba(4, 14, 28, .84), rgba(4, 14, 28, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 124px 0 190px;
}

.venue-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.venue-switch button {
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, .45);
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.venue-switch button.is-active {
  color: #10233d;
  background: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 700;
}

.primary-action {
  color: #0b2438;
  background: #fff;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, .48);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.quick-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: grid;
  width: min(960px, calc(100% - 36px));
  transform: translateX(-50%);
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(7, 20, 36, .78);
  backdrop-filter: blur(14px);
}

.stat {
  min-height: 94px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.stat:last-child {
  border-right: 0;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: clamp(22px, 3vw, 32px);
}

.stat span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 560px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #fff;
}

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

.intro-copy h2,
.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy p:last-child,
.contact-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.intro-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 30px;
}

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

.space-card,
.case-card {
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.space-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.space-figure {
  position: relative;
  min-width: 0;
  margin: 0;
  background: #f7f9fc;
}

.space-figure img {
  aspect-ratio: 16 / 10;
  height: 100%;
}

.space-figure.is-plan img {
  object-fit: contain;
  padding: 10px;
}

.space-figure.is-scene img {
  object-fit: cover;
}

.space-figure figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(9, 23, 39, .76);
  font-size: 12px;
  font-weight: 700;
}

.space-body {
  padding: 22px;
}

.space-body h3,
.case-body h3 {
  margin: 0;
  font-size: 21px;
}

.fact-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding-left: 18px;
  color: #253041;
  line-height: 1.45;
}

.fact-list li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
}

.space-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split {
  color: #fff;
  background: var(--navy);
}

.split .section-kicker {
  color: #aeeaff;
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.format-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 0 16px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .08);
}

.evidence {
  background: #eef3f7;
}

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

.case-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-body {
  min-height: 128px;
  padding: 20px;
  border-top: 3px solid var(--green);
}

.case-body span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.gallery-section {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr .9fr .9fr;
  gap: 14px;
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gallery figure:first-child {
  grid-row: span 2;
}

.gallery img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(0, 0, 0, .62);
  font-size: 13px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
  padding: clamp(58px, 8vw, 94px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: #172133;
}

.contact-panel {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 24px;
  background: rgba(255, 255, 255, .07);
}

.contact-panel img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  background: #fff;
  padding: 5px;
}

.contact-panel a {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel span {
  color: rgba(255, 255, 255, .68);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 980px) {
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 104px 0 250px;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 82px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

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

  .space-media {
    grid-template-columns: 1fr;
  }

  .gallery figure:first-child {
    grid-row: auto;
  }

  .contact-panel {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 18px;
  }

  .contact-panel img {
    width: 82px;
    height: 82px;
  }
}
