.newsletter-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30000;
  padding: 20px;
}

.newsletter-overlay.is-open{
  display: flex;
}

.newsletter-modal{
  width: 100%;
  max-width: 470px;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(229,158,44,0.45);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  padding: 28px 26px 24px;
  position: relative;
}

.newsletter-close{
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.newsletter-close:hover{
  color: #fff;
}

.newsletter-eyebrow{
  color: #e59e2c;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-title{
  font-family: "Pompiere", cursive;
  font-size: 46px;
  line-height: 0.95;
  color: #e59e2c;
  margin: 0 0 14px;
  font-weight: 400;
}

.newsletter-text{
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.newsletter-form{
  display: grid;
  gap: 12px;
}

.newsletter-input{
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.04);
  color: #fff;
  outline: none;
  font-size: 15px;
}

.newsletter-input::placeholder{
  color: rgba(255,255,255,0.55);
}

.newsletter-input:focus{
  border-color: #e59e2c;
}

.newsletter-consent{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
}

.newsletter-consent input{
  margin-top: 2px;
  accent-color: #e59e2c;
}

.newsletter-consent a{
  color: #e59e2c;
  text-decoration: none;
}

.newsletter-actions{
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.newsletter-submit{
  flex: 1;
  height: 46px;
  border: none;
  background: #e59e2c;
  color: #000;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-submit:hover{
  background: #f0ad43;
}

.newsletter-dismiss{
  flex: 1;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.24);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.newsletter-dismiss:hover{
  border-color: #e59e2c;
  color: #e59e2c;
}

.newsletter-toast{
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 30001;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(229,158,44,0.45);
  padding: 14px 16px;
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.newsletter-toast.ok{
  border-color: rgba(229,158,44,0.7);
}

.newsletter-toast.error{
  border-color: rgba(255,255,255,0.28);
}

.newsletter-hidden{
  display: none !important;
}

body.newsletter-open{
  overflow: hidden;
}

@media (max-width: 700px){
  .newsletter-modal{
    padding: 24px 18px 20px;
  }

  .newsletter-title{
    font-size: 38px;
  }

  .newsletter-text{
    font-size: 14px;
  }

  .newsletter-actions{
    flex-direction: column;
  }

  .newsletter-toast{
    left: 18px;
    right: 18px;
    bottom: 86px;
    min-width: 0;
    max-width: none;
  }
}