/* =========================================================
   CCO — Client Care Operations Consulting
   Brand-book aesthetic · Navy #13294B / Gold #C8A14A
   Editorial · Photographic · Confident
   ========================================================= */

:root {
  --navy: #13294B;
  --navy-deep: #0E1F3A;
  --navy-90: #1B3461;
  --navy-700: #20406F;
  --gold: #C8A14A;
  --gold-soft: #E2C788;
  --gold-deep: #B58E37;
  --ink: #1F2937;
  --body: #374151;
  --muted: #6B7280;
  --rule: #E5E7EB;
  --rule-soft: #F1ECE2;
  --paper: #FFFFFF;
  --cream: #FAF7F1;
  --cream-deep: #F4EDDD;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(20px, 4vw, 48px);
  --site-max: 1200px;
  --content-max: 980px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-soft: 0 1px 2px rgba(19,41,75,.04), 0 6px 18px rgba(19,41,75,.06);
  --shadow-card: 0 4px 6px rgba(19,41,75,.04), 0 18px 40px rgba(19,41,75,.10);
  --shadow-deep: 0 20px 60px rgba(14,31,58,.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--navy); margin: 0 0 0.4em 0; line-height: 1.12; letter-spacing: -0.01em; font-weight: 600; }
h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 600; }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.6vw, 32px); }
h4 { font-size: 20px; }

p  { margin: 0 0 1em 0; }
a  { color: var(--navy); text-decoration: none; transition: color .15s, border-color .15s; }
a:hover { color: var(--gold); }

.italic-gold { color: var(--gold); font-style: italic; font-family: var(--serif); }
.gold-emph { color: var(--gold); font-weight: 700; font-style: italic; }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.eyebrow.muted { color: var(--muted); }
.eyebrow.navy  { color: var(--navy); }
.eyebrow.white { color: rgba(255,255,255,.8); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px; background: currentColor;
  vertical-align: middle; margin-right: 12px; opacity: .8;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 24px);
  color: var(--body);
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
}

.kicker { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Two-quote positioning block ---------- */
.positioning {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 28px;
}
.positioning blockquote {
  margin: 0 0 22px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 400;
}
.positioning blockquote:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { width: min(var(--site-max), 100% - var(--gutter) * 2); margin: 0 auto; }
.narrow    { width: min(var(--content-max), 100% - var(--gutter) * 2); margin: 0 auto; }

section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }
section + section { border-top: 0; }
section.tight { padding: clamp(40px, 6vw, 80px) 0; }
section.alt   { background: var(--cream); }
section.deep  {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,.92);
}
section.deep h1, section.deep h2, section.deep h3 { color: #fff; }
section.deep .eyebrow { color: var(--gold); }
section.deep p { color: rgba(255,255,255,.78); }
section.deep .lede { color: rgba(255,255,255,.85); }
section.deep .positioning blockquote { color: #fff; }
section.deep .positioning { border-left-color: var(--gold); }

/* ---------- Sticky nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  border: none;
}
.brand img { height: 40px; width: auto; }
.brand-text { font-family: var(--sans); font-size: 11px; line-height: 1.2; color: var(--navy); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.brand-text .small { display: block; color: var(--gold); margin-top: 2px; }

.nav-links { display: flex; gap: clamp(18px, 2.8vw, 36px); align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border: none;
  padding: 6px 0;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--gold);
}
.nav-links .btn { padding: 10px 18px; }

/* Eye-catching primary CTA in the nav (gold, with subtle pulse halo) */
.nav-links .nav-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  box-shadow: 0 4px 14px rgba(200, 161, 74, .28);
  transition: background .2s, color .2s, box-shadow .2s, transform .08s;
}
.nav-links .nav-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(19, 41, 75, .35);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .nav-links a:not(.btn):not(.brand) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .08s, box-shadow .2s;
}
.btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,161,74,.32); }
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn.secondary:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn.gold:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn.ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.5);
}
.btn.ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn.lg { padding: 18px 34px; font-size: 14px; }

