/* ===========================================================================
   FREED UP CONSULTING — freedupconsulting.com
   Core Six brand palette (v2.0, locked 2026-05-20)
   Stylesheet v2 — for new pages and migration
   =========================================================================== */

:root {
  /* ── Core Six palette ── */
  --green:       #2A4B3C;   /* Core Greenery — primary brand */
  --green-soft:  #49705A;
  --green-deep:  #1A3026;
  --gold:        #CBA052;   /* Antique Gold — structural accent */
  --gold-light:  #E2C782;
  --gold-dim:    #A87E36;
  --plum:        #7D4263;   /* Orchid Plum — CTAs, emphasis */
  --plum-soft:   #9B6B83;
  --plum-deep:   #592D45;
  --amber:       #C86428;   /* Flame Amber — data viz, highlights */
  --amber-warm:  #E07A3A;
  --canvas:      #EAE4D8;   /* Matte Canvas — primary background */
  --canvas-mid:  #D8D0C0;
  --canvas-dim:  #C9BFA9;
  --off-white:   #F7F6F2;
  --black:       #121514;   /* Midnight Black — typography */
  --black-rich:  #0D1110;

  /* ── Aliases (back-compat with v1 class names) ── */
  --green-anchor: var(--green);
  --gold-hover: var(--gold-dim);
  --ivory: var(--canvas);
  --graphite: var(--black);
  --slate: var(--green-deep);
  --slate-line: rgba(18, 21, 20, 0.12);
  --gold-line: rgba(203, 160, 82, 0.25);

  /* ── Typography ── */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ── Layout ── */
  --container-max: 1200px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);
  --section-pad-y: clamp(1.75rem, 4vw, 3rem);
}

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

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

/* Subtle paper texture across the canvas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.container-narrow { max-width: 800px; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--green);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); margin-bottom: 0.75rem; font-weight: 200; }
h2 { font-size: clamp(1.75rem, 3.75vw, 2.5rem); margin-bottom: 0.65rem; font-weight: 300; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); margin-bottom: 0.4rem; font-weight: 400; }
h4 { font-size: 1rem; margin-bottom: 0.5rem; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold-dim); font-weight: 300; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--plum); text-decoration: none; transition: color 0.15s ease; }
a:hover, a:focus { color: var(--plum-deep); }
strong { font-weight: 600; color: var(--green-deep); }
.lead { font-size: clamp(1.125rem, 1.75vw, 1.25rem); line-height: 1.6; max-width: 50rem; font-weight: 300; }
.muted { color: rgba(18, 21, 20, 0.65); font-size: 0.875rem; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
}

/* ── Buttons — Plum primary (Core Six action layer) ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.95rem 1.85rem;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  text-transform: uppercase;
}
.btn-primary, .section-dark .btn-primary, .section-slate .btn-primary {
  background: var(--plum);
  color: var(--off-white);
  border-color: var(--plum);
}
.btn-primary:hover, .btn-primary:focus,
.section-dark .btn-primary:hover, .section-slate .btn-primary:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  color: var(--off-white);
}
.btn-outline {
  background: transparent;
  color: var(--gold-dim);
  border-color: var(--gold-dim);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--gold-dim);
  color: var(--off-white);
}
.btn-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-link::after { content: '→'; transition: transform 0.15s ease; }
.btn-link:hover { color: var(--plum); border-color: var(--plum); gap: 0.55rem; }
.section-dark .btn-link { color: var(--gold); border-color: var(--gold); }
.section-dark .btn-link:hover { color: var(--canvas); border-color: var(--canvas); }

/* ── Sections ── */
section { padding: var(--section-pad-y) 0; }
.section-light { background: var(--canvas); }
.section-cream { background: var(--off-white); }
.section-dark { background: var(--green); color: var(--canvas); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--gold); }
.section-dark h1 em, .section-dark h2 em, .section-dark h3 em { color: var(--gold-light); }
.section-dark p { color: var(--canvas); }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark a:not(.btn-primary):not(.btn-link) { color: var(--gold); }
.section-dark a:not(.btn-primary):not(.btn-link):hover { color: var(--canvas); }
.section-dark strong { color: var(--gold-light); }

