/* Newsletter + cookie consent extras */
.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-800);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.newsletter {
  background: #0f2f2a;
  color: #fff;
  border-radius: calc(var(--radius-card) + 0.25rem);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.newsletter h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.newsletter p {
  margin: 0.55rem 0 0;
  color: #dceee8;
  max-width: 36rem;
}

.newsletter-form {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.newsletter-row input[type="email"] {
  flex: 1 1 220px;
  min-height: 48px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.7rem 1rem;
  font: inherit;
}

.newsletter-row input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-row input[type="email"]:focus {
  outline: 2px solid rgba(122, 217, 192, 0.55);
  border-color: var(--brand-300);
}

.newsletter-checks {
  display: grid;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #dceee8;
}

.newsletter-checks label {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  line-height: 1.4;
}

.newsletter-checks a {
  color: #aeebd8;
}

.newsletter-note {
  margin-top: 0.75rem !important;
  font-size: 0.85rem !important;
  color: rgba(220, 238, 232, 0.9) !important;
}

.newsletter-msg {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.newsletter-msg.ok {
  color: #aeebd8;
}

.newsletter-msg.err {
  color: #ffb4b4;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem;
  color: var(--ink);
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--display);
}

.cookie-banner p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