/* ---------- Hero (deep navy with photography option) ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(80px, 11vw, 160px) 0 clamp(64px, 9vw, 120px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(200,161,74,.18) 0, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow { color: var(--gold); }
.hero h1 {
  color: #fff;
  font-family: var(--serif);
  max-width: 16ch;
  margin-bottom: 0.2em;
  font-weight: 600;
}
.hero h1 .gold { color: var(--gold); font-style: italic; }
.hero .tagline {
  font-family: var(--sans);
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 56ch;
  margin: 22px 0 32px 0;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .stamp-img { max-width: 280px; opacity: 1; filter: drop-shadow(0 12px 40px rgba(0,0,0,.35)); }

.hero-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: linear-gradient(135deg, var(--navy-90), var(--navy-deep));
}
.hero-photo img {
  width: 100%; height: auto; display: block;
  filter: contrast(1.04) saturate(0.9);
}
/* Subtle navy gradient overlay so the photo blends into the dark hero */
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,41,75,0) 30%, rgba(14,31,58,.55) 100%),
    linear-gradient(135deg, rgba(19,41,75,.10) 0%, rgba(200,161,74,.04) 100%);
}
/* Gold corner accents */
.hero-photo::before {
  content: "";
  position: absolute; right: 18px; top: 18px;
  width: 40px; height: 2px;
  background: var(--gold);
  z-index: 2;
}

/* Horizontal tagline accent at bottom of hero left column (replaces the old vertical accent) */
.hero-tagline-accent {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 161, 74, .35);
  display: inline-block;
  padding-right: 28px;
}

/* Smaller page-hero (used on About, Services, package, contact) */
.page-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--rule);
  padding: clamp(72px, 9vw, 130px) 0 clamp(48px, 7vw, 90px);
}
.page-hero .hero-grid { grid-template-columns: 1.5fr 1fr; align-items: end; }
@media (max-width: 880px) { .page-hero .hero-grid { grid-template-columns: 1fr; } }
.page-hero h1 { color: var(--navy); }
.page-hero .tagline { color: var(--muted); font-style: italic; }
.page-hero .hero-meta { text-align: right; font-family: var(--sans); }
.page-hero .hero-meta .label { color: var(--navy); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }
.page-hero .hero-meta .sub { color: var(--muted); font-size: 11px; margin-top: 6px; letter-spacing: 0.18em; text-transform: uppercase; }
@media (max-width: 880px) { .page-hero .hero-meta { text-align: left; } }

/* ---------- Photo / image cards ---------- */
.photo-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  background: var(--navy-deep);
}
.photo-frame img {
  width: 100%; height: auto; display: block;
  filter: contrast(1.05) saturate(0.92);   /* subtle editorial polish */
}
/* Subtle navy gradient overlay so photos feel on-brand and don't compete with text */
.photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(19,41,75,.06) 0%, rgba(19,41,75,.16) 100%);
  pointer-events: none;
}
/* Soft gold corner accent on the photo */
.photo-frame::before {
  content: "";
  position: absolute; left: 16px; bottom: 16px;
  width: 36px; height: 2px;
  background: var(--gold);
  z-index: 2;
  opacity: .9;
}

.photo-frame.tall,
.photo-frame.wide,
.photo-frame.square { aspect-ratio: auto; }

/* ---------- Founder card (photo + signature overlay) ---------- */
.founder-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-card);
  background: var(--navy-deep);
}
.founder-image, .founder-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
}
.founder-image img {
  filter: contrast(1.05) saturate(0.85) brightness(0.95);
  background: #f1ece2;
}
.founder-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,41,75,0) 0%, rgba(19,41,75,0) 60%, rgba(14,31,58,.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.founder-card-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
  color: #fff;
  display: flex; flex-direction: column; gap: 4px;
}
.founder-card-mark {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}
.founder-card-line {
  display: block;
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 4px 0 10px 0;
}
.founder-card-name {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: #fff;
  font-style: italic;
}
.founder-card-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- Pillar grid (4 brand pillars) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
}
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pillars { grid-template-columns: 1fr; } }

