/* ============================================================
   phototherapy.co — main.css
   Mobile-first, 390px baseline
   ============================================================ */

/* Google Fonts imported in HTML head */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --white:        #FDFCF9;
  --linen:        #F4F2ED;
  --linen-warm:   #EDE9E0;
  --stone:        #D8D4CB;
  --stone-40:     rgba(216,212,203,0.40);
  --ink:          #1A1A17;
  --dusk:         #4A4845;
  --ghost:        #8A8880;
  --green:        #3A6630;
  --green-20:     rgba(58,102,48,0.20);
  --green-10:     rgba(58,102,48,0.10);
  --green-06:     rgba(58,102,48,0.06);
  --spark:        #E2C040;
  --spark-60:     rgba(226,192,64,0.60);
  --spark-20:     rgba(226,192,64,0.20);
  --spark-ink:    #5A4A08;
  --blush:        #EAD8C8;
  --rose:         #C4906E;
  --rose-20:      rgba(196,144,110,0.20);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Libre Baskerville', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.font-cormorant  { font-family: 'Cormorant', Georgia, serif; }
.font-baskerville { font-family: 'Libre Baskerville', Georgia, serif; }
.font-jost       { font-family: 'Jost', system-ui, sans-serif; }

.eyebrow {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
  display: block;
  margin-bottom: 1rem;
}

.eyebrow--green  { color: var(--green); }
.eyebrow--ghost  { color: var(--ghost); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--linen);
  border-top: 1px solid var(--stone);
  padding: 14px 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--dusk);
  flex: 1;
  min-width: 180px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--spark);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 3px;
  cursor: pointer;
}

.btn-cookie-decline {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone);
  padding: 7px 14px;
  border-radius: 3px;
  cursor: pointer;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
}

.nav-logo {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
}

.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 19px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 86vh;
  background: var(--white);
  padding: 4rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
  margin-bottom: 1.5rem;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

.hero-line {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  display: block;
}

.hero-line--green {
  color: var(--green);
  margin-top: 6px;
}

.hero-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--dusk);
  margin-bottom: 3rem;
  max-width: 320px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero-scroll-line {
  width: 28px;
  height: 1px;
  background: var(--stone);
}

.hero-scroll-text {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
}

/* ============================================================
   HERO IMAGE
   ============================================================ */
.hero-image {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.hero-image img {
  width: 100%;
  display: block;
  height: auto;
}

/* ============================================================
   RECOGNITION
   ============================================================ */
.recognition {
  background: var(--linen);
  padding: 2.8rem 1.5rem;
}

.recognition-list {
  margin: 1.5rem 0;
}

.recognition-item {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone-40);
}

.recognition-item:first-child {
  border-top: 1px solid var(--stone-40);
}

.recognition-affirm {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--green);
  margin-top: 1.5rem;
}

/* ============================================================
   PIVOT
   ============================================================ */
.pivot {
  background: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.pivot-text {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.35;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--white);
  padding: 2.8rem 1.5rem;
  border-top: 1px solid var(--stone);
}

.how-steps {
  margin: 1.5rem 0;
}

.how-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--stone);
}

.how-step-number {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--spark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.how-step-text {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  padding-top: 4px;
}

.how-note {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--dusk);
  margin-top: 1.5rem;
}

/* ============================================================
   WHAT WOMEN NOTICE
   ============================================================ */
.women-notice {
  background: var(--linen);
  padding: 2.8rem 1.5rem;
}

.women-notice-intro {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  margin-bottom: 1.5rem;
}

.notice-list {
  margin-top: 0.5rem;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--dusk);
  padding: 14px 0;
  border-bottom: 1px solid var(--stone-40);
}

.notice-item:first-child {
  border-top: 1px solid var(--stone-40);
}

.notice-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   PERSONAL NOTES (TESTIMONIALS)
   ============================================================ */
.personal-notes {
  background: var(--blush);
  padding: 2.8rem 1.5rem;
}

.testimonial {
  padding-left: 1.2rem;
  border-left: 1.5px solid var(--rose);
  margin-bottom: 2rem;
}

.testimonial:last-child {
  margin-bottom: 0;
}

.testimonial-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.testimonial-attr {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ghost);
}

/* ============================================================
   GETTING STARTED
   ============================================================ */
.getting-started {
  background: var(--white);
  padding: 2.8rem 1.5rem;
}

.getting-started-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.getting-started-intro {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  margin-bottom: 1.5rem;
}

.resource-list {
  border-top: 1px solid var(--stone);
}

.resource-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
  cursor: pointer;
  text-decoration: none;
}

.resource-content {
  flex: 1;
}

