/* =====================================================
   Ink & Prosper LLC — Production Stylesheet
   Editorial · Authoritative · Premium
   ===================================================== */

:root {
  --teal: #2F8F8B;
  --navy: #1F2A44;
  --gold: #C9A24D;
  --light-teal: #6FB7B3;
  --slate: #878D9B;
  --white: #FFFFFF;
  --off-white: #F8F8F6;

  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

/* Layout helpers */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--off { background: var(--off-white); }
.section--white { background: var(--white); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: inline-block;
}
.section--navy .eyebrow { color: var(--light-teal); }

/* Geometric accent — used as section breaks */
.geo-divider {
  height: 56px;
  background:
    radial-gradient(circle at 20% 50%, rgba(111,183,179,0.12) 0 12px, transparent 13px),
    radial-gradient(circle at 50% 50%, rgba(201,162,77,0.10) 0 8px, transparent 9px),
    radial-gradient(circle at 80% 50%, rgba(111,183,179,0.12) 0 12px, transparent 13px),
    var(--navy);
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__brand img {
  width: 120px;
  height: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.nav__brand:hover img { opacity: 0.85; }

.nav__menu {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.nav__menu a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__menu a:hover,
.nav__menu a.is-active { color: var(--gold); }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--white);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: rotate(45deg); top: 0; }
.nav.is-open .nav__toggle span::after { transform: rotate(-45deg); top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---------- Hero — flexbox: text-left | photo-right on desktop, stacked on mobile ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    height: 70vh;            /* FIXED hero height — no growing */
    min-height: 540px;
    max-height: 760px;
  }
}

/* Photo half */
.hero__bg {
  position: relative;
  width: 100%;
  height: 50vh;              /* mobile: 50vh tall */
  min-height: 320px;
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  flex-shrink: 0;
  order: -1;                  /* mobile: photo first (top) */
}
@media (min-width: 900px) {
  .hero__bg {
    width: 50%;
    height: 100%;             /* fills the fixed hero height */
    min-height: 0;
    flex: 0 0 50%;
    order: 2;                 /* desktop: photo on the RIGHT */
  }
}

/* Soft navy/teal "film" on the photo's left edge */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg,
    rgba(31,42,68,0.55) 0%,
    rgba(31,42,68,0.18) 22%,
    rgba(47,143,139,0.08) 50%,
    rgba(31,42,68,0.00) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Per-page focal-point modifiers */
.hero__bg--top    { background-position: center top; }
.hero__bg--upper  { background-position: center 22%; }
.hero__bg--center { background-position: center center; }
.hero__bg--right  { background-position: right 22%; }

.hero__overlay { display: none; }

.hero__shape {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.hero__shape--circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,77,0.35);
  top: 8%; left: -60px;
}
.hero__shape--square {
  width: 120px; height: 120px;
  background: rgba(47,143,139,0.18);
  bottom: 8%; left: 3%;
  transform: rotate(15deg);
}
.hero__shape--line {
  width: 4px; height: 120px;
  background: var(--gold);
  top: 14%; left: 3%;
}
@media (max-width: 900px) {
  .hero__shape--circle, .hero__shape--square, .hero__shape--line { display: none; }
}

/* Text half — vertically centers its content via flex */
.hero__inner {
  position: relative;
  z-index: 4;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  width: 100%;
}
@media (min-width: 900px) {
  .hero__inner {
    flex: 1 1 50%;
    padding: 4rem clamp(2rem, 5vw, 4rem);
  }
}
.hero__inner > * { max-width: 100%; }
.hero__inner h1,
.hero__inner h2 { max-width: 580px; }
.hero__inner--narrow > * { max-width: 100%; }
.hero h1 { color: var(--white); }
.hero h2 {
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 720px;
}
.hero__cta { margin-top: 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31,42,68,0.18);
}
.card h3 { color: var(--white); }
.card p { color: rgba(255,255,255,0.85); flex-grow: 1; }
.card .btn { align-self: flex-start; margin-top: 1.5rem; }

.card--light {
  background: var(--white);
  color: var(--navy);
  border-left: 4px solid var(--teal);
}
.card--light h3 { color: var(--navy); }
.card--light p { color: var(--navy); }
.card--light:hover { border-left-color: var(--gold); }