.pillar {
  text-align: left;
}
.pillar img { width: 44px; height: 44px; margin-bottom: 16px; }
.pillar h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
section.deep .pillar h3 { color: #fff; }
.pillar p { font-size: 14.5px; color: var(--body); line-height: 1.6; max-width: 32ch; }
section.deep .pillar p { color: rgba(255,255,255,.74); }

/* ---------- Process diagram (Review → Plan → Implement → Sustain) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 36px;
}
.process::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold) 75%, transparent 100%);
  z-index: 0;
}
@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
}
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.step-icon {
  width: 76px; height: 76px;
  background: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 14px rgba(19,41,75,.06);
}
.step-icon img { width: 44px; height: 44px; }
.step-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.step h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 10px 0;
}
.step p { font-size: 14px; color: var(--body); max-width: 26ch; margin: 0 auto; }

/* ---------- Testimonial card ---------- */
.testimonial {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -12px; left: 28px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
}
.testimonial .quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 24px 0;
  font-weight: 400;
}
.testimonial .attribution {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.testimonial .attribution .name {
  font-family: var(--sans); font-weight: 700; color: var(--navy); font-size: 14px;
}
.testimonial .attribution .title {
  font-family: var(--sans); color: var(--muted); font-size: 13px; font-style: italic; margin-top: 2px;
}

/* ---------- Lead-magnet band (gold horizontal stripe — "The Operations Advantage") ---------- */
.lead-band {
  background: var(--gold);
  color: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.lead-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
}
@media (max-width: 880px) { .lead-band .container { grid-template-columns: 1fr; } }
.lead-band .eyebrow { color: var(--navy); opacity: .8; }
.lead-band h2 { color: var(--navy); margin-bottom: 12px; max-width: 14ch; }
.lead-band p { color: rgba(19,41,75,.85); font-size: 17px; max-width: 50ch; }
.lead-band .btn {
  background: var(--navy); border-color: var(--navy); color: #fff;
  margin-top: 10px;
}
.lead-band .btn:hover { background: #fff; color: var(--navy); border-color: #fff; }

.lead-band .book-photo {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.lead-band .book-photo img { max-width: 100%; height: auto; border-radius: 6px; box-shadow: 0 30px 60px rgba(19,41,75,.35); }

/* ---------- Two/Three column blocks ---------- */
.cols {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}
.cols.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 880px) {
  .cols.cols-2,
  .cols.cols-3,
  .cols.cols-4 { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 881px) {
  .cols.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Icon-paired feature lists ---------- */
.icon-list { list-style: none; padding: 0; margin: 0; }
.icon-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.5;
}
.icon-list li img { width: 28px; height: 28px; margin-top: 2px; }

/* Round gold dot bullets */
ul.dots { list-style: none; padding: 0; margin: 0; }
ul.dots li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 15px;
  color: var(--body);
}
ul.dots li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
}

/* ---------- Cards (package preview) ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold-soft); }

.card .card-eye {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px;
}
.card h3 { font-size: 24px; line-height: 1.2; margin-bottom: 6px; }
.card .card-tag { font-size: 12px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.card .card-desc { font-size: 14.5px; color: var(--body); margin-bottom: 22px; flex: 1; line-height: 1.6; }
.card .card-price { font-family: var(--serif); color: var(--navy); font-weight: 600; font-size: 22px; margin-bottom: 18px; }
.card .card-price .from { font-family: var(--sans); font-size: 12px; font-weight: 400; color: var(--muted); margin-right: 6px; font-style: italic; }
.card a.card-link {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy);
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.card a.card-link::after { content: "→"; color: var(--gold); transition: transform .2s; }
.card:hover a.card-link::after { transform: translateX(4px); }

/* ---------- Cream offer panel (with circle-icon column titles) ---------- */
.offer-panel {
  background: var(--cream);
  border-top: 4px solid var(--navy);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 4px;
}
.offer-panel .offer-meta {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.offer-panel .offer-meta .left  { font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.offer-panel .offer-meta .right { font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }

.offer-panel .offer-title { font-family: var(--serif); color: var(--navy); font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 8px; line-height: 1.15; }
.offer-panel .offer-sub { font-family: var(--serif); font-style: italic; color: var(--body); margin-bottom: 28px; font-size: clamp(16px, 1.6vw, 19px); }

.offer-cols .col-title {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.offer-cols .col-title img { width: 34px; height: 34px; }
.offer-cols .col-title h4 {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin: 0;
}

/* Engagement-fee strip */
.fee-strip {
  background: var(--cream);
  margin-top: 20px;
  padding: 28px clamp(28px, 5vw, 56px);
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 720px) {
  .fee-strip { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .fee-strip .terms { grid-column: 1 / -1; text-align: left; }
}
.fee-strip .dollar { width: 52px; height: 52px; }
.fee-strip .price-block { text-align: center; }
.fee-strip .label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  color: var(--navy); font-weight: 700; text-transform: uppercase; margin-bottom: 6px;
}
.fee-strip .value {
  font-family: var(--serif); color: var(--navy); font-size: clamp(24px, 2.6vw, 32px); font-weight: 600;
}
.fee-strip .value .from {
  font-family: var(--sans); font-style: italic; font-weight: 400; color: var(--muted);
  font-size: 14px; margin-right: 8px;
}
.fee-strip .terms {
  font-family: var(--sans); color: var(--muted); font-size: 13px; font-style: italic;
  text-align: right; line-height: 1.55;
}

/* ---------- Pricing-tier table ---------- */
.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin-top: 14px;
}
.tier-table th {
  text-align: left; padding: 14px 16px;
  border-bottom: 2px solid var(--navy);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy);
}
.tier-table td { padding: 16px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.tier-table td:last-child { white-space: nowrap; font-family: var(--serif); color: var(--navy); font-weight: 600; }

/* ---------- CTA band (deep navy) ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,.94);
  padding: clamp(56px, 8vw, 100px) 0;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,161,74,.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band .lede { color: rgba(255,255,255,.78); font-style: italic; max-width: 56ch; margin-bottom: 32px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); font-weight: 700;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 14px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(19,41,75,.08); }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 6px; font-style: italic; }

/* ---------- Footer with logo ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255,255,255,.78);
  padding: clamp(56px, 7vw, 88px) 0 24px;
}
.site-footer .row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 36px;
}
.site-footer .row img { height: 60px; width: auto; }
.site-footer .row .tagline { color: rgba(255,255,255,.62); font-style: italic; font-size: 16px; max-width: 60ch; line-height: 1.6; }

.site-footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 880px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer .grid { grid-template-columns: 1fr; } }

.site-footer h5 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 16px 0;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 14px; }
.site-footer a { color: rgba(255,255,255,.78); border: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; margin: 0; }

.site-footer .meta {
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 0.04em;
}
.site-footer .meta .mark { color: var(--gold); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }

/* ---------- Section helpers ---------- */
.section-head { margin-bottom: clamp(32px, 4vw, 56px); }
.section-head .lede { max-width: 62ch; margin-top: 14px; }
.section-title { max-width: 24ch; }
.flex-between { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.divider { height: 1px; background: var(--rule); border: 0; margin: clamp(32px, 4vw, 56px) 0; }
.gold-rule { height: 2px; background: var(--gold); border: 0; width: 64px; margin: 18px 0; }

:target { scroll-margin-top: 100px; }

/* ---------- Problem-identification grid (home page) ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px) clamp(28px, 4vw, 56px);
}
@media (max-width: 720px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.problem-item h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 6px 0;
  line-height: 1.35;
}
.problem-item p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}
.problem-mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(200, 161, 74, .14);
  color: var(--gold-deep);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

/* ---------- "What we do" three-column blocks ---------- */
.do-block {
  border-top: 2px solid var(--navy);
  padding-top: 22px;
}
.do-block .do-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.do-block h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--navy);
  margin: 0 0 12px 0;
  line-height: 1.2;
}
.do-block p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Outcomes grid ---------- */
.outcomes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 36px) clamp(28px, 4vw, 56px);
}
@media (max-width: 720px) { .outcomes { grid-template-columns: 1fr; } }