.section-deep { background: var(--green-deep); color: var(--canvas); }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--gold); }
.section-deep h2 em { color: var(--gold-light); }
.section-deep p { color: var(--canvas); }
.section-deep .eyebrow { color: var(--gold); }
.section-deep .eyebrow::before { background: var(--gold); }
.section-deep strong { color: var(--gold-light); }

/* ── Header / Nav ── */
.site-header {
  background: var(--green);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(203, 160, 82, 0.18);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(13, 17, 16, 0.35);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--canvas);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand strong { color: var(--gold); font-weight: 400; }
.brand:hover { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  color: var(--canvas);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--plum);
  color: var(--off-white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--plum-deep); color: var(--off-white) !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── Hero ── */
.hero {
  padding-top: clamp(2.5rem, 5.5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5.5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.hero-headline {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 200;
  line-height: 1.1;
  max-width: 30ch;
  letter-spacing: -0.02em;
}
.hero-headline em { color: var(--gold); font-style: italic; font-weight: 200; }
.hero .eyebrow { font-size: 0.85rem; margin-bottom: 1rem; }
.hero-subhead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  max-width: 44rem;
  margin-bottom: 1.75rem;
  color: var(--canvas);
  font-weight: 300;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }

/* Hero accent — gold rule */
.hero-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}

/* Hero decorative slash (Core Six cinematic motif) */
.hero-slash {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(203, 160, 82, 0.4) 30%, rgba(203, 160, 82, 0.4) 70%, transparent);
  pointer-events: none;
}
.hero-slash-2 { right: 22%; opacity: 0.5; }

/* ── Two-column layout ── */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--off-white);
  border: 1px solid var(--canvas-mid);
  border-top: 3px solid var(--plum);
  padding: 1.85rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(18, 21, 20, 0.09);
  border-top-color: var(--plum-deep);
}
.card h3 { margin-bottom: 0.4rem; color: var(--green); }
.card .card-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card p { font-size: 0.95rem; flex: 1; margin-bottom: 1.25rem; color: var(--black); }

/* ── Engagement number plate (Core Six) ── */
.engagement-plate {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(203, 160, 82, 0.4);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.engagement-plate strong {
  color: var(--gold-light);
  font-weight: 400;
  margin-left: 0.4rem;
}

/* ── Lists ── */
.list-clean { list-style: none; }
.list-clean li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.65;
}
.list-clean li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.list-clean li strong { color: var(--green-deep); }
.section-dark .list-clean li strong { color: var(--gold-light); }

/* ── Values list (key/value pairs with plum stripe) ── */
.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  list-style: none;
}
@media (min-width: 768px) { .values-list { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.values-list li {
  padding-left: 1.25rem;
  border-left: 2px solid var(--plum);
  font-size: 0.95rem;
}
.values-list strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--green);
  display: block;
  margin-bottom: 0.4rem;
}

/* ── FAQ ── */
.faq { margin-top: 2rem; max-width: 50rem; }
.faq details { border-bottom: 1px solid var(--canvas-mid); padding: 1.25rem 0; }
.faq details:first-child { border-top: 1px solid var(--canvas-mid); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--green);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '−'; }
.faq details > p, .faq details > div { margin-top: 0.75rem; font-size: 0.95rem; line-height: 1.65; }

