:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18171c;
  background: #fbfaf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fbfaf8;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid #e7e1d7;
  background: rgba(251, 250, 248, 0.94);
  position: sticky;
  top: 0;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 720;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #17151c;
  color: #f4d7b2;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

nav a,
footer a {
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 520px;
  background: #efe7dc;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(24, 23, 28, 0.88), rgba(24, 23, 28, 0.42)),
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAFgwJ/lJp2tgAAAABJRU5ErkJggg==");
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 0 28%, rgba(244, 215, 178, 0.18) 28% 42%, transparent 42%),
    linear-gradient(145deg, transparent 0 50%, rgba(130, 34, 43, 0.22) 50% 68%, transparent 68%);
}

.pin-preview {
  position: absolute;
  display: grid;
  place-items: end start;
  width: 148px;
  aspect-ratio: 2 / 3;
  padding: 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 760;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.pin-preview span {
  position: relative;
  z-index: 1;
}

.pin-one {
  left: 12%;
  top: 18%;
  background: linear-gradient(160deg, #842f3a, #dba45b);
}

.pin-two {
  right: 16%;
  top: 28%;
  background: linear-gradient(160deg, #1f5d5a, #87a58b);
}

.pin-three {
  left: 36%;
  bottom: 14%;
  background: linear-gradient(160deg, #282a35, #8a7f74);
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding: clamp(42px, 8vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #8b2f3b;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  font-size: 30px;
}

.hero-copy p:not(.eyebrow),
.content p {
  color: #343039;
  font-size: 18px;
  line-height: 1.72;
}

.content-band {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 4vw, 56px);
  background: #fbfaf8;
}

.content {
  max-width: 900px;
  margin: 0 auto;
}

.policy p {
  margin: 0 0 24px;
}

.page-title {
  padding: clamp(60px, 10vw, 108px) clamp(20px, 4vw, 56px);
  background: #efe7dc;
}

.page-title h1,
.page-title .eyebrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-top: 1px solid #e7e1d7;
  color: #5e5861;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 320px;
  }

  .hero-copy {
    padding: 36px 22px 46px;
  }

  .pin-preview {
    width: 120px;
  }
}
