/* ===========================================================
   Color Coded — Shared Stylesheet
   "making your home feel like you"
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --gold: #e6b23f;
  --pink: #ee70bc;
  --pink-deep: #c23f86;
  --teal: #097663;
  --periwinkle: #8ba2f0;
  --periwinkle-deep: #5c74c9;
  --periwinkle-tint: #eef1fc;
  --orange: #ff6218;
  --cream: #f4f1ea;
  --navy: #023d4b;
  --tan: #e4c48e;
  --ink: #23201b;

  --font-display: 'Lora', 'Georgia', serif;
  --font-script: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  --font-label: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  --font-body: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 32px rgba(2, 61, 75, 0.10);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

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

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
}

.script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: transparent;
  border-color: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold); color: var(--navy); }

.btn-outline {
  background: transparent;
  border-color: var(--periwinkle);
  color: var(--navy);
}
.btn-outline:hover { background: var(--periwinkle); color: var(--navy); }

.btn-light {
  background: transparent;
  border-color: var(--gold);
  color: var(--navy);
}
.btn-light:hover { background: var(--gold); color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgba(139, 162, 240, 0.35);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.brand img { height: 56px; width: auto; }
.logo-mark {
  height: 92px;
  width: 92px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(2,61,75,0.20);
  flex-shrink: 0;
  object-fit: cover;
}
.logo-square {
  height: 128px;
  width: 128px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(2,61,75,0.20);
  flex-shrink: 0;
  object-fit: cover;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a.active,
nav.main-nav a:hover { color: var(--periwinkle-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 800px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 28px 20px;
    border-bottom: 1px solid rgba(2,61,75,0.08);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 560px) 330px;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 14px; display: inline-block; }
.hero-copy h1 { margin-bottom: 0.3em; }
.hero-copy .lede {
  font-size: 1.15rem;
  max-width: 46ch;
  color: #40382f;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-cta-row .btn {
  min-width: 225px;
  text-align: center;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/5;
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
}
.hero-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--periwinkle);
  z-index: -1;
}

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; max-width: 320px; margin: 0 auto; }
}

/* rainbow rule under hero / section dividers */
.rule-rainbow {
  height: 8px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--teal), var(--navy), var(--periwinkle), var(--orange));
  border-radius: 999px;
  margin: 8px 0 0;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-white { background: #fffdf9; }
.section-periwinkle { background: var(--periwinkle-tint); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .eyebrow { color: var(--gold); }
.section-navy .lede { color: #f0ede5; }

/* Bold color-block sections, matching the Flodesk landing page energy */
.section-periwinkle-bold { background: var(--periwinkle); color: #fff; }
.section-periwinkle-bold h1, .section-periwinkle-bold h2, .section-periwinkle-bold h3 { color: #fff; }
.section-periwinkle-bold .eyebrow { color: var(--navy); }
.section-periwinkle-bold .lede { color: rgba(255,255,255,0.92); }

.section-gold { background: var(--gold); color: var(--navy); }
.section-gold h1, .section-gold h2, .section-gold h3 { color: var(--navy); }
.section-gold .eyebrow { color: var(--navy); }
.section-gold .lede { color: #3c2f0f; }
.section-gold .step-card { background: var(--cream); }

.section-teal { background: var(--teal); color: #fff; }
.section-teal h1, .section-teal h2, .section-teal h3 { color: #fff; }
.section-teal .eyebrow { color: var(--gold); }
.section-teal .lede { color: rgba(255,255,255,0.92); }

/* Buttons/outline variant for use on bold colored section backgrounds */
.btn-outline-invert {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-invert:hover { background: #fff; color: var(--navy); }

.btn-periwinkle {
  background: var(--periwinkle);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(139, 162, 240, 0.40);
}
.btn-periwinkle:hover { background: var(--periwinkle-deep); color: #fff; }

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--navy);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-periwinkle {
  background: transparent;
  border-color: var(--periwinkle);
  color: var(--navy);
}
.btn-outline-periwinkle:hover { background: var(--periwinkle); color: var(--navy); }
.section-gold .btn-outline-invert {
  border-color: var(--navy);
  color: var(--navy);
}
.section-gold .btn-outline-invert:hover { background: var(--navy); color: #fff; }

/* Gold buttons vanish on gold backdrops without a border for definition */
.section-gold .btn-primary {
  border-color: var(--navy);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head .eyebrow { display: block; margin-bottom: 10px; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Archetype teaser strip (home) ---------- */
.teaser-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.teaser-chip {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
  display: block;
  flex: 0 0 176px;
  width: 176px;
}
.teaser-chip:hover {
  border-color: var(--periwinkle);
  transform: translateY(-3px);
}
@media (max-width: 480px) {
  .teaser-chip { flex-basis: 130px; width: 130px; }
}
.teaser-chip .swatches {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.teaser-chip .swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(2,61,75,0.12);
}
.teaser-chip .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

/* ---------- Archetype full cards (archetypes page) ---------- */
.archetype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 950px) { .archetype-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .archetype-grid { grid-template-columns: 1fr; } }

.archetype-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease;
}
.archetype-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(139, 162, 240, 0.35); }
.archetype-card .arch-num {
  font-family: var(--font-label);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
}
.archetype-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0;
}
.archetype-card .descriptor {
  font-family: var(--font-script);
  font-style: italic;
  color: #55493c;
  font-size: 1.02rem;
  min-height: 3em;
}
.palette-strip {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  height: 26px;
  box-shadow: inset 0 0 0 1px rgba(2,61,75,0.08);
}
.palette-strip span { flex: 1; }

.archetypes-final-cta {
  text-align: center;
  margin-top: 56px;
}
.archetypes-final-cta p.script {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 18px;
}

/* ---------- Offer / service cards ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 850px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 8px solid var(--teal);
}
.offer-card.alt { border-top-color: var(--pink); }
.offer-grid .offer-card h3,
.offer-grid .offer-card .eyebrow { color: var(--navy); }
.offer-card .price-tag {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  margin: 6px 0 0;
}
.offer-card .price-was {
  text-decoration: line-through;
  color: #8a8477;
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: 8px;
}
.offer-card .best-if {
  background: var(--periwinkle);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  margin: 14px 0;
}
.offer-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.offer-card li { margin-bottom: 8px; }
.offer-card .btn { align-self: flex-start; margin-top: auto; }
.launch-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.upgrade-note {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin-top: 34px;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--periwinkle);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(2,61,75,0.12);
  padding: 20px 0;
}
.faq-item h4 {
  margin: 0;
  font-family: var(--font-label);
  font-size: 1.05rem;
  color: var(--navy);
}
.faq-item p { margin: 10px 0 0; color: #40382f; }

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}
.about-hero img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.photo-duo img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.photo-single {
  max-width: 420px;
  margin: 50px auto 0;
}
.photo-single img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.pillar .dot {
  width: 14px; height: 14px; border-radius: 50%;
  margin-bottom: 12px;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #f4f1ea;
  padding: 56px 0 30px;
}
footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}
@media (max-width: 700px) { footer.site-footer .foot-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 {
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
footer.site-footer a { opacity: 0.85; }
footer.site-footer a:hover { opacity: 1; color: var(--tan); }
footer.site-footer .foot-links { display: flex; flex-direction: column; gap: 8px; }
footer.site-footer .ig-link { display: inline-flex; align-items: center; gap: 8px; }
footer.site-footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 22px;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer .brand-foot { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
footer.site-footer .foot-grid > div:first-child { text-align: center; }

/* ---------- Placeholder banner ---------- */
.placeholder-note {
  background: repeating-linear-gradient(45deg, #fff4e0, #fff4e0 10px, #ffe9c2 10px, #ffe9c2 20px);
  border: 1px dashed var(--gold);
  color: #6b4d10;
  font-size: 0.82rem;
  font-family: var(--font-label);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
}

/* ---------- Contact form ---------- */
.hidden-field { position: absolute; left: -9999px; }
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  box-shadow: var(--shadow-soft);
}
.form-row {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row label {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid rgba(2,61,75,0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--periwinkle);
  background: #fff;
}
.contact-form .btn { margin-top: 6px; }

/* ---------- Page intro banners (interior pages) ---------- */
.page-intro {
  padding-top: 56px;
  text-align: center;
}
.page-intro .eyebrow { display: block; margin-bottom: 12px; }
.page-intro p.lede {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
}


/* ---------- TESTIMONIAL ---------- */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial .quote-mark {
  display: block;
  font-family: var(--font-script);
  font-size: 3.2rem;
  line-height: 0.8;
  color: var(--pink);
  margin-bottom: 10px;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink);
}
.testimonial cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-label);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--periwinkle-deep);
}

/* ---------- CONNECT ROW + SOCIAL LINES ---------- */
.connect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}
.connect-note {
  margin-top: 20px;
  font-size: 0.95rem;
}
.connect-note a { color: inherit; text-decoration: underline; }
.hero-social {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #5a5147;
}
.hero-social a {
  color: var(--periwinkle-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--periwinkle);
}
.hero-social a:hover { color: var(--pink); border-bottom-color: var(--pink); }


/* ---------- Gold-outline buttons on dark backgrounds ---------- */
.section-navy .btn-primary,
.section-teal .btn-primary,
.section-periwinkle-bold .btn-primary {
  color: var(--gold);
}
.section-navy .btn-primary:hover,
.section-teal .btn-primary:hover,
.section-periwinkle-bold .btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---------- Cream reading panel inside gold sections ---------- */
.gold-panel {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.gold-panel h2,
.gold-panel h3 { color: var(--navy); }
.gold-panel .eyebrow { color: var(--teal); }
.gold-panel p { color: var(--ink); }
.gold-panel p.script { color: var(--navy); }
.section-gold .gold-panel .btn-primary {
  border-color: var(--gold);
  color: var(--navy);
}
.section-gold .gold-panel .btn-primary:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 600px) { .gold-panel { padding: 32px 24px; } }

.pull-line {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy);
  border-left: 4px solid var(--pink);
  padding-left: 20px;
  margin-top: 28px;
}

/* ---------- Hero cutout (transparent PNG, no frame) ---------- */
.hero-image-wrap.cutout img {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}
.hero-image-wrap.cutout::before,
.hero-image-wrap.cutout::after { display: none; }

/* Pink accent on the hero script word */
.hero-copy h1 .script { color: var(--pink); }

/* Periwinkle outline buttons stay legible on dark sections */
.section-navy .btn-outline-periwinkle,
.section-teal .btn-outline-periwinkle {
  border-color: var(--periwinkle);
  color: var(--periwinkle);
}
.section-navy .btn-outline-periwinkle:hover,
.section-teal .btn-outline-periwinkle:hover {
  background: var(--periwinkle);
  color: var(--navy);
}

/* ---------- "What Is Color Coded" accents on dark teal ---------- */
.section-navy h2 .script,
.section-teal h2 .script { color: var(--gold); }

.not-list {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--periwinkle);
  margin: 30px 0 12px;
}
.closing-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 0;
}

/* Big decorative headline word keeps the serif italic */
.hero-copy h1 .script,
.section-navy h2 .script,
.section-teal h2 .script {
  font-family: var(--font-display);
}

/* Emphasis words inside body copy */
.hl {
  color: var(--pink-deep);
  font-style: italic;
  font-weight: 600;
}

.pain-copy {
  max-width: 780px;
  margin: 0 auto;
}

/* ---------- Home page "Hi, I'm Emma" teaser ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-teaser {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .about-teaser img {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .about-teaser .lede { margin-left: auto; margin-right: auto; }
  .about-hero { text-align: center; }
  .about-hero img { max-width: 320px; width: 100%; margin: 0 auto; }
  .photo-duo { grid-template-columns: 1fr; }
}