.resource-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}

.resource-desc {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--ghost);
  line-height: 1.6;
  margin-bottom: 8px;
}

.resource-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.resource-meta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--ghost);
}

.resource-tag {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.resource-tag--green {
  background: var(--green-20);
  color: var(--green);
}

.resource-tag--muted {
  background: var(--stone);
  color: var(--dusk);
}

.resource-tag--yellow {
  background: var(--spark);
  color: var(--spark-ink);
}

.resource-tag--download {
  background: var(--blush);
  color: var(--rose);
}

.resource-arrow {
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.library-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   EARLY EMAIL CAPTURE
   ============================================================ */
.early-capture {
  background: var(--linen-warm);
  padding: 2rem 1.5rem;
}

.early-capture-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  margin-bottom: 1rem;
}

.inline-form {
  display: flex;
  flex-direction: row;
}

.inline-form-input {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--stone);
  border-right: none;
  border-radius: 3px 0 0 3px;
  background: rgba(253,252,249,0.6);
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

.inline-form-input::placeholder {
  color: var(--ghost);
}

.inline-form-input:focus {
  border-color: var(--green);
  outline: none;
}

.inline-form-btn {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--spark);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.early-capture-meta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ghost);
  margin-top: 10px;
}

.form-success {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  color: var(--green);
  margin-top: 10px;
  display: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--linen-warm);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}

.cta-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  max-width: 260px;
  margin: 0 auto 1.75rem;
}

.btn-primary {
  display: block;
  width: 100%;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--spark);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  display: block;
  width: 100%;
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stone);
  padding: 16px 24px;
  border-radius: 3px;
  text-align: center;
  margin-bottom: 12px;
  cursor: pointer;
  text-decoration: none;
}

.cta-note {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ghost);
  margin-top: 8px;
}

/* ============================================================
   CAMPAIGN STRIP
   ============================================================ */
.campaign-strip {
  display: none;
  background: var(--spark);
  padding: 14px 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.campaign-active .campaign-strip {
  display: flex;
}

.campaign-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 13px;
  color: var(--ink);
}

.campaign-cta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  flex-shrink: 0;
}

/* ============================================================
   RESOURCE LIBRARY PREVIEW (ACCORDION)
   ============================================================ */
.resource-library {
  background: var(--linen);
  padding: 2.8rem 1.5rem;
}

.library-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.accordion {
  border-top: 1px solid var(--stone);
}

.accordion-item {
  border-bottom: 1px solid var(--stone);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  gap: 12px;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.accordion-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}

.accordion-title--italic-green {
  font-style: italic;
  color: var(--green);
}

.accordion-count {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ghost);
  flex-shrink: 0;
}

.accordion-arrow {
  font-size: 14px;
  color: var(--stone);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow {
  transform: rotate(90deg);
  color: var(--green);
}

.accordion-body {
  display: none;
  padding-bottom: 1rem;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-locked {
  opacity: 0.6;
}

.accordion-locked .accordion-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lock-icon {
  font-size: 12px;
}

.accordion-locked-msg {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 13px;
  color: var(--ghost);
  padding: 0.5rem 0 1rem;
  line-height: 1.75;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
  padding: 2.8rem 1.5rem;
}

.faq-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.faq-list {
  border-top: 1px solid var(--stone);
}

.faq-item {
  border-bottom: 1px solid var(--stone);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
}

.faq-question-text {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  flex: 1;
}

.faq-arrow {
  font-size: 14px;
  color: var(--stone);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  padding-top: 3px;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
  color: var(--green);
}

.faq-answer {
  display: none;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--dusk);
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-cta {
  padding: 2rem 0 0;
  border-top: 1px solid var(--stone);
  margin-top: 0;
}

.faq-cta-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* ============================================================
   FULL EMAIL SIGNUP
   ============================================================ */
.signup-section {
  background: var(--linen-warm);
  padding: 2.8rem 1.5rem;
}

.signup-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.signup-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--dusk);
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-input {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

.form-input::placeholder {
  color: var(--ghost);
}

.form-input:focus {
  border-color: var(--green);
  outline: none;
}

.form-select {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid var(--stone);
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A8880' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select:focus {
  border-color: var(--green);
  outline: none;
}

.btn-submit {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--spark);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
}

.signup-meta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ghost);
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   SIGN OFF
   ============================================================ */
.sign-off {
  background: var(--linen);
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--stone);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sign-off-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-10);
  border: 1px solid var(--green-20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sign-off-avatar-letter {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green);
  line-height: 1;
}

.sign-off-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 13px;
  line-height: 1.75;
  color: var(--dusk);
  margin-bottom: 0.6rem;
}