.outcome {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.outcome h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 6px 0;
  line-height: 1.35;
}
.outcome p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}
.outcome-mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
}

/* ---------- Scenario block (credibility section) ---------- */
.scenario {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.scenario .scenario-eye {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.scenario h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--navy);
  margin: 0 0 18px 0;
}
.scenario p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  margin: 0 0 14px 0;
}
.scenario p:last-child { margin-bottom: 0; }
.scenario p strong {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Image-text alternating block ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split.reverse > *:first-child { order: 2; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > *:first-child { order: 0; }
}

/* ---------- Proof / example breakdown card ---------- */
.proof-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.6vw, 44px) clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-soft);
  max-width: var(--content-max);
  margin: 0 auto;
}
.proof-card p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 16px 0;
}
.proof-card p:last-child { margin-bottom: 0; }
.proof-card p strong {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  display: inline-block;
  margin-right: 8px;
}

/* ---------- Deliverables grid (cards) ---------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 820px) { .deliverables-grid { grid-template-columns: 1fr; } }

.deliverable {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.deliverable:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.deliverable .deliverable-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}
.deliverable h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.deliverable .deliverable-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
.deliverable .deliverable-impact {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.005em;
  line-height: 1.5;
}

/* ---------- Authority band ---------- */
.authority-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: clamp(36px, 4.4vw, 60px) clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.authority-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.authority-band .eyebrow {
  color: var(--gold);
}
.authority-band .authority-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  margin: 8px 0 18px 0;
  max-width: 32ch;
}
.authority-band .authority-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin: 0 0 28px 0;
  max-width: 70ch;
}
.authority-band .authority-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 820px) {
  .authority-band .authority-points { grid-template-columns: 1fr; }
}
.authority-band .authority-points li {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  padding-top: 16px;
  border-top: 1px solid rgba(200,161,74,.4);
}
.authority-band .authority-points li strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
