:root {
  --black: #181818;
  --black-soft: #202020;
  --white: #f1f0ec;
  --white-soft: #deddd8;
  --muted: #b8b7b2;
  --line: #f1f0ec;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  width: min(100%, 560px);
  margin: 0 auto;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  padding: 0 22px 32px;
  background: var(--black);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: none;
  text-align: center;
  z-index: 1;
}

.slogan-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  margin-top: 20vh;
  padding: 48px 28px;
}

.eyebrow {
  margin: 20vh 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: none;
  color: var(--white);
  font-size: clamp(2.05rem, 11vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--white-soft);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--white);
  color: var(--black);
}

.button-secondary {
  background: transparent;
}

.button:hover,
.button:focus-visible {
  background: var(--white-soft);
  border-color: var(--white-soft);
  color: var(--black);
}

.portrait-placeholder {
  display: block;
  justify-self: center;
  width: min(100%, 220px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(241, 240, 236, 0.22);
  background: var(--black);
  z-index: 1;
}

.corner {
  position: absolute;
  width: 86px;
  height: 86px;
  pointer-events: none;
}

.corner::before,
.corner::after {
  position: absolute;
  content: '';
  background: var(--line);
}

.corner-top {
  top: 0;
  left: 0;
}

.corner-top::before {
  top: 0;
  left: 0;
  width: 86px;
  height: 10px;
}

.corner-top::after {
  top: 0;
  left: 0;
  width: 10px;
  height: 64px;
}

.corner-bottom {
  right: 0;
  bottom: 0;
}

.corner-bottom::before {
  right: 0;
  bottom: 0;
  width: 86px;
  height: 10px;
}

.corner-bottom::after {
  right: 0;
  bottom: 0;
  width: 10px;
  height: 64px;
}

