/* Male Therapist Delivery — Final Closure
   Quiet continuation of the previous Goodbye page.
   No commercial UI. No tracking. No legacy theme deps. */

:root {
  --gold-1: #e1a33e;
  --gold-2: #fee791;
  --text: #1a1a1a;
  --muted: #5e5e5e;
  --rule: rgba(26, 26, 26, 0.14);
  --bg: #f9f6e7;
  --card: #ffffff;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 1.5rem)
    clamp(3rem, 8vw, 5.5rem);
}

.letter {
  width: 100%;
  max-width: 42rem;
  background: var(--card);
  border-radius: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4.5vw, 3.25rem)
    clamp(2.25rem, 5vw, 3.75rem);
}

.brand {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
}

.logo {
  display: block;
  width: 7.5rem;
  max-width: 42%;
  height: auto;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  background: linear-gradient(253.5deg, var(--gold-2), var(--gold-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-1);
}

.lead {
  margin: 0 0 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(1.1rem, 2.4vw, 1.25rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
}

.letter p {
  margin: 0 0 1.15rem;
}

.letter p:last-child {
  margin-bottom: 0;
}

.emphasis {
  font-weight: 600;
}

.closing-block {
  margin-top: 2rem;
  padding-top: 0.25rem;
}

.sign {
  margin-top: 2.5rem;
  font-weight: 600;
  line-height: 1.55;
}

.years {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
    line-height: 1.65;
  }

  .logo {
    width: 6.5rem;
    max-width: 48%;
  }

  .letter p {
    margin-bottom: 1.05rem;
  }
}
