:root {
  color-scheme: light;
  --paper: #f1eee8;
  --ink: #202522;
  --muted: #686e69;
  --accent: #d86c48;
  --accent-soft: #efb39d;
  --line: rgba(32, 37, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 108, 72, 0.12), transparent 28rem),
    linear-gradient(rgba(32, 37, 34, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 37, 34, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 32px 32px, 32px 32px, auto;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-content: center;
  gap: 72px;
  padding: 120px 0 88px;
}

.brand {
  position: absolute;
  top: 38px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-name {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 39px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 46% 46% 42% 42%;
  color: var(--paper);
  background: var(--ink);
}

.ear {
  position: absolute;
  top: -6px;
  width: 14px;
  height: 15px;
  background: var(--ink);
  transform: rotate(45deg);
  border-radius: 3px 8px 3px 8px;
}

.ear-left {
  left: 3px;
}

.ear-right {
  right: 3px;
}

.face {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1;
}

.content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7.1vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lead {
  max-width: 560px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.status {
  width: fit-content;
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.32);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(216, 108, 72, 0.13);
}

.note {
  align-self: end;
  margin-bottom: 68px;
  padding: 22px 0 2px 24px;
  border-left: 1px solid var(--accent-soft);
  color: var(--muted);
}

.note-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note p {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-separator {
  color: var(--accent);
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 36px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 124px 0 70px;
  }

  .note {
    max-width: 310px;
    margin: 0;
  }

  h1 {
    font-size: clamp(48px, 13.6vw, 78px);
  }
}

@media (max-width: 480px) {
  .page {
    width: min(100% - 28px, 430px);
  }

  .hero {
    padding-top: 112px;
  }

  .brand {
    top: 28px;
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

  .lead {
    margin-top: 28px;
    font-size: 17px;
  }

  .status {
    margin-top: 34px;
    font-size: 13px;
  }

  footer {
    min-height: 62px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: breathe 3s ease-in-out infinite;
  }

  @keyframes breathe {
    50% {
      box-shadow: 0 0 0 8px rgba(216, 108, 72, 0.06);
    }
  }
}
