/* Awake & Upright — Domain for Sale
   Dawn light · breath · rising into life · typographic word-stack */

:root {
  --bg: #08090a;
  --bg-elevated: #0e1012;
  --bg-card: #121518;
  --bg-card-hover: #161a1e;
  --border: rgba(196, 178, 140, 0.22);
  --border-soft: rgba(255, 255, 255, 0.06);
  --accent: #c4b28c;
  --accent-soft: #ebe0c4;
  --accent-dim: rgba(196, 178, 140, 0.4);
  --sage: #9aa894;
  --sage-dim: rgba(154, 168, 148, 0.28);
  --bronze: #a8896a;
  --text: #f4f1e9;
  --text-muted: rgba(244, 241, 233, 0.64);
  --text-faint: rgba(244, 241, 233, 0.38);
  --danger: #e8a0a0;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1080px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
  --spine-x: 50%;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-axis-pulse,
  .breath,
  .scroll-hint span { animation: none !important; }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--accent); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.hide-sm { display: none; }
@media (min-width: 640px) { .hide-sm { display: inline; } }

/* ——— Ambient: dawn + spine ——— */
.ambient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.dawn {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 58% at 50% -10%, rgba(212, 180, 130, 0.20), transparent 58%),
    radial-gradient(ellipse 55% 42% at 50% 2%, rgba(168, 148, 120, 0.09), transparent 52%),
    radial-gradient(ellipse 40% 28% at 50% 8%, rgba(154, 168, 148, 0.06), transparent 55%),
    linear-gradient(180deg, #0d0f12 0%, var(--bg) 42%, #070809 100%);
}

.spine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(196, 178, 140, 0.18) 12%,
    rgba(196, 178, 140, 0.08) 40%,
    transparent 78%
  );
}

.glow--top {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(760px, 92vw);
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(232, 210, 170, 0.16), transparent 68%);
  filter: blur(10px);
}

.breath {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(196, 178, 140, 0.16);
  transform: translateX(-50%);
  animation: breath 9s var(--ease) infinite;
}
.breath--1 {
  top: 18%;
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}
.breath--2 {
  top: 22%;
  width: 280px;
  height: 280px;
  opacity: 0.55;
  animation-delay: 1.8s;
}

@keyframes breath {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50% { transform: translateX(-50%) scale(1.06); opacity: 0.65; }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(8, 9, 10, 0.72);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}
.brand:hover { color: var(--accent-soft); }

.mark {
  color: var(--accent);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0 0.15em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header-nav a:hover { color: var(--accent-soft); }

.header-cta {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent-soft) !important;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.header-cta:hover {
  background: rgba(196, 178, 140, 0.1);
  border-color: var(--accent);
}

@media (max-width: 560px) {
  .header-nav a:not(.header-cta) { display: none; }
}

/* ——— Main stacking ——— */
main { position: relative; z-index: 1; }

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-lede,
.section-sub {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-sub strong { color: var(--accent-soft); font-weight: 500; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) 0 5rem;
  text-align: center;
}

.hero-inner {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

/* Word-stack typographic art */
.word-stack {
  position: relative;
  z-index: 2;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.word {
  display: block;
  color: var(--text);
}

.word--awake {
  font-size: clamp(3.4rem, 12vw, 6.5rem);
  font-weight: 500;
}

.word--and {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.35em;
  text-transform: lowercase;
  margin: 0.35rem 0 0.2rem;
  opacity: 0.9;
}

.word--upright {
  font-size: clamp(3.4rem, 12vw, 6.5rem);
  font-weight: 500;
}

.word--tld {
  margin-top: 0.55rem;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: lowercase;
}

/* Spine behind stack */
.hero-axis {
  position: absolute;
  top: 8%;
  bottom: 28%;
  left: 50%;
  width: 1px;
  z-index: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-axis-line {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(196, 178, 140, 0.45) 20%,
    rgba(196, 178, 140, 0.2) 70%,
    transparent
  );
}

.hero-axis-pulse {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 18px rgba(232, 223, 200, 0.55);
  animation: axis-pulse 4.5s var(--ease) infinite;
}

@keyframes axis-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(28px) scale(1.15); }
}

.tagline {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}

.lede {
  margin: 1rem auto 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.ask-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem 0.9rem;
  margin: 2.25rem 0 0;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(196, 178, 140, 0.04);
  width: fit-content;
  margin-inline: auto;
}

.ask-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.ask-amount {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}

.ask-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  overflow: hidden;
}
.scroll-hint span {
  display: block;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scroll-fall 2.2s var(--ease) infinite;
}
@keyframes scroll-fall {
  0% { transform: translateY(-24px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: #12100c;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #0a0907;
}

.btn--ghost {
  background: transparent;
  color: var(--accent-soft);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(196, 178, 140, 0.08);
  color: var(--text);
}

.btn--wide { width: 100%; }
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ——— Meaning (The name) ——— */
.meaning {
  border-top: 1px solid var(--border-soft);
}

.meaning-wrap { max-width: 820px; }

.meaning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .meaning-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
  }
}

