:root {
  color-scheme: light;
  --ink: #231f20;
  --muted: #6f6867;
  --accent: #c9793c;
  --line: #e7e1df;
  --page: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, var(--accent) 65%, transparent);
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

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

.intro {
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  text-align: center;
}

.logo {
  display: block;
  width: clamp(230px, 52vw, 420px);
  height: auto;
  margin-bottom: clamp(28px, 5vw, 46px);
}

.content {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.domain {
  margin: 0;
  color: var(--accent);
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.7rem);
  font-weight: 300;
  line-height: 0.98;
  text-wrap: balance;
}

.summary {
  max-width: 620px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
  text-wrap: balance;
}

.contact {
  display: grid;
  gap: 11px;
  width: min(100%, 560px);
  margin-top: clamp(30px, 6vw, 50px);
  padding-top: clamp(22px, 4vw, 30px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  font-style: normal;
  line-height: 1.55;
}

.contact p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
}

.contact span {
  display: inline-block;
}

@media (max-width: 520px) {
  .landing {
    place-items: start center;
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .contact p {
    flex-direction: column;
    gap: 2px;
  }

  .contact p:nth-child(2) {
    flex-direction: row;
  }
}
