:root {
  --bg: #000;
  --text: #ffffff;
  --muted: #9c9c9c;
  --muted-strong: #b7b7b7;
  --accent: #c24c96;
  --rule: rgba(255, 255, 255, 0.58);
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(194, 76, 150, 0.08), transparent 28%),
    #000;
}

.hero {
  width: min(100%, var(--max-width));
  padding: clamp(52px, 8vw, 98px) clamp(24px, 7vw, 92px) clamp(38px, 6vw, 72px);
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: clamp(250px, 51vw, 540px);
  height: auto;
  display: block;
}

.line {
  height: 3px;
  background: var(--accent);
}

.line-large {
  width: min(520px, 64vw);
  margin: clamp(32px, 4.5vw, 48px) 0 28px;
}

.line-small {
  width: 126px;
  margin: clamp(32px, 4vw, 46px) 0 clamp(42px, 5vw, 60px);
}

.tagline {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.tagline span {
  color: var(--accent);
}

.announcement {
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: clamp(14px, 2.1vw, 22px);
  font-weight: 500;
  letter-spacing: clamp(0.18em, 1.2vw, 0.55em);
  text-transform: uppercase;
}

.announcement h2 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: clamp(0.20em, 1.25vw, 0.42em);
  text-transform: uppercase;
}

.intro {
  margin: clamp(22px, 3vw, 30px) auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.45;
  font-weight: 300;
}

.building-wrap {
  margin: clamp(36px, 5vw, 58px) auto clamp(54px, 7vw, 86px);
  width: min(800px, 100%);
  position: relative;
}

.building-wrap::before,
.building-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.building-wrap::before {
  background:
    linear-gradient(90deg, #000 0%, transparent 16%, transparent 84%, #000 100%),
    linear-gradient(0deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
  z-index: 1;
}

.building-wrap img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.08) saturate(0.88);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 86px);
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}

.info-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: start;
}

.icon {
  width: 74px;
  height: 74px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin: 10px 0 28px;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.35;
  font-weight: 300;
}

.footer {
  max-width: 860px;
  margin: clamp(52px, 7vw, 72px) auto 0;
  padding-top: clamp(38px, 5vw, 52px);
  border-top: 1px solid var(--rule);
}

.footer a {
  color: var(--accent);
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: clamp(0.24em, 1.3vw, 0.46em);
  font-weight: 500;
}

@media (max-width: 760px) {
  .hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .line-large {
    width: 72%;
  }

  .intro br {
    display: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 420px;
  }

  .info-card {
    grid-template-columns: 68px 1fr;
    gap: 18px;
  }

  .icon {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .icon svg {
    width: 30px;
    height: 30px;
  }

  .info-card h3 {
    margin-top: 4px;
    margin-bottom: 14px;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 42px;
  }

  .logo {
    width: 250px;
  }

  .announcement h2 {
    letter-spacing: 0.18em;
  }

  .eyebrow {
    letter-spacing: 0.16em;
  }

  .footer a {
    letter-spacing: 0.22em;
  }
}
