/* ============================================================
   The Unsaid Letter — Global Stylesheet
   ============================================================ */

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

:root {
  --cream: #f0ece1;
  --parchment: #e6e0d2;
  --warm-white: #f5f2ea;
  --sand: #c8b89a;
  --clay: #a08868;
  --ink: #38302a;
  --ink-light: #6a5a48;
  --blush: #cf8660;
  --blush-soft: #e8b898;
  --bird: #7a8490;
  --bird-soft: #b0bac4;
  --sage: #7a9e88;
  --radius: 2px;
  --transition: 0.35s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

@keyframes heroLogoFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .fade-in {
  opacity: 0;
  transform: translateY(20px);
}

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


/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 4rem;
  background: rgba(245, 242, 234, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--parchment);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: logoFloat 5s ease-in-out infinite;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blush);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--transition);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--ink);
  color: var(--warm-white);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--blush);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  background: var(--clay);
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: transparent;
  color: var(--ink-light);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--sand);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  border-color: var(--blush);
  color: var(--blush);
  transform: translateY(-1px);
}


/* ============================================================
   PAGE HEADER (shared across inner pages)
   ============================================================ */
.page-header {
  padding: 15rem 2rem 5rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(207, 134, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.page-header h1 em {
  font-style: italic;
  color: var(--blush);
}

.header-rule {
  width: 36px;
  height: 1px;
  background: var(--sand);
  margin: 2rem auto 0;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--parchment);
  background: var(--warm-white);
  padding: 2.5rem 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 100px;
  object-fit: contain;
  padding-bottom: 15px;
}

.footer-tagline {
  font-size: 16px;
  color: var(--clay);
  margin-bottom: 0.4rem;
}

.footer-email {
  font-size: 16px;
  color: var(--clay);
}

.footer-email a {
  color: var(--clay);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email a:hover {
  color: var(--blush);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  padding-top: 30px;
}

.footer-links a {
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--parchment);
  text-align: center;
  font-size: 14px;
  color: var(--clay);
  letter-spacing: 0.06em;
}


/* ============================================================
   INDEX — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12rem 2rem 6rem;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(207, 134, 96, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(192, 176, 154, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 15% 60%, rgba(122, 132, 144, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 660px;
}

.hero-logo-mark {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.1s forwards, heroLogoFloat 6s ease-in-out 1s infinite;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--blush);
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-divider {
  width: 36px;
  height: 1px;
  background: var(--sand);
  margin: 4rem auto 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}


/* ============================================================
   INDEX — WHAT HAPPENS STRIP
   ============================================================ */
.what-happens {
  background: var(--parchment);
  padding: 5rem 2rem;
  text-align: center;
}

.what-happens .section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
}

.what-happens h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.5rem;
}

.steps-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  text-align: center;
  max-width: 160px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blush-soft);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step p {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-light);
  line-height: 1.7;
}

.step p strong {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}


/* ============================================================
   INDEX — WRITE / FORM SECTION
   ============================================================ */
.write-section {
  padding: 7rem 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-note {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 3rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--blush-soft);
}

.form-field {
  margin-bottom: 2rem;
}

label.field-label {
  display: block;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
}

.optional-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  margin-left: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus {
  border-color: var(--blush);
  box-shadow: 0 0 0 3px rgba(207, 134, 96, 0.1);
}

textarea {
  min-height: 260px;
  line-height: 1.85;
}

textarea::placeholder,
input::placeholder {
  color: var(--clay);
  font-style: italic;
}

/* Toggle switch */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.toggle-label-text {
  font-size: 0.85rem;
  color: var(--ink-light);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--sand);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 4px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--blush);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(22px);
}

.email-field {
  transition: opacity var(--transition), max-height 0.4s ease;
  overflow: hidden;
  max-height: 120px;
  opacity: 1;
}

.email-field.hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
}

/* Radio */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.radio-option:has(input:checked) {
  border-color: var(--blush);
  background: rgba(207, 134, 96, 0.07);
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blush);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.radio-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.radio-text span {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.65;
}

.form-support-text {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--cream);
  border-left: 2px solid var(--blush-soft);
  border-radius: var(--radius);
}

.form-support-text p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-bottom: 0.6rem;
}

.form-support-text p:last-child {
  margin-bottom: 0;
}

.submit-area {
  margin-top: 2.5rem;
}

.submit-note {
  font-size: 0.75rem;
  color: var(--clay);
  margin-top: 1rem;
  font-style: italic;
}

.success-msg {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--cream);
  border: 1px solid var(--blush-soft);
  border-radius: var(--radius);
}

.success-msg.visible {
  display: block;
}

.success-msg img {
  width: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  animation: logoFloat 5s ease-in-out infinite;
}

.success-msg h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.success-msg p {
  font-size: 0.9rem;
  color: var(--ink-light);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ============================================================
   INDEX — SUBSCRIBE BAND
   ============================================================ */
.subscribe-band {
  background: var(--ink);
  padding: 5rem 2rem;
  text-align: center;
}

.subscribe-band .section-label {
  color: var(--blush-soft);
  margin-bottom: 0.8rem;
}

.subscribe-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 0.6rem;
}