/* Light teal card — used on /about for the three commitment cards */
.card--teal {
  background: var(--light-teal);
  color: var(--navy);
  border-left: 0;
  border-radius: 16px;
}
.card--teal h3 { color: var(--navy); }
.card--teal p { color: var(--navy); }
.card--teal:hover {
  border-left-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 42, 68, 0.18);
}

/* Stage / journey cards */
.stage {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(111,183,179,0.25);
  padding: 1.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.stage:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.stage__num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stage h3 { color: var(--white); margin-bottom: 0.5rem; }
.stage p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.95rem; }

/* ---------- OWNER framework letter blocks ---------- */
.letter-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(135,141,155,0.25);
  align-items: start;
}
.letter-block:last-child { border-bottom: 0; }
.letter-block__letter {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  text-align: center;
}
.letter-block h3 { margin-bottom: 0.75rem; }
.letter-block p { font-size: 1.05rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq__item {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(31,42,68,0.05);
  transition: var(--transition);
}
.faq__item:hover { border-left-color: var(--gold); }
.faq__q {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.faq__a { color: var(--navy); margin: 0; }

/* ---------- CTA bar ---------- */
.cta-bar {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(111,183,179,0.15) 0 60px, transparent 61px),
    radial-gradient(circle at 85% 70%, rgba(201,162,77,0.12) 0 50px, transparent 51px);
  pointer-events: none;
}
.cta-bar__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-bar h2 { color: var(--white); margin-bottom: 1.5rem; }

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0.95rem 1.15rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid var(--slate);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  transition: var(--transition);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47,143,139,0.18);
}
.form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  display: block;
}

/* ---------- About / Bio layout ---------- */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .bio-layout { grid-template-columns: 1fr 1.4fr; }
}
.bio-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--gold);
  aspect-ratio: 4 / 5;          /* tasteful portrait card */
  background: var(--off-white);
}
.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;   /* keeps face / eyes in frame */
  display: block;
}

/* ---------- Contact details ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-block {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.contact-block h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.contact-block p, .contact-block a { color: var(--navy); display: block; margin: 0.25rem 0; }
.contact-block a:hover { color: var(--gold); }

/* ---------- "How We Work With You" — vertical timeline ---------- */
.how-timeline {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  gap: 3rem;
}
/* Vertical center line */
.how-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  position: relative;
}

.how-step__badge {
  grid-column: 2;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--navy);
}

.how-step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: var(--white);
  margin: 0;
  padding-top: 12px;
  position: relative;
}
/* Gold horizontal connector from badge to title */
.how-step__title::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 100%;
  width: 1.5rem;
  height: 3px;
  background: var(--gold);
}

.how-step__desc {
  color: var(--slate);
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Odd steps (1, 3, 5): description LEFT, title RIGHT */
.how-step--split .how-step__desc {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  padding-top: 12px;
  padding-right: 1.5rem;
}
.how-step--split .how-step__title {
  grid-column: 3;
  grid-row: 1;
  padding-left: 1.5rem;
}

/* Even steps (2, 4): title AND description both on RIGHT */
.how-step--right .how-step__group {
  grid-column: 3;
  grid-row: 1;
  padding-left: 1.5rem;
}
.how-step--right .how-step__title {
  margin-bottom: 0.6rem;
}
.how-step--right .how-step__desc {
  padding-top: 0;
}

/* Mobile (under 768px): single column, no center line, badge left + content right */
@media (max-width: 767.98px) {
  .how-timeline {
    gap: 2rem;
    padding: 0 16px;
  }
  /* Remove the center vertical line on mobile */
  .how-timeline::before {
    display: none;
  }
  .how-step,
  .how-step--split,
  .how-step--right {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
    align-items: start;
  }
  .how-step__badge {
    grid-column: 1;
    margin: 0;
    box-shadow: none;       /* navy halo not needed without center line */
  }
  .how-step--split .how-step__title,
  .how-step--right .how-step__group {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
  }
  .how-step--split .how-step__desc {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding: 0.5rem 0 0;
  }
  /* Keep the gold connector between badge and title — short line spanning the gap */
  .how-step__title::before {
    width: 1rem;
    top: 22px;
  }
}

/* ---------- Service-page components ---------- */
.lead-quote {
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  color: inherit;
  margin: 1rem 0 1.5rem;
}
.section--navy .lead-quote { color: rgba(255,255,255,0.92); }

.service-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
@media (min-width: 800px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
}
.service-grid h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-grid .bullet { margin-top: 0; }

.service-block__meta {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
}
.service-block__meta strong {
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.25rem;
}

.service-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

/* Audit checklist grid */
.audit-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .audit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .audit-grid { grid-template-columns: repeat(4, 1fr); }
}
.audit-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.audit-item__check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.audit-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
}
.audit-item p {
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0;
  line-height: 1.55;
}

