* {
  box-sizing: border-box;
}

:root {
  --pink: #f6d8e2;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.56);
  --border: rgba(17, 17, 17, 0.9);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Karla", Arial, sans-serif;
  color: var(--text);
  background: var(--pink);
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 35% 65%;
}

.panel {
  background: var(--pink);
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 48px 38px;
}

.content {
  width: 100%;
  max-width: 560px;
}

h1 {
  margin: 0 0 42px;
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  line-height: 1.28;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.intro {
  max-width: 520px;
  margin: 0 0 78px;
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 2.15;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--muted);
}

.links {
  display: grid;
  gap: 26px;
  margin-bottom: 70px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: 0.12em;
  background: transparent;
  transition: transform 140ms ease, background 140ms ease;
}

.links a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.22);
}

.socials {
  display: flex;
  gap: 24px;
}

.socials a {
  width: 42px;
  height: 42px;
  border: 1.4px solid var(--border);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1;
}

.hero {
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.13), rgba(0,0,0,0.13)),
    url("/assets/hero.png");
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .page {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: auto;
    padding: 52px 26px;
  }

  .hero {
    min-height: 52vh;
    order: -1;
  }

  .intro {
    margin-bottom: 48px;
  }

  .links {
    margin-bottom: 44px;
  }
}
