/* operator-notes.css
 * Styles for /operator-notes landing page and site-wide footer newsletter band.
 */

/* ── Footer Newsletter Band ────────────────────────────────── */
.footer-newsletter-band {
  background: #1A1A2E;
  padding: 48px 0;
  width: 100%;
}

.footer-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-nl-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-nl-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 254, 249, 0.85);
  font-family: 'Jost', sans-serif;
  margin: 0;
  max-width: 360px;
}

.footer-nl-copy {
  flex: 1 1 320px;
}

.footer-nl-form {
  flex: 1 1 360px;
}

.footer-nl-row {
  display: flex;
  gap: 0;
}

.footer-nl-input {
  flex: 1;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 254, 249, 0.06);
  color: #FFFEF9;
  outline: none;
  transition: border-color 0.2s;
}

.footer-nl-input::placeholder {
  color: rgba(255, 254, 249, 0.35);
}

.footer-nl-input:focus {
  border-color: #C9A961;
}

.footer-nl-btn {
  padding: 13px 24px;
  background: #C9A961;
  color: #1A1A2E;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.footer-nl-btn:hover {
  background: #d4b46e;
}

.footer-nl-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-nl-micro {
  font-size: 11px;
  color: rgba(255, 254, 249, 0.4);
  font-family: 'Jost', sans-serif;
  margin: 8px 0 0;
}

.footer-nl-success {
  font-size: 14px;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  margin-top: 12px;
  font-style: italic;
}

.footer-nl-error {
  font-size: 13px;
  color: #e05c5c;
  font-family: 'Jost', sans-serif;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .footer-newsletter-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 20px;
  }
  .footer-nl-desc {
    max-width: none;
  }
  .footer-nl-form {
    width: 100%;
  }
}

/* ── Operator Notes Landing Page ───────────────────────────── */
.on-page {
  background: #FFFEF9;
}

/* Hero */
.on-hero {
  background: #FFFEF9;
  padding: 80px 0 72px;
  border-bottom: 1px solid #E8DCC4;
}

.on-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 64px;
  align-items: center;
}

.on-hero-text {
  flex: 1 1 480px;
}

.on-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin: 0 0 16px;
}

.on-h1 {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: #1A1A2E;
  line-height: 1.1;
  margin: 0 0 20px;
}

.on-subhead {
  font-size: 18px;
  line-height: 1.6;
  color: #2C2C3E;
  font-family: 'Jost', sans-serif;
  margin: 0 0 32px;
  max-width: 440px;
}

/* Hero Portrait */
.on-hero-portrait {
  flex: 0 0 260px;
  text-align: center;
}

.on-portrait-img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  filter: grayscale(100%);
  display: block;
  margin: 0 auto 12px;
  border: 1px solid #E8DCC4;
}

.on-portrait-caption {
  font-size: 12px;
  color: #888;
  font-family: 'Jost', sans-serif;
  line-height: 1.5;
}

/* Signup Form */
.on-form {
  max-width: 460px;
}

.on-form-row {
  display: flex;
  gap: 0;
}

.on-input {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  border: 1px solid #D4C4A0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  background: #fff;
  color: #1A1A2E;
  outline: none;
  transition: border-color 0.2s;
}

.on-input::placeholder {
  color: #aaa;
}

.on-input:focus {
  border-color: #C9A961;
}

.on-btn {
  padding: 14px 28px;
  background: #C9A961;
  color: #1A1A2E;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
}

.on-btn:hover {
  background: #d4b46e;
}

.on-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.on-form-micro {
  font-size: 11px;
  color: #aaa;
  font-family: 'Jost', sans-serif;
  margin: 8px 0 0;
}

.on-success {
  font-size: 14px;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  margin-top: 12px;
  font-style: italic;
}

.on-error {
  font-size: 13px;
  color: #c0392b;
  font-family: 'Jost', sans-serif;
  margin-top: 8px;
}

/* What You'll Get */
.on-what {
  padding: 72px 0;
  background: #F5F0E8;
}

.on-what-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.on-section-h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: #1A1A2E;
  margin: 0 0 40px;
}

.on-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.on-bullet {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.on-bullet-mark {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  min-width: 28px;
  padding-top: 3px;
}

.on-bullet strong {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: #1A1A2E;
}

.on-bullet div {
  font-size: 16px;
  line-height: 1.7;
  color: #2C2C3E;
  font-family: 'Jost', sans-serif;
}

/* Sample Section */
.on-sample {
  padding: 72px 0;
  background: #FFFEF9;
  border-top: 1px solid #E8DCC4;
}

.on-sample-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
}

.on-sample-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A961;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  margin: 0 0 16px;
}

.on-sample-h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1A1A2E;
  margin: 0 0 28px;
  line-height: 1.3;
}

.on-sample-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C3E;
  font-family: 'Jost', sans-serif;
  margin: 0 0 16px;
}

.on-sample-signoff {
  font-size: 13px;
  color: #888;
  font-family: 'Jost', sans-serif;
  border-top: 1px solid #E8DCC4;
  padding-top: 16px;
  margin-top: 24px;
}

/* Bottom CTA */
.on-bottom-cta {
  background: #1A1A2E;
  padding: 72px 0;
}

.on-bottom-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.on-bottom-h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  color: #FFFEF9;
  margin: 0 0 12px;
}

.on-bottom-sub {
  font-size: 16px;
  color: rgba(255, 254, 249, 0.65);
  font-family: 'Jost', sans-serif;
  margin: 0 0 32px;
}

.on-form-row--centered {
  justify-content: center;
}

.on-form-micro--center {
  text-align: center;
  color: rgba(255, 254, 249, 0.35);
}

.on-bottom-inner .on-input {
  background: rgba(255, 254, 249, 0.08);
  border-color: rgba(201, 169, 97, 0.35);
  color: #FFFEF9;
}

.on-bottom-inner .on-input::placeholder {
  color: rgba(255, 254, 249, 0.35);
}

.on-bottom-inner .on-success {
  color: #C9A961;
}

/* Responsive */
@media (max-width: 768px) {
  .on-hero-inner {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 20px;
  }
  .on-h1 {
    font-size: 40px;
  }
  .on-hero-portrait {
    flex: none;
  }
  .on-portrait-img {
    width: 160px;
    height: 200px;
  }
  .on-what-inner,
  .on-sample-inner,
  .on-bottom-inner {
    padding: 0 20px;
  }
  .on-form-row {
    flex-direction: column;
    gap: 8px;
  }
  .on-input {
    border-right: 1px solid #D4C4A0;
    border-radius: 8px;
  }
  .on-btn {
    border-radius: 8px;
    width: 100%;
  }
  .on-bottom-inner .on-input {
    border-right: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 8px;
  }
}
