/* ============================================================
   LCFG Video Nurture Pages — editorial light-garden theme
   Change the five values in :root to re-skin the entire site.
   ============================================================ */

:root {
  --bg:      #faf9f6;   /* page background (near-white) */
  --ink:     #2f2f31;   /* text (charcoal) */
  --accent:  #546461;   /* sage green — headline words, buttons, links */
  --accent-hover: #4a5956;
  --soft:    #ddd2c8;   /* taupe — borders, soft fills */

  --cream:   #eae5db;
  --sage-mid:#738985;
  --paper:   #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  position: relative;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 0 26px; }
header, main, footer { position: relative; z-index: 1; }

/* ---------- masthead ---------- */
.masthead { padding: 38px 0 8px; text-align: center; }
.masthead .sprig { width: 116px; height: auto; opacity: 0.9; margin-bottom: 12px; }
.masthead .wordmark {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 13px;
  color: var(--accent);
}

main { padding: 22px 0 60px; text-align: left; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--sage-mid);
  margin-bottom: 14px;
}

/* ---------- headline (words in green, accent word in black) ---------- */
h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(29px, 4.4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0.005em;
  color: var(--accent);
  margin: 0 0 20px;
  max-width: 100%;
}
h1 em { font-style: italic; color: var(--ink); }

/* thin rule between title and paragraph */
.title-rule {
  border: 0;
  border-top: 1px solid var(--soft);
  width: 90%;
  max-width: 440px;
  margin: 0 0 22px;
}

.subhead {
  font-size: clamp(16px, 2.3vw, 19px);
  color: #4a4a4c;
  max-width: 60ch;
  margin: 0 0 34px;
}

/* ---------- video (matted, framed like a print) ---------- */
.video-mat {
  background: var(--paper);
  border: 1px solid var(--soft);
  padding: 10px;
  margin: 0 0 14px;
  box-shadow: 0 1px 0 rgba(84,100,97,0.06);
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- everything below the video is centered ---------- */
.stage-cap {
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 10.5px;
  color: var(--sage-mid);
  margin-bottom: 38px;
}

.bridge {
  text-align: center;
  font-family: 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(19px, 3vw, 25px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 30ch;
  margin: 0 auto 32px;
}

/* ---------- CTA (centered, portrait framed around it) ---------- */
.cta-block { position: relative; text-align: center; margin: 8px 0 6px; }
.bg-portrait {
  position: absolute;
  right: -180px;
  bottom: -20px;
  width: 470px;
  max-width: 52vw;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to left, #000 58%, transparent 100%);
  mask-image: linear-gradient(to left, #000 58%, transparent 100%);
}
.btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13.5px;
  text-decoration: none;
  padding: 17px 44px;
  border: 0;
  border-radius: 0;
  transition: background 0.18s ease;
}
.btn:hover { background: var(--accent-hover); }
.whisper {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 15px;
  font-size: 13.5px;
  color: var(--sage-mid);
}

/* ---------- footer + small embellishment ---------- */
footer {
  text-align: center;
  padding: 44px 0 46px;
  font-size: 12px;
  color: var(--sage-mid);
  letter-spacing: 0.04em;
}
.foot-embellish { display: block; width: 92px; height: auto; opacity: 0.5; margin: 0 auto 12px; }
footer .home {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--accent);
  text-decoration: none;
}
footer .copy { display: block; margin-top: 8px; }

@media (max-width: 760px) {
  .bg-portrait { display: none; }
}
