:root {
  --ink: #35242c;
  --muted: #78636b;
  --cream: #fffaf7;
  --blush: #f9e3e1;
  --rose: #bc4d75;
  --line: rgba(81, 50, 62, 0.12);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  align-items: center;
  background: rgba(255, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 19px 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wordmark {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

nav {
  display: flex;
  gap: 14px;
}

nav a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  align-items: center;
  background: linear-gradient(145deg, #fff8f5, #f8dfdf);
  display: flex;
  min-height: 700px;
  overflow: hidden;
  padding: 74px 20px;
  position: relative;
}

.hero-content {
  margin: auto;
  max-width: 720px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-orb {
  background: rgba(255, 255, 255, 0.54);
  border-radius: 48% 52% 60% 40%;
  filter: blur(1px);
  position: absolute;
}

.hero-orb-left {
  height: 320px;
  left: -140px;
  top: 150px;
  transform: rotate(22deg);
  width: 270px;
}

.hero-orb-right {
  bottom: -70px;
  height: 360px;
  right: -140px;
  transform: rotate(-28deg);
  width: 310px;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 14vw, 6.8rem);
}

h2 {
  font-size: clamp(2.5rem, 11vw, 5rem);
}

em {
  color: var(--rose);
}

.hero-copy,
.manifesto > p:last-child,
.notes > p:last-child {
  color: var(--muted);
  margin: 20px auto 28px;
  max-width: 590px;
}

.button {
  background: var(--rose);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 14px;
  padding: 15px 22px;
}

.section {
  margin: auto;
  max-width: 1120px;
  padding: 82px 20px;
}

.manifesto,
.notes {
  text-align: center;
}

.journal {
  border-top: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.cards article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 260px;
  padding: 22px;
}

.cards span,
.cards p,
.cards a {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cards p {
  margin: 42px 0 8px;
}

h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 26px;
}

footer {
  background: #38242e;
  color: rgba(255, 255, 255, 0.7);
  padding: 42px 20px;
  text-align: center;
}

footer .wordmark {
  color: white;
}

footer p,
footer nav,
footer small {
  display: block;
  font-size: 0.74rem;
  margin: 14px 0 0;
}

footer nav {
  display: flex;
  justify-content: center;
}

footer nav a {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 760px) {
  header {
    padding: 19px 44px;
  }

  nav {
    gap: 24px;
  }

  .hero {
    min-height: 760px;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
