/* ============================================================
   bernadette-murphy.com — Global Styles
   Design tokens, layout, components, responsive
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;700&family=Nunito:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --cream: #F5EFE3;
  --rose: #C4628A;
  --charcoal: #2C2C2C;
  --warm-brown: #6B4B3E;
  --white: #FFFFFF;
  --light-gray: #EAE4D8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-logo: 'Avenir Next', 'Avenir', 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 70px;
  --max-width: 1100px;
  --section-pad: 80px 24px;
  --shadow: 0 4px 20px rgba(44, 44, 44, 0.10);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-height); }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
}

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

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-logo a {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 500;
  color: #444444;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav-logo a:hover { color: var(--rose); text-decoration: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.active > a,
.nav-links > li.active > button {
  color: var(--rose);
  border-bottom-color: var(--rose);
  text-decoration: none;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 2px solid var(--rose);
  min-width: 200px;
  box-shadow: var(--shadow);
  list-style: none;
  z-index: 100;
}

.nav-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover {
  background: var(--cream);
  color: var(--rose);
  text-decoration: none;
}

.nav-item-dropdown.open .nav-dropdown { display: block; }

/* chevron */
.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.nav-item-dropdown.open .nav-chevron { transform: rotate(180deg); }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }

.mobile-menu-strand {
  margin-bottom: 28px;
}
.mobile-menu-strand h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu-strand a {
  display: block;
  padding: 10px 0;
  font-size: 1.1rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-menu-strand a:hover { color: var(--rose); }

/* ── Page Wrapper ── */
.page-wrapper {
  padding-top: var(--nav-height);
}

/* ── Sections ── */
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

/* ── Herringbone Band ── */
.herringbone-section {
  position: relative;
  background-color: var(--warm-brown);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 6px,
      rgba(255,255,255,0.08) 6px,
      rgba(255,255,255,0.08) 12px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(255,255,255,0.08) 6px,
      rgba(255,255,255,0.08) 12px
    );
  padding: var(--section-pad);
}

/* ── Content Box ── */
.content-box {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 4px;
  padding: 40px 48px;
}

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.two-col.image-right .col-image { order: 2; }
.two-col.image-right .col-text { order: 1; }

.two-col .col-image img {
  border-radius: 4px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ── Section Divider (thin rose rule) ── */
.section-rule {
  border: none;
  border-top: 1px solid var(--rose);
  opacity: 0.4;
  margin: 0;
}

/* ── Typography helpers ── */
.display-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--warm-brown);
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--warm-brown);
  margin-bottom: 16px;
}
.overline {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.body-text p { margin-bottom: 1.2em; }
.body-text p:last-child { margin-bottom: 0; }

.italic-blurb {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 20px 0;
}
.blurb-attribution {
  font-size: 0.9rem;
  color: var(--warm-brown);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ── Buy Button ── */
.buy-btn-wrap {
  position: relative;
  display: inline-block;
  margin-top: 28px;
}
.btn-buy {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-buy:hover { background: var(--warm-brown); }

.buy-popup {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 2px solid var(--rose);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 200;
  list-style: none;
  padding: 0;
}
.buy-popup.open { display: block; }
.buy-popup li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
}
.buy-popup li:last-child a { border-bottom: none; }
.buy-popup li a:hover {
  background: var(--cream);
  color: var(--rose);
  text-decoration: none;
}

/* ── Strand Chooser ── */
.strand-chooser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-pad);
}
.strand-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--rose);
  border-radius: 4px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.strand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44,44,44,0.13);
}
.strand-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.strand-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.65;
}
.btn-strand {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--rose);
  color: var(--rose);
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn-strand:hover {
  background: var(--rose);
  color: var(--white);
  text-decoration: none;
}

/* ── Page Hero (non-landing pages) ── */
.page-hero {
  background: var(--cream);
  padding: 60px 24px 40px;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm-brown);
}
.page-hero .overline { justify-content: center; display: block; }

/* ── Placeholder sections ── */
.placeholder-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  text-align: center;
}
.placeholder-section p {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1em;
}
.placeholder-photo-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.placeholder-photo-row img {
  width: 280px;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

/* ── Writing Page ── */
.writing-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 3px solid var(--rose);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(44,44,44,0.13);
}
.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-outlet {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--warm-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.article-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
  margin-bottom: 16px;
}
.article-card a.read-more {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  align-self: flex-start;
}
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ── Testimonials ── */
.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.tier-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--warm-brown);
  margin: 48px 0 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card img {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--warm-brown);
}
.testimonial-title {
  font-size: 0.82rem;
  color: #777;
  margin-top: -10px;
}

/* Industry testimonials — simpler list */
.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.industry-card {
  background: var(--cream);
  border-left: 3px solid var(--rose);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
}
.industry-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.industry-quote::before { content: '\201C'; }
.industry-quote::after { content: '\201D'; }