.meaning-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.meaning-card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.meaning-word {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}

.meaning-eq {
  margin: 0.85rem 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--accent);
}

.meaning-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.meaning-join {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}
@media (min-width: 720px) {
  .meaning-join {
    flex-direction: column;
    height: 100%;
    min-height: 8rem;
  }
}

.join-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--border);
}
@media (min-width: 720px) {
  .join-line {
    width: 1px;
    height: 2.5rem;
  }
}

.join-and {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.meaning-close {
  margin: 2.5rem auto 0;
  max-width: 28rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.meaning-close em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-soft);
  font-size: 1.2em;
}

/* ——— Why ——— */
.why { background: linear-gradient(180deg, transparent, rgba(196, 178, 140, 0.03), transparent); }

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-inline: auto;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.why-item:first-child { border-top: 1px solid var(--border-soft); }

.why-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1.4;
  opacity: 0.85;
}

.why-item h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
}

.why-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ——— Personas ——— */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 760px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  padding: 1.85rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 1.15rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.card-mark {
  color: var(--accent);
  margin-bottom: 1.15rem;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ——— Specs ——— */
.specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  border: 1px solid var(--border-soft);
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--bg-card);
}
@media (min-width: 640px) {
  .specs { grid-template-columns: 1fr 1fr; }
}

.spec {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.75rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border-soft);
  margin: 0;
}
@media (min-width: 640px) {
  .spec:nth-child(odd) { border-right: 1px solid var(--border-soft); }
  .spec:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 639px) {
  .spec:last-child { border-bottom: none; }
}

.spec dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  align-self: center;
}

.spec dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

.comps {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.55;
}

/* ——— Inquiry ——— */
.inquiry {
  border-top: 1px solid var(--border-soft);
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196, 178, 140, 0.07), transparent 60%);
}

.inquiry-wrap { max-width: 540px; }

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.req { color: var(--accent); }
.opt {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: var(--text-faint);
  text-transform: lowercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 0.65rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }
.field input:hover,
.field textarea:hover { border-color: rgba(196, 178, 140, 0.35); }
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #121416;
  outline: none;
}
.field input.is-invalid,
.field textarea.is-invalid { border-color: var(--danger); }

.field textarea { resize: vertical; min-height: 8rem; }

.field-error {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--danger);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions { margin-top: 0.35rem; }

.form-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-faint);
  text-align: center;
}

.success-state {
  text-align: center;
  padding: 2.5rem 1rem;
}
.success-mark {
  color: var(--accent);
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.success-state h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
}
.success-state p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-stack {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.footer-stack .f-and {
  font-style: italic;
  font-size: 0.85em;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.footer-stack .f-tld {
  color: var(--text-faint);
  letter-spacing: 0.15em;
  font-size: 0.9em;
}

.footer-meta {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header.is-scrolled {
  background: rgba(8, 9, 10, 0.9);
  border-bottom-color: rgba(196, 178, 140, 0.12);
}


/* ——— Living tone: mobile hero + meaning intentionality ——— */
@media (max-width: 639px) {
  .hero {
    min-height: calc(100svh - var(--header-h));
    padding: 2.75rem 0 4.5rem;
  }

  .hero-inner {
    max-width: 22rem;
  }

  .word-stack {
    margin-top: 1.1rem;
  }

  .word--awake,
  .word--upright {
    font-size: clamp(3.15rem, 14.5vw, 4.25rem);
  }

  .word--and {
    margin: 0.4rem 0 0.25rem;
    letter-spacing: 0.32em;
  }

  .tagline {
    margin-top: 1.75rem;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .lede {
    margin-top: 0.95rem;
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 20.5rem;
  }

  .ask-block {
    margin-top: 1.85rem;
    padding: 1rem 1.25rem;
    gap: 0.4rem 0.75rem;
    border-radius: 1.25rem;
  }

  .hero-actions {
    margin-top: 1.75rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .meaning .section-head {
    margin-bottom: 2.25rem;
  }

  .meaning-card {
    padding: 1.85rem 1.4rem;
  }

  .meaning-word {
    font-size: 2.55rem;
  }

  .meaning-eq {
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .meaning-copy {
    font-size: 1rem;
    line-height: 1.6;
  }

  .meaning-close {
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.55;
    padding-inline: 0.25rem;
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .lede {
    max-width: 30rem;
  }

  .tagline {
    font-size: 1.55rem;
  }
}
