@font-face {
  font-family: "QVSerif";
  src: url("assets/fonts/cormorant-garamond-300.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep-forest: #1b3a2d;
  --quavie-green: #2d6a4f;
  --green-mid: #3d7a5f;
  --amber: #c8913a;
  --linen: #f7f3ee;
  --linen-dark: #ede8e0;
  --ink: #1a1a18;
  --ink-soft: #3d3d38;
  --ink-muted: #7a7a72;
  --rust: #a13d2b;
  --serif: "QVSerif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.lockup {
  display: flex;
  align-items: center;
}

.logo-lockup {
  height: 42px;
  width: auto;
  display: block;
}

.site-header .tag {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 24px;
  margin: 0 -24px;
  border-bottom: 1px solid var(--linen-dark);
  position: relative;
}

section:last-of-type {
  border-bottom: none;
}

section.tinted {
  background: #eaf4ee;
}

section.reversed {
  background: var(--deep-forest);
  color: var(--linen);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.blob {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--green-mid);
  opacity: 0.35;
}

.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  line-height: 1.15;
  max-width: 15ch;
  letter-spacing: -0.01em;
  color: var(--deep-forest);
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  margin-top: 28px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quavie-green);
  margin-bottom: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--quavie-green);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.2em;
  letter-spacing: 0.02em;
  text-transform: none;
  vertical-align: -0.03em;
}

.positioning-text {
  font-size: 1.2rem;
  font-family: var(--serif);
  font-weight: 400;
  max-width: 52ch;
  line-height: 1.5;
  color: var(--deep-forest);
}

.founder .mark-reversed {
  height: 44px;
  width: auto;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.founder blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  line-height: 1.55;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}

.founder-attr {
  margin-top: 20px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 238, 0.75);
  position: relative;
  z-index: 1;
}

.domain-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 480px;
}

.domain-list li {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--deep-forest);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--linen-dark);
}

.status-text {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.notify-form {
  max-width: 420px;
}

.notify-row {
  display: flex;
  gap: 12px;
}

.notify-row input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--linen-dark);
  background: var(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
}

.notify-row input[type="email"]:focus {
  outline: none;
  border-color: var(--quavie-green);
}

.notify-submit {
  padding: 14px 26px;
  border: 1px solid var(--quavie-green);
  background: var(--quavie-green);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.notify-submit:hover {
  opacity: 0.88;
}

.notify-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-consent {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.notify-error {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--rust);
}

.notify-success p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--quavie-green);
  max-width: 46ch;
}

.site-footer {
  background: var(--deep-forest);
  padding: 32px 24px;
  display: flex;
  justify-content: center;
  gap: 220px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  height: 26px;
  width: auto;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--linen);
}

.footer-logo span {
  color: var(--amber);
}

.footer-domain {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 238, 0.45);
}

@media (max-width: 560px) {
  section {
    padding: 64px 24px;
  }
  .domain-list {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .site-footer {
    gap: 12px;
    flex-direction: column;
  }
  .notify-row {
    flex-direction: column;
  }
}