/* ── Testimonial Rows (new flex layout) ── */
.testimonials-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.testimonial-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}
.testimonial-row.reverse { flex-direction: row-reverse; }
.testimonial-row .testimonial-book-cover {
  width: 390px;
  height: auto;
  flex-shrink: 0;
  border-radius: 4px;
}
.testimonial-row .testimonial-text {
  flex: 1;
  border: 1px solid rgba(196, 98, 138, 0.3);
  background: var(--cream);
  padding: 20px 24px;
  border-radius: 4px;
}
.testimonial-row .testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.testimonial-row .testimonial-quote::before { content: '\201C'; }
.testimonial-row .testimonial-quote::after { content: '\201D'; }
.testimonial-quote-only {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  border: 1px solid rgba(196, 98, 138, 0.3);
  background: var(--cream);
  padding: 20px 24px;
  border-radius: 4px;
}
.testimonial-quote-only .testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.testimonial-quote-only .testimonial-quote::before { content: '\201C'; }
.testimonial-quote-only .testimonial-quote::after { content: '\201D'; }
.testimonial-row .testimonial-name,
.testimonial-row .testimonial-title,
.testimonial-quote-only .testimonial-name,
.testimonial-quote-only .testimonial-title { text-align: right; }

/* ── Working Relationships Section ── */
.working-rel-banner {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
}
.working-rel-intro {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.working-rel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.working-rel-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.working-rel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.working-rel-logo img {
  width: 100%;
  max-width: 100px;
  height: auto;
  object-fit: contain;
}
.working-rel-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--warm-brown);
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}
.working-rel-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.working-rel-quote::before { content: '\201C'; }
.working-rel-quote::after { content: '\201D'; }

/* ── Collaboration Landing ── */
.collab-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.collab-hero img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
}
.service-card {
  background: var(--white);
  border-top: 3px solid var(--rose);
  border-radius: 4px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.92rem; line-height: 1.65; }

.bullet-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.bullet-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.bullet-block ul {
  list-style: none;
  padding: 0;
}
.bullet-block ul li {
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.bullet-block ul li::before {
  content: '—';
  color: var(--rose);
  flex-shrink: 0;
}

/* ── Get Started ── */
.get-started-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-pad);
}
.service-detail {
  margin-bottom: 56px;
}
.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--warm-brown);
  margin-bottom: 16px;
}
.service-detail p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1em;
}
.service-meta {
  margin-top: 16px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.service-meta-item {
  background: var(--cream);
  border-left: 3px solid var(--rose);
  padding: 10px 18px;
  font-size: 0.9rem;
}
.service-meta-item strong { color: var(--warm-brown); }

/* ── Contact Form ── */
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--section-pad);
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--warm-brown);
  margin-bottom: 8px;
}
.contact-form-wrap .cta-text {
  font-size: 1rem;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group textarea {
  height: 160px;
  resize: vertical;
}
.btn-submit {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--warm-brown); }

.form-message { margin-top: 12px; font-size: 0.9rem; padding: 10px 16px; border-radius: 4px; display: none; }
.form-message.success { display: block; background: #e6f4ea; color: #2d6a4f; }
.form-message.error { display: block; background: #fde8e8; color: #b91c1c; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 44px 32px;
  text-align: center;
}
.site-footer .footer-logo {
  font-family: var(--font-logo);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer .footer-email a {
  color: var(--rose);
  font-size: 0.9rem;
}
.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}
.site-footer .footer-social a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-footer .footer-social a:hover { color: var(--rose); }
.site-footer .footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

/* ── Mollie's Pack special section ── */
.special-project {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--rose);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 48px;
}
.special-project h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--warm-brown);
  margin-bottom: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .two-col.image-right .col-image { order: 0; }
  .two-col.image-right .col-text { order: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .bullet-section { grid-template-columns: 1fr; gap: 24px; }
  .collab-hero { grid-template-columns: 1fr; }
  .collab-hero img { max-width: 380px; }
}

@media (max-width: 767px) {
  :root { --section-pad: 48px 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .strand-chooser { grid-template-columns: 1fr; gap: 20px; }
  .placeholder-photo-row img { width: 100%; height: 240px; }

  .content-box { padding: 28px 24px; }

  .writing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .industry-list { grid-template-columns: 1fr; }

  .two-col .col-image img { max-height: 340px; object-fit: cover; }

  .testimonial-row,
  .testimonial-row.reverse { flex-direction: column; }
  .testimonial-row .testimonial-book-cover { width: 270px; }

  .working-rel-card { grid-template-columns: 80px 1fr; }
  .working-rel-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 16px; }
  .btn-buy { padding: 12px 22px; font-size: 0.82rem; }
  .buy-popup { min-width: 190px; }
  .service-meta { flex-direction: column; gap: 12px; }
}

/* ============================================================
   Writing — Full-text excerpt sections
   ============================================================ */
.article-excerpt {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px;
}
.article-excerpt h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.article-excerpt .article-outlet {
  margin-bottom: 24px;
}
.article-excerpt p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.back-to-writing {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--rose);
  text-decoration: none;
}
.back-to-writing:hover { text-decoration: underline; }
.article-excerpt h2.excerpt-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 1.6em 0 0.4em;
}
.article-excerpt h3.excerpt-subheading,
.article-excerpt h4.excerpt-subheading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.4em 0 0.3em;
}