/* Process step blocks (used on /ai-automation-strategy) */
.process-step {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}
.process-step h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
}
.process-step ul.bullet { margin: 0; }
.process-step ul.bullet li {
  color: rgba(255,255,255,0.9);
}

/* Training option block (used on /training-education) */
.training-option {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  margin-bottom: 1.5rem;
}
.training-option h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.training-option__lead {
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.training-option h4 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 1.25rem 0 0.75rem;
}
.training-option .meta-row {
  font-size: 0.92rem;
  color: var(--navy);
  margin: 0.25rem 0;
}
.training-option .meta-row strong {
  color: var(--navy);
  display: inline-block;
  min-width: 110px;
}

/* ---------- Speaking topics list ---------- */
.topic-list {
  display: grid;
  gap: 1rem;
}
.topic-list li {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  color: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 4px solid var(--teal);
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) {
  .site-footer__inner { grid-template-columns: 1.2fr 1fr 1fr; }
}
.site-footer__copy { font-size: 0.9rem; line-height: 1.6; }
.site-footer__copy strong { color: var(--white); display: block; margin-bottom: 0.25rem; }

/* Serif wordmark — sits above the copyright line, same size as surrounding footer text */
.site-footer__brand {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}
.site-footer__brand .amp { color: var(--gold); }
.site-footer__legal {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.site-footer__legal a { color: rgba(255,255,255,0.85); }
.site-footer__legal a:hover { color: var(--gold); }
.site-footer__social {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .site-footer__social { justify-content: center; }
  .site-footer__copy { text-align: center; }
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.site-footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---------- Animations (CSS-only) ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.30s; }
.fade-in.delay-3 { animation-delay: 0.45s; }
.fade-in.delay-4 { animation-delay: 0.60s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Lists in dark sections ---------- */
.section--navy ul.bullet,
.bullet {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}
.bullet li {
  list-style: disc;
  margin-bottom: 0.6rem;
  color: inherit;
}

/* ---------- Tagline / quote ---------- */
.tagline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  font-style: italic;
  text-align: center;
  margin: 2rem 0;
  line-height: 1.4;
}

/* Back-to-services pill link, sits in the upper-right corner of service-detail page intros */
.back-to-services {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: var(--light-teal);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(111, 183, 179, 0.35);
  transition: var(--transition);
  z-index: 4;
  white-space: nowrap;
}
.back-to-services:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.06);
}
@media (max-width: 600px) {
  .back-to-services {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }
}

/* ---------- Page intro ---------- */
.page-intro {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(111,183,179,0.10) 0 80px, transparent 81px),
    radial-gradient(circle at 90% 80%, rgba(201,162,77,0.10) 0 60px, transparent 61px);
  pointer-events: none;
}
.page-intro__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  z-index: 1;
}
.page-intro h1 { color: var(--white); }
.page-intro p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 1rem auto 0;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav.is-open .nav__menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav__menu a::after { display: none; }
}

/* Mobile hero: photo stacks above text via flex-direction: column + order: -1 */
@media (max-width: 900px) {
  .hero { height: auto; max-height: none; }
  .hero__bg { height: 50vh; min-height: 320px; }
  .hero__inner { padding: 2.5rem 1.25rem 3rem; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .letter-block { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 0; }
  .letter-block__letter { font-size: 4.5rem; text-align: left; }
  .nav__brand img { width: 100px; }
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }
