* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-page: #000000;
  --bg-shell: #000000;
  --text: #ffffff;
  --muted: #d0d0d0;
  --soft-text: #e0e0e0;
  --hover: #6f6f6f;
  --button-bg: #000000;
  --button-text: #ffffff;
  --font-main: Verdana, sans-serif;
}

html,
body {
  min-height: 100%;
  background: var(--bg-page);
  color: var(--text);
  font-family: var(--font-main);
}

body {
  padding: 12px;
  font-synthesis: none;
}

h1,
h2,
h3,
p,
a,
figcaption,
button,
span,
em,
strong {
  font-family: inherit;
}

input,
textarea,
select,
label,
li,
ul,
ol,
small,
blockquote {
  font-family: inherit;
}

em {
  font-style: normal;
}

.page-shell {
  min-height: calc(100vh - 24px);
  background: var(--bg-shell);
  padding: 34px 58px 56px 58px;
  display: flex;
  flex-direction: column;
}

.topbar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 120px;
}

.topnav {
  display: flex;
  gap: 48px;
}

.topnav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-style: normal;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topnav a[aria-current="page"] {
  opacity: 1;
  font-weight: 400;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--hover);
  outline: none;
}

.topnav a:not([aria-current="page"]) {
  opacity: 0.82;
}

.topnav a:not([aria-current="page"]):hover,
.topnav a:not([aria-current="page"]):focus-visible {
  opacity: 1;
}

.hero {
  max-width: 1120px;
  padding-left: 22px;
}

.eyebrow {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 20px;
  font-style: normal;
  color: var(--muted);
}

.eyebrow-highlight {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.01em;
  animation: eyebrowPulse 1.8s ease-in-out infinite;
}

@keyframes eyebrowPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.headline {
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 1080px;
  margin-bottom: 60px;
  font-style: normal;
  text-wrap: balance;
}

.headline em,
.headline strong,
.headline span {
  font-weight: inherit;
  font-style: normal;
}

.hero-copy h1 {
  font-weight: 300;
  letter-spacing: -0.02em;
  font-style: normal;
}

.hero-copy h1 em,
.hero-copy h1 strong,
.hero-copy h1 span {
  font-weight: inherit;
  font-style: normal;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 13px 24px;
  border-radius: 999px;
  margin-top: 14px;
  font-style: normal;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 900px) {
  .page-shell {
    padding: 24px 24px 40px 24px;
  }

  .topbar {
    margin-bottom: 72px;
  }

  .topnav {
    gap: 24px;
  }

  .hero {
    padding-left: 0;
  }

  .eyebrow {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .headline {
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .contact-button {
    font-size: 13px;
    padding: 12px 20px;
    margin-top: 10px;
  }
}

.legal-shell {
  min-height: calc(100vh - 24px);
}

.legal-page {
  max-width: 820px;
  padding-left: 22px;
}

.legal-title {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-style: normal;
  margin-bottom: 28px;
}

.legal-content {
  max-width: 700px;
}

.legal-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--soft-text);
  font-style: normal;
  margin-bottom: 24px;
}

.legal-content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  transition: color 0.2s ease;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: var(--hover);
  outline: none;
}

@media (max-width: 900px) {
  .legal-page {
    padding-left: 0;
  }

  .legal-title {
    font-size: clamp(32px, 8vw, 46px);
    margin-bottom: 22px;
  }

  .legal-content p {
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 20px;
  }
}

::selection {
  background: #111111;
  color: #ffffff;
}

.home-shell {
  background: #000000;
  color: #ffffff;
}

.home-shell .topnav a,
.home-shell .eyebrow,
.home-shell .headline {
  color: #ffffff;
}

.home-shell .topnav a:not([aria-current="page"]) {
  opacity: 0.72;
}

.home-shell .topnav a:hover,
.home-shell .topnav a:focus-visible {
  color: #b8b8b8;
}

.home-shell .contact-button {
  background: #ffffff;
  color: #000000;
}

.home-shell .contact-button:hover,
.home-shell .contact-button:focus-visible {
  opacity: 0.9;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  align-items: center;
  gap: 40px;
  max-width: 1280px;
  min-height: calc(100vh - 260px);
  margin-top: -36px;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  align-self: center;
  height: 100%;
  transform: translateY(-40px);
}

.hero-portrait {
  display: block;
  width: 100%;
  max-width: 380px;
  max-height: 58vh;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
}

.hero-caption {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  font-style: normal;
  color: #cfcfcf;
  text-align: center;
  width: 100%;
  max-width: 380px;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    margin-top: -10px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-figure {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    transform: none;
  }

  .hero-portrait {
    width: min(100%, 320px);
    max-height: none;
  }

  .hero-caption {
    text-align: center;
    font-size: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
  }
}
