.subscribe-footer {
  margin-top: var(--space-6, 4rem);
  padding-top: var(--space-5, 2.5rem);
  border-top: 1px solid var(--line, #e5e5e5);
  text-align: center;
}

.subscribe-footer h2 {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #737373);
  margin: 0 0 var(--space-3, 1rem);
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.subscribe-controls {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
  max-width: 26rem;
  --control-height: 48px;
}

.subscribe-input,
.subscribe-btn {
  box-sizing: border-box;
  height: var(--control-height);
  min-height: var(--control-height);
  max-height: var(--control-height);
  margin: 0;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: calc(var(--control-height) - 2px);
  border-radius: var(--radius, 999px);
  vertical-align: middle;
  transition:
    background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.subscribe-input {
  flex: 1 1 12rem;
  min-width: 0;
  width: auto;
  padding: 0 1.15rem;
  background: var(--surface, #ffffff);
  color: var(--ink, #0a0a0a);
  border: 1px solid var(--line-strong, #d4d4d4);
  -webkit-appearance: none;
  appearance: none;
  box-shadow: var(--shadow-soft, none);
}

.subscribe-input::placeholder {
  color: var(--muted-2, #a3a3a3);
}

.subscribe-input:hover {
  border-color: var(--muted-2, #a3a3a3);
}

.subscribe-input:focus {
  outline: none;
  border-color: var(--ink, #0a0a0a);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.08);
}

.subscribe-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--surface, #ffffff);
  background: var(--ink, #0a0a0a);
  border: 1px solid var(--ink, #0a0a0a);
  cursor: pointer;
}

.subscribe-btn:hover {
  background: #262626;
  border-color: #262626;
}

.subscribe-btn:active {
  transform: scale(0.98);
}

.subscribe-btn:disabled {
  background: var(--muted, #737373);
  border-color: var(--muted, #737373);
  cursor: not-allowed;
  transform: none;
}

.recaptcha-note {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--muted-2, #a3a3a3);
  line-height: 1.3;
}

.grecaptcha-badge {
  display: none !important;
}

.subscribe-status {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted, #737373);
  min-height: 0;
  text-align: center;
}

.subscribe-status.error {
  color: var(--danger, #b91c1c);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.subscribe-status + .social-links {
  margin-top: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--muted, #737373);
  text-decoration: none;
  border-radius: 50%;
  transition:
    color 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-links a:hover {
  color: var(--ink, #0a0a0a);
  background: rgba(10, 10, 10, 0.05);
}

.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.social-links .youtube svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 640px) {
  .subscribe-footer {
    margin-top: var(--space-5, 2.5rem);
    padding-top: var(--space-4, 1.5rem);
  }

  .subscribe-controls {
    max-width: 100%;
  }
}