.subscribe-band p {
  font-size: 0.85rem;
  color: var(--bird-soft);
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--warm-white);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  min-width: 0;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--bird-soft);
  font-style: italic;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--blush-soft);
  box-shadow: none;
}

.subscribe-form button {
  padding: 0.85rem 1.8rem;
  background: var(--blush);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.subscribe-form button:hover {
  background: var(--blush-soft);
  transform: translateY(-1px);
}

.subscribe-small {
  font-size: 0.72rem;
  color: var(--bird);
  margin-top: 1rem;
  font-style: italic;
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
}

.content p {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}

.content p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.content p strong {
  color: var(--ink);
  font-weight: 400;
}

.pull-quote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: var(--cream);
  border-left: 3px solid var(--blush);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}

.cta-row {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   LETTERS PAGE
   ============================================================ */
.letters-section {
  padding: 2rem 2rem 8rem;
  max-width: 720px;
  margin: 0 auto;
}

.letters-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.letter-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 2.5rem 2.8rem;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease forwards;
}

.letter-card:hover {
  border-color: var(--blush-soft);
  box-shadow: 0 6px 32px rgba(207, 134, 96, 0.12);
  transform: translateY(-2px);
}

.letter-card::before {
  content: '♥';
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-size: 0.6rem;
  color: var(--blush-soft);
}

.letter-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.letter-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-light);
}

.letter-date {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  text-transform: uppercase;
}

.letter-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 2;
  color: var(--ink);
  white-space: pre-line;
}

.empty-state {
  text-align: center;
  padding: 6rem 2rem;
}

.empty-state img {
  width: 72px;
  display: block;
  margin: 0 auto 1.5rem;
  opacity: 0.6;
}

.empty-state h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.empty-state p {
  font-size: 0.9rem;
  color: var(--ink-light);
  max-width: 340px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}


/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-item {
  margin-bottom: 2rem;
  padding: 1.5rem 1.8rem;
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  border-left: 3px solid var(--blush-soft);
  transition: border-color var(--transition);
}

.privacy-item:hover {
  border-left-color: var(--blush);
}

.privacy-item p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.closing {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.7;
}

.contact-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--clay);
}

.contact-note a {
  color: var(--blush);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-note a:hover {
  color: var(--ink);
}


/* ============================================================
   HELP PAGE
   ============================================================ */
.urgent-banner {
  margin-top: 115px;
  background: var(--cream);
  border-bottom: 1px solid var(--blush-soft);
  padding: 1.2rem 2rem;
  text-align: center;
}

.urgent-banner p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.urgent-banner strong {
  color: var(--ink);
  font-weight: 400;
}

.help-page-header {
  padding: 5rem 2rem 4rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.help-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(122, 158, 136, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.help-page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.help-page-header h1 em {
  font-style: italic;
  color: var(--blush);
}

.help-page-header .lead {
  max-width: 560px;
  margin: 0 auto 1rem;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.help-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}

.region-block {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--parchment);
}

.region-block:last-of-type {
  border-bottom: none;
}

.region-title {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bird);
  margin-bottom: 1rem;
}

.region-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.helpline {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.helpline:hover {
  border-color: var(--blush-soft);
  box-shadow: 0 4px 20px rgba(207, 134, 96, 0.08);
}

.helpline-name {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.helpline-desc {
  font-size: 0.82rem;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.helpline-contact {
  font-size: 0.82rem;
  color: var(--clay);
  line-height: 1.8;
}

.helpline-contact a {
  color: var(--blush);
  text-decoration: none;
  transition: color var(--transition);
}

.helpline-contact a:hover {
  color: var(--ink);
}

.phone-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
}

.emergency-note {
  margin-top: 1.2rem;
  padding: 1rem 1.3rem;
  background: rgba(207, 134, 96, 0.07);
  border-left: 2px solid var(--blush-soft);
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.emergency-note strong {
  color: var(--ink);
  font-weight: 400;
}

.global-link {
  margin-top: 3rem;
  text-align: center;
  padding: 2.5rem;
  background: var(--parchment);
  border-radius: var(--radius);
}

.global-link p {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}

.global-link a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  text-decoration: none;
  border-bottom: 1px solid var(--blush-soft);
  padding-bottom: 1px;
  transition: color var(--transition);
}

.global-link a:hover {
  color: var(--ink);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1.5rem;
  }

  .nav-links {
    gap: 1.4rem;
    display: none;
  }

  .write-section {
    padding: 5rem 1.5rem;
  }

  footer {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    align-items: flex-start;
  }

  .steps-row {
    gap: 2rem;
  }

  .letter-card {
    padding: 1.8rem 2rem;
  }

  .content {
    padding: 3rem 1.25rem 6rem;
  }

  .page-header {
    padding-top: 10rem;
    padding-bottom: 0rem;
  }

  .urgent-banner {
    margin-top: 70px;
  }
}


@media (max-width: 580px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--parchment);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo img {
    width: 50px;
    height: 50px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }

  .letters-section {
    padding: 4rem 1.25rem 6rem;
  }

  .page-header {
    padding-top: 10rem;
  }
}