:root {
  --bg:             #f5ede0;
  --text:           #18181b;
  --text-secondary: #52525b;
  --text-tertiary:  #8a7a6c;
  --accent:         #c2410c;
  --accent-hover:   #9a3412;

  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1120px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Header ── */
.site-header { padding: 28px 0; }

.header-inner {
  display: flex;
  align-items: center;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
}

/* ── Main two-column layout ── */
#main {
  flex: 1;
  min-height: 0;
  display: flex;
}

.main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  flex: 1;
}

.left-col {
  display: flex;
  align-items: center;
}

.hero-headline {
  font-size: clamp(3.5rem, min(9vw, 15vh), 9rem);
  font-weight: 300;
  line-height: 0.91;
  letter-spacing: -0.03em;
}

.hero-headline strong { font-weight: 500; }

/* ── Right column ── */
.right-col {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 40px 0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Shared label */
.col-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ── Right column content — one size throughout ── */
.product-link,
.product-upcoming,
.contact-email,
.signup-form button {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3;
}

.product-link {
  color: var(--accent);
}
.product-link:hover { color: var(--accent-hover); text-decoration: underline; }

.product-upcoming {
  color: var(--text-tertiary);
  font-weight: 300;
}

/* ── Subscribe ── */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.signup-form input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-tertiary);
  padding: 8px 0;
  font-family: var(--font-mono);
  font-size: 1.375rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
}

.signup-form input[type="email"]:focus { border-bottom-color: var(--accent); }
.signup-form input[type="email"]::placeholder { color: var(--text-tertiary); }

.signup-form button {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--accent);
  cursor: pointer;
}
.signup-form button:hover { color: var(--accent-hover); }
.signup-form button:disabled { opacity: 0.4; cursor: progress; }

.hp { position: absolute; left: -9999px; opacity: 0; }

.signup-msg {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  min-height: 1.2em;
}
.signup-msg.error   { color: var(--accent); }
.signup-msg.success { color: #2d6a2d; }

.contact-email {
  color: var(--text-secondary);
}
.contact-email:hover { color: var(--accent); }

/* ── Footer ── */
.site-footer { padding: 16px 0 28px; }

.footer-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-lockup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.footer-domain {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
}

.footer-copy {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ── Responsive ── */
@media (min-width: 721px) {
  body {
    height: 100dvh;
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }

  .site-header { padding: 22px 0 12px; }

  .wordmark {
    gap: 8px;
    font-size: 0.8125rem;
    letter-spacing: 0.09em;
  }

  .logo-mark {
    width: 18px;
    height: 18px;
  }

  .main-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 44px 0 36px;
  }

  .left-col {
    align-items: flex-start;
  }

  .hero-headline {
    font-size: clamp(3.25rem, 17vw, 4.75rem);
    line-height: 0.92;
  }

  .right-col {
    padding: 0;
    gap: 36px;
    justify-content: flex-start;
  }

  .section {
    gap: 12px;
  }

  .product-link,
  .product-upcoming,
  .contact-email,
  .signup-form button,
  .signup-form input[type="email"] {
    font-size: 1.25rem;
  }

  .signup-form {
    gap: 12px;
  }

  .site-footer {
    padding: 8px 0 22px;
  }

  .footer-lockup {
    gap: 10px;
  }

  .footer-domain,
  .footer-copy {
    font-size: 0.875rem;
  }
}

@media (max-width: 360px) {
  .container { padding: 0 18px; }

  .hero-headline {
    font-size: 3rem;
  }

  .footer-lockup {
    flex-wrap: wrap;
    row-gap: 2px;
  }
}
