:root {
  --ink: #171512;
  --paper: #fbf8f1;
  --soft: rgba(255, 250, 240, 0.78);
  --line: rgba(255, 255, 255, 0.48);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding: clamp(28px, 6vw, 92px);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: url("assets/hero-desk.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.96) 0%, rgba(251, 248, 241, 0.72) 38%, rgba(251, 248, 241, 0.2) 78%),
    linear-gradient(180deg, rgba(251, 248, 241, 0.16), rgba(251, 248, 241, 0.62));
}

.hero__content {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(24px, 4vw, 42px) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: #705f4d;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 750;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.92;
  font-weight: 820;
  letter-spacing: 0;
}

.subtitle {
  margin: 24px 0 0;
  max-width: 560px;
  color: #3c342d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.18;
}

.daily-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.daily-line span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--soft);
  color: #4e4237;
  font-size: 14px;
  font-weight: 720;
  backdrop-filter: blur(16px);
}

@media (max-width: 700px) {
  .hero {
    align-items: end;
    padding: 28px;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(251, 248, 241, 0.16) 0%, rgba(251, 248, 241, 0.82) 48%, rgba(251, 248, 241, 0.98) 100%);
  }
}