.sign-off-brand {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
}

.sign-off-brand a {
  color: var(--green);
  text-decoration: none;
}

/* ============================================================
   LANGUAGE BAR
   ============================================================ */
.lang-bar {
  background: var(--linen);
  padding: 14px 1.5rem;
  border-top: 1px solid var(--stone);
  display: flex;
  gap: 16px;
  align-items: center;
}

.lang-label {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ghost);
}

.lang-link {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--dusk);
  text-decoration: none;
  padding-bottom: 1px;
}

.lang-link.active {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--linen-warm);
  padding: 1.5rem;
  border-top: 1px solid var(--stone);
}

.footer-disclaimer {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ghost);
  line-height: 1.6;
}

.footer-legal {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 11px;
  color: var(--ghost);
  line-height: 1.7;
  margin-top: 8px;
}

/* ============================================================
   RESOURCES PAGE — PASSWORD GATE
   ============================================================ */
.password-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 2rem 1.5rem;
}

.password-gate-inner {
  max-width: 340px;
  width: 100%;
  text-align: center;
}

.password-gate-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.password-gate-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  color: var(--dusk);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.password-gate-error {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  color: var(--rose);
  margin-top: 8px;
  display: none;
}

.library-content {
  display: none;
}

.library-content.visible {
  display: block;
}

/* ============================================================
   NAV DESKTOP LINKS
   ============================================================ */
.nav-links {
  display: none; /* hidden on mobile */
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--dusk);
  text-decoration: none;
  letter-spacing: 0.04em;
}

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

.nav-cta {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--spark);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================================
   CTA BUTTONS ROW
   ============================================================ */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   SIGNUP SUCCESS MESSAGE
   ============================================================ */
.signup-success-msg {
  text-align: center;
  padding: 1.5rem 0;
}

.signup-success-heading {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.signup-success-sub {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  color: var(--dusk);
  line-height: 1.75;
}

/* ============================================================
   RESOURCES PAGE — SIDEBAR LAYOUT
   ============================================================ */
.resources-layout {
  display: block;
}

.resources-sidebar {
  display: none; /* hidden on mobile */
}

.resources-main {
  padding: 1.5rem;
}

/* Category pills on mobile */
.cat-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-pills::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ghost);
  background: var(--linen);
  border: 1px solid var(--stone);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.cat-pill.active {
  background: var(--green-10);
  color: var(--green);
  border-color: var(--green-20);
}

/* ============================================================
   DESKTOP ADJUSTMENTS (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  /* Nav */
  .nav {
    padding: 1.1rem 2rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  /* Content max-width container */
  .hero,
  .recognition,
  .pivot,
  .how-it-works,
  .women-notice,
  .personal-notes,
  .early-capture,
  .cta-section,
  .signup-section,
  .sign-off,
  .faq,
  .resource-library,
  .getting-started,
  .lang-bar,
  .footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero > *,
  .recognition > *,
  .pivot > *,
  .how-it-works > *,
  .women-notice > *,
  .personal-notes > *,
  .early-capture > *,
  .cta-section > *,
  .signup-section > *,
  .sign-off > *,
  .faq > * {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero */
  .hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .hero-headline {
    max-width: 600px;
  }

  .hero-line {
    font-size: 44px;
  }

  .hero-body {
    font-size: 17px;
    max-width: 480px;
  }

  /* Image */
  .hero-image img {
    max-height: 600px;
    object-fit: cover;
  }

  /* All sections — generous padding */
  .recognition,
  .pivot,
  .how-it-works,
  .women-notice,
  .personal-notes,
  .early-capture,
  .cta-section,
  .signup-section,
  .sign-off,
  .faq,
  .resource-library,
  .getting-started {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Pivot text */
  .pivot-text {
    font-size: 34px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Buttons — inline side by side */
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto 1rem;
  }

  .btn-primary,
  .btn-outline {
    display: inline-block;
    width: auto;
    min-width: 280px;
    margin-bottom: 0;
  }

  .btn-submit {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Signup form max width */
  .signup-form {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Resources sidebar layout */
  .cat-pills {
    display: none;
  }

  .resources-layout {
    display: flex;
    align-items: flex-start;
    gap: 0;
    min-height: calc(100vh - 60px);
  }

  .resources-sidebar {
    display: block;
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    border-right: 1px solid var(--stone);
    background: var(--white);
    padding: 2rem 0;
  }

  .resources-main {
    flex: 1;
    padding: 2rem;
    max-width: 700px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }

  .hero-line {
    font-size: 52px;
  }
}