/* ── CTA block ── */
.cta-block { text-align: center; }
.cta-block .container { max-width: 42rem; }
.cta-block .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* ── Footer ── */
.site-footer { background: var(--green-deep); color: var(--canvas); padding: 3.5rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-grid p, .footer-grid li {
  font-size: 0.9rem;
  color: var(--canvas);
  margin-bottom: 0.5rem;
  list-style: none;
}
.footer-grid a { color: var(--canvas); border-bottom: 1px solid transparent; transition: border-color 0.15s ease, color 0.15s ease; }
.footer-grid a:hover { color: var(--gold); border-color: var(--gold); }
.footer-legal {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(203, 160, 82, 0.18);
  font-size: 0.75rem;
  color: rgba(234, 228, 216, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Pull-quote (Orchid Plum border per Core Six emphasis rule) ── */
.pullquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.85vw, 1.35rem);
  line-height: 1.55;
  color: var(--green);
  border-left: 3px solid var(--plum);
  padding-left: 1.5rem;
  margin: 2rem 0;
  max-width: 50rem;
  font-weight: 300;
  font-style: italic;
}

/* ── Key-takeaway callout (Orchid Plum) ── */
.callout-key {
  background: rgba(125, 66, 99, 0.06);
  border-left: 3px solid var(--plum);
  border-radius: 0 4px 4px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.callout-key .callout-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.4rem;
  display: block;
}
.callout-key p:last-child { margin-bottom: 0; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 32rem; margin-top: 1.5rem; }
.contact-form label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--canvas-mid);
  border-radius: 4px;
  background: var(--off-white);
  color: var(--black);
  transition: border-color 0.15s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--plum);
}
.contact-form textarea { resize: vertical; min-height: 7rem; }

/* ── Calendar embed placeholder ── */
.calendly-embed {
  background: var(--off-white);
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
  font-family: var(--font-sans);
  color: var(--black);
}
.calendly-embed strong { display: block; margin-bottom: 0.5rem; color: var(--green); }

/* ── Mobile nav ── */
@media (max-width: 767px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green);
    padding: 1rem var(--container-pad);
    gap: 0.75rem;
    border-bottom: 1px solid rgba(203, 160, 82, 0.18);
    align-items: flex-start;
    z-index: 10;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-cta-row .btn, .hero-cta-row .btn-link { width: 100%; text-align: center; justify-content: center; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ===========================================================================
   VISUAL MOTIFS — key mark, blueprint grid, ornament, headshots, project cards
   =========================================================================== */

.key-mark { display: inline-block; width: 1.1em; height: 1.6em; vertical-align: middle; margin-right: 0.5em; color: var(--gold); }
.key-mark-lg { width: 1.5em; height: 2.2em; }
.brand-mark { display: inline-flex; align-items: center; gap: 0.55em; }
.brand-mark .key-mark { margin-right: 0; width: 0.9em; height: 1.3em; }

/* Blueprint grid background */
.blueprint-bg { position: relative; }
.blueprint-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(203, 160, 82, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 160, 82, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}
.blueprint-bg > .container { position: relative; z-index: 1; }

/* Ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 auto;
  max-width: 26rem;
  padding: 1.25rem 0 0.5rem;
}
.ornament-line { flex: 1; height: 1.5px; background: var(--gold); opacity: 0.6; }
.ornament-key { color: var(--gold); width: 1rem; height: 1.55rem; flex-shrink: 0; fill: var(--gold); }
.section-dark .ornament-line, .section-deep .ornament-line { background: var(--gold); opacity: 0.5; }

/* Stat cards (Flame Amber for data, per Core Six) */
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .stat-cards { grid-template-columns: 1fr; gap: 0.75rem; } }
.stat-card {
  background: rgba(200, 100, 40, 0.06);
  border-left: 3px solid var(--amber);
  padding: 1.1rem 1.35rem;
  border-radius: 0 4px 4px 0;
}
.section-dark .stat-card, .section-deep .stat-card { background: rgba(200, 100, 40, 0.12); }
.stat-card .stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.25vw, 2.25rem);
  font-weight: 300;
  color: var(--amber-warm);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-card .stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.section-dark .stat-card .stat-label, .section-deep .stat-card .stat-label { color: var(--canvas); }

/* Card icons */
.card-icon { width: 2.25rem; height: 2.25rem; color: var(--gold-dim); margin-bottom: 0.85rem; display: block; }

/* Headshot */
.headshot {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(203,160,82,0.08), rgba(42,75,60,0.06));
  border: 1px solid var(--gold);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.headshot::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(203, 160, 82, 0.3);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}
.headshot .headshot-key {
  width: 2rem;
  height: 3rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}
