/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:           #fafaf9;
  --surface:      #ffffff;
  --surface-rose: #faf5f5;
  --border:       #e8d4d4;
  --text:         #37322f;
  --muted:        #9c918b;
  --heading:      #211e1c;
  --rose-50:      #faf5f5;
  --rose-100:     #f4ebeb;
  --rose-200:     #e8d4d4;
  --rose-400:     #c08787;
  --stone-800:    #211e1c;

  --r-card:  1.5rem;
  --r-btn:   9999px;
  --r-input: 0.75rem;
  --shadow:  0 4px 24px rgba(60, 40, 40, 0.09);
  --shadow-lg: 0 12px 48px rgba(60, 40, 40, 0.13);

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --nav-h: 70px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}


/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img   { display: block; max-width: 100%; height: auto; object-fit: cover; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }


/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  line-height: 1.12;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.375rem; }

em { font-style: italic; }

.eyebrow,
.section-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-400);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-label { display: block; }
.section-header h2 { margin-bottom: 0.875rem; }

.section-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 48ch;
  margin-inline: auto;
}


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Give every anchor-target section breathing room under sticky nav */
#about, #how-it-works, #testimonials, #contact {
  scroll-margin-top: var(--nav-h);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.8125rem 1.875rem;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.18s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn--dark {
  background: var(--stone-800);
  color: #fff;
  box-shadow: 0 2px 8px rgba(33, 30, 28, 0.25);
}

.btn--dark:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 30, 28, 0.28);
}

.btn--dark:active { transform: translateY(0); opacity: 1; }

.btn--lg  { font-size: 1rem; padding: 0.9375rem 2.5rem; }
.btn--full { width: 100%; }


/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s;
}

.nav.scrolled { box-shadow: 0 2px 16px rgba(60, 40, 40, 0.07); }
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--heading);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__logo:hover { opacity: 0.75; }

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose-400);
  transition: width 0.25s;
}

.nav__links a:hover { color: var(--heading); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta   { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.hamburger__bar {
  display: block;
  height: 1.5px;
  background: var(--heading);
  border-radius: 9999px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s;
}

.hamburger.is-open .hamburger__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.hamburger.is-open .hamburger__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile drawer */
.nav__drawer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid transparent;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s,
              padding 0.3s;
}

.nav__drawer.is-open {
  max-height: 380px;
  padding-block: 1.25rem 2rem;
  border-top-color: var(--border);
}

.nav__drawer-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.6875rem 1.5rem;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
.nav__drawer-link:hover { color: var(--heading); }

.nav__drawer-cta { margin-top: 1.125rem; }

@media (min-width: 768px) { .nav__drawer { display: none !important; } }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

.hero__heading {
  margin-bottom: 1.375rem;
  line-height: 1.08;
}

.hero__lead {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }

.hero__micro {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* Photo + decorative offset shape */
.hero__media {
  position: relative;
  padding: 0 clamp(1rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.75rem) 0;
}

.hero__media-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  top: clamp(1rem, 3vw, 1.75rem);
  left: clamp(1rem, 3vw, 1.75rem);
  background: var(--rose-100);
  border-radius: var(--r-card);
}

.hero__img {
  position: relative;
  width: 100%;
  height: clamp(340px, 55vw, 600px);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center 40%;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--surface-rose);
  padding: var(--section-pad) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 767px) {
  .about__media { order: 2; }
  .about__copy  { order: 1; }
}

@media (min-width: 768px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 6rem); }
}

.about__img {
  width: 100%;
  height: clamp(360px, 50vw, 540px);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center 40%;
}

.about__copy h2 { margin-bottom: 1.25rem; }

.about__lead {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about__copy p { color: var(--text); margin-bottom: 1rem; }
.about__copy p:last-of-type { margin-bottom: 1.875rem; }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .process__grid { grid-template-columns: repeat(3, 1fr); }
}

.process__card {
  background: var(--surface);
  border: 1px solid var(--rose-200);
  border-radius: var(--r-card);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.process__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  background: var(--rose-100);
  color: var(--rose-400);
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.375rem;
  border: 2px solid var(--rose-200);
}

.process__card h3 { margin-bottom: 0.75rem; }
.process__card p  { color: var(--muted); font-size: 0.9375rem; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--rose-50);
  padding: var(--section-pad) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--rose-200);
  border-radius: var(--r-card);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.tcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.tcard__stars {
  color: var(--rose-400);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.tcard__quote {
  position: relative;
  padding-top: 2.25rem;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.78;
  flex: 1;
}

.tcard__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: -0.25rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--rose-200);
  pointer-events: none;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rose-100);
}

.tcard__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--rose-200);
  color: var(--rose-400);
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard__name { font-weight: 600; font-size: 0.9375rem; color: var(--heading); line-height: 1.3; }
.tcard__role { font-size: 0.8125rem; color: var(--muted); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--rose-100);
  padding: var(--section-pad) 0;
}

.contact__card {
  max-width: 800px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--rose-200);
  border-radius: var(--r-card);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}

.contact__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact__header h2 { margin-bottom: 0.75rem; }

