@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #EEECDF;
  --red: #D91E27;
  --graphite: #484B58;
  --graphite-soft: rgba(72, 75, 88, 0.76);
  --card: rgba(255, 255, 255, 0.28);
  --border: rgba(72, 75, 88, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--graphite);
  font-family: "Gilroy", "Manrope", "Inter", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
}

.card {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(220px, 330px) 1fr;
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--border);
  background: var(--card);
}

.logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 30px;
  color: var(--graphite);
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.text {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  color: var(--graphite-soft);
  font-size: clamp(17px, 2vw, 22px);
}

.text p {
  margin: 0;
}

.address {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--graphite);
  font-style: normal;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
}

@media (max-width: 760px) {
  .page {
    place-items: start center;
  }

  .card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px;
  }

  .logo {
    max-width: 240px;
  }
}