.headshot .headshot-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--green);
  font-style: italic;
  line-height: 1.4;
}
.headshot .headshot-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.25rem;
  font-weight: 400;
}
.headshot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
  display: block;
  z-index: 2;
}
.headshot.has-photo {
  padding: 0;
  background: var(--green);
  border: 1px solid var(--gold);
  aspect-ratio: 3 / 4;
}
.headshot.has-photo::before {
  z-index: 3;
  inset: 6px;
  border-color: rgba(203, 160, 82, 0.4);
  pointer-events: none;
}
.headshot.has-photo .headshot-key,
.headshot.has-photo .headshot-name,
.headshot.has-photo .headshot-label { display: none; }

/* Team page founder block */
.founder-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--canvas-mid);
}
.founder-block:last-of-type { border-bottom: none; margin-bottom: 0; }
@media (min-width: 768px) { .founder-block { grid-template-columns: 1fr 2fr; gap: 3rem; } }
.founder-block h2 { margin-bottom: 0.25rem; }
.founder-block .founder-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 1.25rem;
}
.founder-block .founder-bio { font-size: 1rem; line-height: 1.75; max-width: 38rem; }
.founder-contact { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.9rem; }
.founder-contact a { color: var(--plum); border-bottom: 1px solid var(--plum); }

/* ── Project card (project-based page) ── */
.project-card {
  background: var(--off-white);
  border: 1px solid var(--canvas-mid);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.85rem 2rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .project-card { grid-template-columns: 260px 1fr; gap: 2.5rem; align-items: start; }
}
.project-card-head .project-num {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.project-card-head h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.project-card-head .project-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--amber-warm);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.project-card-head .project-window {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.65;
}
.project-card-body p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.project-card-body .project-scope-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  display: block;
}
.project-card-body .list-clean { font-size: 0.92rem; }
.project-card-body .list-clean li { margin-bottom: 0.45rem; }

/* ── Decision flow (Services Hub: how to choose) ── */
.decision-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .decision-flow { grid-template-columns: repeat(3, 1fr); } }
.decision-node {
  background: var(--off-white);
  border: 1px solid var(--canvas-mid);
  border-radius: 6px;
  padding: 1.5rem 1.5rem 1.75rem;
  position: relative;
}
.decision-node .decision-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.85;
}
.decision-node h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.decision-node p { font-size: 0.9rem; line-height: 1.6; color: var(--black); margin-bottom: 0.75rem; }
.decision-node .decision-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
  border-bottom: 1px solid var(--plum);
  display: inline-block;
  padding-bottom: 2px;
}

/* Belt-and-suspenders: strip default list markers from nav dropdown */
.nav-dropdown,
.nav-dropdown li {
  list-style: none;
  padding-left: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   Site polish additions (2026-05-20 late) — dropdown nav + back-to-top
   ═══════════════════════════════════════════════════════════════════ */

/* Dropdown nav on Services (and any other has-dropdown items) */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7em;
  margin-left: 3px;
  opacity: 0.65;
  transition: transform 0.18s ease, opacity 0.18s ease;
  display: inline-block;
}
.nav-links li.has-dropdown:hover > a::after,
.nav-links li.has-dropdown:focus-within > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -0.85rem;
  min-width: 220px;
  background: var(--green-deep);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  border: 1px solid rgba(203, 160, 82, 0.22);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  box-shadow: 0 14px 36px rgba(13, 17, 16, 0.45);
  z-index: 110;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown li { display: block; margin: 0; padding: 0; }
.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--canvas);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus {
  color: var(--gold);
  background: rgba(203, 160, 82, 0.06);
  border-left-color: var(--gold);
  padding-left: 1.35rem;
}

/* Back-to-top floating button */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s, background 0.2s ease, color 0.2s ease;
  z-index: 99;
  box-shadow: 0 6px 18px rgba(13, 17, 16, 0.35);
}
.back-to-top.visible {
  opacity: 0.92;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.back-to-top:hover {
  opacity: 1;
  background: var(--green-deep);
  color: var(--gold-light);
}
.back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.25;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .nav-links li.has-dropdown { position: static; }
  .nav-dropdown {
    position: static;
    background: rgba(0, 0, 0, 0.22);
    border: none;
    border-left: 2px solid var(--gold);
    margin: 0.4rem 0 0.4rem 0.5rem;
    padding: 0.25rem 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    border-radius: 0;
  }
  .nav-dropdown a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .nav-links li.has-dropdown > a::after { display: none; }
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