.contact__sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 46ch;
  margin-inline: auto;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.375rem;
}

@media (min-width: 560px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.005em;
}

.req  { color: var(--rose-400); }
.opt  { color: var(--muted); font-weight: 400; font-size: 0.8125rem; }

.form-field input,
.form-field textarea,
.select-wrap select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-input);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field textarea:focus,
.select-wrap select:focus {
  border-color: var(--rose-400);
  background: var(--surface);
  box-shadow: 0 0 0 3.5px rgba(192, 135, 135, 0.18);
}

.form-field input.invalid,
.form-field textarea.invalid,
.select-wrap.invalid select {
  border-color: #b84444;
  box-shadow: 0 0 0 3px rgba(184, 68, 68, 0.12);
}

.form-field textarea { resize: vertical; min-height: 140px; }

/* Custom select */
.select-wrap { position: relative; }

.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--muted);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.select-wrap select { padding-right: 2.75rem; cursor: pointer; }

/* Inline error text */
.form-error {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #b84444;
  min-height: 1.1em;
  line-height: 1.4;
  display: block;
}

/* Success */
.contact__success {
  text-align: center;
  padding: 2rem 0 1rem;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--rose-100);
  border: 2px solid var(--rose-200);
  color: var(--rose-400);
  font-size: 1.625rem;
  margin-bottom: 1.375rem;
}

.contact__success h3 { font-size: 1.75rem; margin-bottom: 0.875rem; }
.contact__success p  { color: var(--muted); max-width: 42ch; margin-inline: auto; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--stone-800);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

.footer__logo {
  font-family: var(--serif);
  font-size: 1.3125rem;
  color: #fff;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.375rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.28);
  margin-top: 0.5rem;
}


/* ============================================================
   FADE-IN  (only applied when JS is present — progressive enhancement)
   ============================================================ */
.js .fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-in--delay   { transition-delay: 0.15s; }
.js .fade-in--delay-2 { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  .js .fade-in { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   NEWSLETTER SIGNUP SECTION
   ============================================================ */
.nl-signup {
  background: var(--stone-800);
  padding: var(--section-pad) 0;
}

.nl-signup__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nl-signup__inner { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }
}

.section-label--light { color: var(--rose-400); }

.nl-signup__heading {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 2.625rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 0.875rem;
}

.nl-signup__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 42ch;
  margin-bottom: 1.25rem;
}

.nl-signup__archive {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--rose-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.nl-signup__archive:hover { color: #d4a0a0; }

/* Signup form */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nl-form input {
  font-family: var(--sans);
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-input);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.nl-form input::placeholder { color: rgba(255, 255, 255, 0.4); }

.nl-form input:focus {
  border-color: var(--rose-400);
  background: rgba(255, 255, 255, 0.12);
}

.btn--signup {
  background: #fff;
  color: var(--stone-800);
  font-weight: 600;
  padding: 0.8125rem 1.875rem;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9375rem;
  transition: opacity 0.2s, transform 0.18s;
  align-self: flex-start;
}
.btn--signup:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn--signup:active { opacity: 1;    transform: translateY(0); }

.nl-form__error {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #f4a4a4;
  min-height: 1.1em;
}

.nl-form__success {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #a8d5a2;
}

.nl-signup__legal {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}


/* ============================================================
   NEWSLETTER ARCHIVE PAGE
   ============================================================ */
.nl-hero {
  background: var(--bg);
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.nl-hero__inner {
  max-width: 640px;
}

.nl-hero__inner .section-label { margin-bottom: 0.75rem; display: block; }

.nl-hero__inner h1 { margin-bottom: 0.875rem; }

.nl-hero__sub {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 48ch;
}

.nl-archive {
  background: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
  min-height: 320px;
}

.nl-loading, .nl-empty {
  color: var(--muted);
  font-size: 1rem;
  padding: 3rem 0;
  text-align: center;
}

.nl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nl-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .nl-grid { grid-template-columns: repeat(3, 1fr); }
}

.nl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
}

.nl-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-200);
}

.nl-card__date {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-400);
}

.nl-card__title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--heading);
  line-height: 1.2;
}

.nl-card__preview {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.nl-card__read {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color 0.2s;
  margin-top: 0.25rem;
}
.nl-card__read:hover { color: var(--rose-400); }


/* ============================================================
   NEWSLETTER READER MODAL
   ============================================================ */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.nl-modal[hidden] { display: none; }

.nl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 30, 28, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nl-modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.nl-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--rose-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  transition: background 0.2s;
  flex-shrink: 0;
}
.nl-modal__close:hover { background: var(--rose-200); }

.nl-modal__inner { padding: clamp(2rem, 5vw, 3rem); }

.nl-modal__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-400);
  margin-bottom: 0.75rem;
}

.nl-modal__title {
  font-family: var(--serif);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  color: var(--heading);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  padding-right: 2rem;
}

.nl-modal__date {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.nl-modal__body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.nl-modal__body em { font-style: italic; }

/* Padding adjustment since section-label appears on this page too */
.nl-signup__form-wrap { display: flex; flex-direction: column; gap: 0.5rem; }
}
