* {
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --panel: #111;
  --panel-soft: #171717;
  --text: #f2f2f2;
  --muted: #a9a9a9;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #54d7ff;
  --radius: 8px;
  --width: 1120px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(84, 215, 255, 0.08), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 26px),
    var(--bg);
  color: var(--text);
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    "Noto Sans JP",
    sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px max(18px, calc((100vw - var(--width)) / 2 + 18px));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.84);
  backdrop-filter: blur(12px);
}

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

.brand {
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
.site-footer a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img {
  width: 100%;
  min-height: inherit;
}

.hero img {
  height: min(760px, calc(100vh - 64px));
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68));
}

.hero__copy {
  position: absolute;
  left: max(18px, calc((100vw - var(--width)) / 2 + 18px));
  bottom: clamp(48px, 9vw, 110px);
  z-index: 2;
  width: min(620px, calc(100% - 36px));
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 10vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__copy p:not(.kicker),
.section__head p,
.status-grid p {
  color: var(--muted);
  line-height: 1.82;
}

.hero__copy p:not(.kicker) {
  max-width: 34em;
  margin: 22px 0 0;
  font-size: clamp(15px, 2vw, 18px);
}

.hero__meta {
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.26);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.section {
  width: min(100%, var(--width));
  margin: 0 auto;
  padding: 72px 18px 0;
}

.section--compact {
  padding-top: 52px;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.section__head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.section__head p:not(.kicker) {
  margin: 0;
  font-size: 14px;
}

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

.gallery-grid--wide {
  grid-template-columns: 1.35fr 0.9fr;
}

.shot-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.shot-card--large {
  grid-row: span 2;
  min-height: 538px;
}

.shot-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.shot-card:hover img {
  transform: scale(1.025);
}

.shot-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.shot-card p {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.shot-card h3,
.status-grid h3 {
  margin: 0;
  color: #fff;
}

.shot-card h3 {
  font-size: 20px;
}

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

.asset-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.asset-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.asset-strip figcaption {
  padding: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.status-grid article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.status-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.status-grid h3 {
  font-size: 18px;
  line-height: 1.42;
}

.status-grid p {
  margin: 12px 0 0;
  font-size: 14px;
}

.site-footer {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 70px 18px 32px;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero img {
    height: 620px;
  }

  .hero__copy {
    bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(44px, 18vw, 74px);
  }

  .section {
    padding-top: 48px;
  }

  .section__head,
  .gallery-grid,
  .gallery-grid--wide,
  .asset-strip,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .shot-card,
  .shot-card--large {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
