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

:root {
  --bordo: #7a1f2e;
  --bordo-dark: #5c1622;
  --bordo-light: #a83244;
  --cream: #faf7f4;
  --cream-muted: #f0ebe5;
  --text: #2a2224;
  --text-muted: #6b5f62;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100dvh;
  line-height: 1.6;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.page__accent {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  max-width: 32rem;
  max-height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 31, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page__accent::after {
  content: "";
  position: absolute;
  bottom: -60%;
  left: -80%;
  width: 70vw;
  height: 70vw;
  max-width: 28rem;
  max-height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 31, 46, 0.05) 0%, transparent 70%);
}

/* Logo */

.brand {
  display: flex;
  justify-content: center;
  width: 100%;
}

.brand__logo {
  width: 100%;
  max-width: 11rem;
  height: auto;
}

.brand__logo path {
  fill: var(--bordo);
}

/* Hero */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordo);
  background: rgba(122, 31, 46, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

.hero__title {
  font-size: clamp(1.75rem, 5vw, 2.375rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Contact */

.contact {
  width: 100%;
  border-top: 1px solid var(--cream-muted);
  padding-top: 2rem;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.contact__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bordo-light);
}

.contact__link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__link:hover {
  color: var(--bordo);
}

.contact__address {
  font-style: normal;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .page {
    padding: 4rem 2rem;
  }

  .page__inner {
    max-width: 40rem;
    gap: 3.5rem;
  }

  .brand__logo {
    max-width: 13rem;
  }

  .contact__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }

  .contact__item {
    flex: 0 1 auto;
    align-items: center;
  }
}
