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

:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --muted: #888880;
  --border: #d8d4cd;
  --accent: #4a5c3a;
  --btn-bg: #2c3b22;
  --btn-hover: #1e2a17;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 48px;
}

/* Logo */
.logo-wrap {
  animation: fadeUp 0.7s ease both;
}

.logo {
  display: block;
  height: 52px;
  width: auto;
}

/* Content */
.content {
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: fadeUp 0.7s 0.1s ease both;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}

.subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Form */
.form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.klaviyo-form-placeholder {
  display: flex;
  width: 100%;
  max-width: 400px;
  gap: 0;
}

.klaviyo-form-placeholder input[type="email"] {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.klaviyo-form-placeholder input[type="email"]::placeholder {
  color: #b0ada7;
}

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

.klaviyo-form-placeholder button {
  height: 48px;
  padding: 0 22px;
  background: var(--btn-bg);
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.klaviyo-form-placeholder button:hover {
  background: var(--btn-hover);
}

#kl-message {
  text-align: center;
  letter-spacing: 0.02em;
}

.privacy-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Footer */
footer {
  padding: 0 24px 32px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--text);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .klaviyo-form-placeholder {
    flex-direction: column;
  }
  .klaviyo-form-placeholder input[type="email"] {
    border-right: 1px solid var(--border);
    border-bottom: none;
    border-radius: 3px 3px 0 0;
  }
  .klaviyo-form-placeholder button {
    border-radius: 0 0 3px 3px;
  }
}
