/* ==============================================
   footer.css
   Newsletter section + site footer.
   Loaded on every page.
   ============================================== */

/* Newsletter section (dark warm bg — reused on every page) */
.newsletter-section {
  background: var(--newsletter-bg);
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: 'THINK';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.nl-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.nl-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}

.nl-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1.2;
  color: #F5F0E8;
  margin-bottom: 12px;
}

.nl-body {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.8;
}

.nl-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: block;
  margin-bottom: 10px;
}

.nl-row {
  display: flex;
  margin-bottom: 9px;
}

.nl-row input {
  flex: 1;
  background: rgba(245, 240, 232, 0.09);
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-right: none;
  padding: 12px 16px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #F5F0E8;
  outline: none;
  border-radius: 3px 0 0 3px;
}

.nl-row input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.nl-row button {
  background: var(--amber);
  color: var(--ink);
  border: none;
  padding: 12px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 0 3px 3px 0;
  transition: background 0.2s;
}

.nl-row button:hover {
  background: var(--amber-light);
}

.nl-privacy {
  font-size: 0.74rem;
  color: rgba(245, 240, 232, 0.28);
}

.nl-form-embed form,
.nl-form-embed p {
  margin: 0;
}

.nl-form-embed p + p {
  margin-top: 10px;
}

.nl-form-embed input::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.nl-form-embed input[type="submit"]:hover,
.nl-form-embed button:hover,
.nl-form-embed .button:hover {
  background: var(--amber-light);
}

.nl-form-message {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 0.84rem;
  line-height: 1.6;
}

.nl-form-message.is-success {
  color: rgba(245, 240, 232, 0.82);
}

.nl-form-message.is-error {
  color: #ffd1c4;
}

/* Site footer */
footer {
  background: var(--footer-bg);
  padding: clamp(32px, 5vw, 52px) clamp(20px, 5vw, 72px);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.38);
  letter-spacing: 0.07em;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: #F5F0E8;
}

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.2);
}
