:root {
  color-scheme: light;
  --bg: #faf8f4;
  --bg-warm: #f3ede3;
  --surface: #ffffff;
  --text: #2a2824;
  --muted: #7a7368;
  --routine: #4a7c6f;
  --routine-light: #6fa896;
  --routine-dim: rgba(74, 124, 111, 0.1);
  --stay: #c4956a;
  --stay-soft: #e8d5bc;
  --border: rgba(42, 40, 36, 0.09);
  --shadow: 0 20px 50px rgba(74, 124, 111, 0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 20%, var(--routine-dim), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(196, 149, 106, 0.12), transparent 45%),
    linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 50%, #fdfcfa 100%);
}

.backdrop__arc {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border: 1px solid rgba(74, 124, 111, 0.15);
  border-radius: 50% 50% 0 0;
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 44px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.hero {
  text-align: center;
  margin-bottom: 44px;
}

.hero__inner {
  display: inline-block;
  text-align: left;
  max-width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--routine);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--stay);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.brand-title .routine {
  color: var(--routine);
}

.brand-title .stay {
  color: var(--stay);
  font-style: italic;
}

h1 {
  margin: 20px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 18px;
  max-width: 48ch;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.82;
}

.updated {
  margin-top: 22px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--routine-light);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 26px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.highlights li:nth-child(1) {
  border-top: 3px solid var(--routine);
}

.highlights li:nth-child(2) {
  border-top: 3px solid var(--stay);
}

.highlights li:nth-child(3) {
  border-top: 3px solid rgba(42, 40, 36, 0.2);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

.highlights span {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.58;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--routine);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.68;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-warm) 100%);
  border-radius: var(--radius);
}

a {
  color: var(--routine);
  text-decoration: none;
  border-bottom: 1px solid var(--stay-soft);
}

a:hover {
  color: var(--stay);
}

.footer {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.footer strong .routine {
  color: var(--routine);
}

.footer strong .stay {
  color: var(--stay);
  font-style: italic;
}

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

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

  .card--wide {
    grid-column: auto;
  }

  .hero {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 40px 0 64px;
    width: min(100% - 28px, 900px);
  }
}
