:root {
  color-scheme: dark;
  --bg: #171916;
  --text: #f5f5ef;
  --muted: #b6b9ad;
  --line: #3a3d33;
  --accent: #dfff70;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--text); }
::selection { background: var(--accent); color: var(--bg); }
p, h1, h2 { margin: 0; }

.page {
  width: min(100%, 1920px);
  min-height: 100svh;
  margin-inline: auto;
  padding: 0 clamp(24px, 4vw, 80px);
  display: flex;
  flex-direction: column;
}
.masthead {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.identity { display: flex; gap: 16px; align-items: center; }
.monogram {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -3px;
  padding-right: 3px;
  border-radius: 50%;
}
.domain { font-size: 1rem; font-weight: 600; letter-spacing: -.02em; }
.opening { font-size: .875rem; color: var(--muted); display: flex; align-items: center; gap: 24px; }
.opening span { font-size: 1.5rem; color: var(--accent); }
.hero { flex: 1; display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 2vw; padding-block: 50px 54px; }
.hero-content { position: relative; z-index: 1; }
.eyebrow { font-size: .875rem; letter-spacing: .025em; color: var(--muted); margin-bottom: 36px; }
.wordmark { font-size: clamp(6rem, min(13.2vw, 21vh), 15.5rem); line-height: .82; letter-spacing: -.065em; font-weight: 900; }
.wordmark-top, .wordmark-bottom { display: flex; align-items: baseline; white-space: nowrap; }
.wordmark-bottom { margin-top: 12px; }
.wordmark-by { font-family: Georgia, 'Times New Roman', serif; font-size: .29em; font-weight: 400; font-style: italic; letter-spacing: -.06em; margin-right: .18em; color: var(--accent); }
.wordmark-period { color: var(--accent); }
.intro { display: flex; gap: 23px; margin-top: 60px; align-items: flex-start; }
.intro-mark { color: var(--accent); font-size: 48px; line-height: 1; }
.intro h2 { font-size: clamp(1.75rem, 2.5vw, 3rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.2; }
.intro p { font-size: 1rem; line-height: 1.55; color: var(--muted); margin-top: 12px; }
.hero-art { aspect-ratio: 1; position: relative; min-width: 0; max-height: min(560px, calc(100svh - 380px)); }
.sculpture { width: 100%; height: 100%; display: block; object-fit: contain; mask-image: radial-gradient(ellipse 65% 62% at 50% 49%, #000 47%, transparent 80%); }
.art-caption { position: absolute; bottom: -20px; left: 9%; right: 4%; display: flex; justify-content: space-between; gap: 16px; font-size: .75rem; color: var(--muted); letter-spacing: .03em; }
.footer { min-height: 105px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer > p { font-size: .875rem; color: var(--muted); }
.footer-signature { display: flex; align-items: center; gap: 18px; font-size: .75rem; letter-spacing: .06em; }
.soon { display: block; padding: 10px 15px; background: var(--accent); color: var(--bg); border-radius: 2px; font-weight: 700; letter-spacing: .09em; }

@media (min-width: 1600px) { .hero { gap: 4vw; } }
@media (min-width: 901px) and (max-height: 800px) {
  .masthead { min-height: 88px; }
  .hero { padding-block: 34px 42px; }
  .eyebrow { margin-bottom: 26px; }
  .wordmark { font-size: clamp(6rem, min(13.2vw, 21vh), 15.5rem); }
  .intro { margin-top: 36px; }
  .hero-art { max-height: min(480px, calc(100svh - 260px)); }
  .footer { min-height: 78px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-block: 50px; }
  .wordmark { font-size: clamp(6rem, 21vw, 11.5rem); }
  .hero-art { width: min(100%, 520px); max-height: none; justify-self: center; }
  .art-caption { bottom: 0; }
  .intro { margin-top: 40px; }
}
@media (max-width: 540px) {
  .masthead { min-height: 92px; gap: 16px; }
  .identity { gap: 10px; }
  .monogram { width: 34px; height: 34px; font-size: 21px; }
  .domain { font-size: .875rem; }
  .opening { font-size: .75rem; gap: 0; max-width: 66px; line-height: 1.45; }
  .opening span { display: none; }
  .hero { padding-block: 37px 44px; gap: 24px; }
  .eyebrow { margin-bottom: 28px; font-size: .875rem; }
  .wordmark { font-size: clamp(2rem, 21vw, 7.1rem); }
  .wordmark-bottom { margin-top: 10px; }
  .intro { margin-top: 32px; gap: 15px; }
  .intro-mark { font-size: 35px; }
  .intro h2 { font-size: 1.875rem; }
  .intro p { margin-top: 8px; max-width: 240px; }
  .art-caption { left: 0; right: 0; font-size: .75rem; }
  .footer { align-items: flex-start; padding-block: 26px; min-height: 125px; flex-direction: column; gap: 20px; }
  .footer-signature { width: 100%; justify-content: space-between; }
}

@media (max-width: 359px) {
  .masthead { flex-wrap: wrap; padding-block: 20px; gap: 14px; }
  .intro h2 { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
