/* ============================================================
   MACAULAY CONSULTING — STYLESHEET v3
   Palette: Moss · Parchment · Cumquat
   Fonts: Cormorant Garamond (display) · Lora (body)
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --color-moss:         #0F0F0F;   /* near-black — replaces moss green */
  --color-moss-dark:    #0A0A0A;   /* footer background */
  --color-parchment:    #FFFFFF;   /* page background */
  --color-linen:        #FAFAFA;   /* alternate section background */
  --color-cumquat:      #F08322;   /* brand accent — brighter in Letterpress */
  --color-cumquat-dark: #D86B12;
  --color-cumquat-pale: #FEF3EC;   /* pale cumquat — More Joy hero */
  --color-slate:        #4A4A4A;
  --color-stone:        #D9D9D9;
  --color-text:         #0F0F0F;
  --color-text-light:   #4A4A4A;
  --color-white:        #FFFFFF;
  --color-error:        #C0392B;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;

  --max-w:       1280px;
  --content-w:   800px;
  --nav-h:       72px;
  --section-pad: clamp(56px, 8vw, 96px);

  --r-sm:   3px;
  --r:      3px;
  --r-pill: 3px;

  --t:      0.2s ease;
  --t-slow: 0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--color-text);
  background: var(--color-parchment);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
}
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.08; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; }
h4 { font-size: 20px; line-height: 1.2; }
p  { max-width: 68ch; }
p + p { margin-top: 1rem; }
strong { font-weight: 700; }

/* em/italic in headings — cumquat accent */
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  color: var(--color-cumquat);
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.container--narrow { max-width: var(--content-w); }
.section { padding: var(--section-pad) 0; }

/* ---- SECTION BACKGROUNDS ---- */
.bg-parchment    { background: var(--color-parchment); }
.bg-linen        { background: var(--color-linen); }
.bg-moss         { background: var(--color-moss); }
.bg-moss-dark    { background: var(--color-moss-dark); }
.bg-cumquat-pale { background: var(--color-cumquat-pale); }

.bg-moss h1,
.bg-moss h2,
.bg-moss h3,
.bg-moss h4 { color: var(--color-parchment); }

.bg-moss p { color: rgba(250,247,242,0.85); }

.bg-moss-dark h1,
.bg-moss-dark h2,
.bg-moss-dark h3,
.bg-moss-dark h4 { color: var(--color-parchment); }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--color-white);
  display: flex;
  align-items: center;
  transition: border-color var(--t);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  border-bottom: 1px solid var(--color-stone);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
  transition: opacity var(--t);
}
.nav-logo img {
  display: block;
  height: 44px;
  width: auto;
}
.nav-logo:hover { opacity: 0.78; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-cumquat);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--color-text); }

.nav-linkedin {
  color: var(--color-slate);
  display: flex;
  align-items: center;
  transition: color var(--t);
  margin-left: 4px;
}
.nav-linkedin:hover { color: var(--color-cumquat); }
/* Suppress underline for LinkedIn icon */
.nav-linkedin::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-moss);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--color-parchment);
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  transition: color var(--t);
  text-align: center;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--color-cumquat); }
.nav-mobile-li {
  color: var(--color-stone);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: color var(--t);
}
.nav-mobile-li:hover { color: var(--color-cumquat); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: all var(--t);
}
.btn-primary {
  background: var(--color-cumquat);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-primary:hover {
  background: var(--color-cumquat-dark);
  transform: translateY(-1px);
}
.btn-text-link {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-stone);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
  display: inline;
}
.btn-text-link:hover {
  color: var(--color-cumquat);
  border-bottom-color: var(--color-cumquat);
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--color-cumquat);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 20px; }
.section-intro {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 60ch;
  margin-bottom: 48px;
  color: var(--color-text-light);
}

/* ---- HERO ---- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(64px, 8vw, 96px));
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  background: var(--color-parchment);
}
.hero--linen { background: var(--color-linen); }
.hero--joy   { background: var(--color-cumquat-pale); }

.hero h1 { max-width: 18ch; margin-bottom: 20px; }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-slate);
  max-width: 54ch;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-rule {
  border: none;
  border-top: 1px solid var(--color-stone);
  margin-top: 36px;
  max-width: 240px;
}

/* ---- INTRO SECTION (Home) ---- */
.intro-text {
  font-size: clamp(17px, 2vw, 19px);
  max-width: 64ch;
  line-height: 1.82;
  color: var(--color-text);
}
.intro-text p + p { margin-top: 20px; }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cumquat);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition: gap var(--t);
  margin-top: 28px;
}
.arrow-link:hover { gap: 12px; }

/* ---- WORKSHOP SECTION (Home) ---- */
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.workshop-card {
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid var(--color-stone);
  padding: clamp(26px, 3.5vw, 40px);
  position: relative;
  transition: transform var(--t);
}
.workshop-card:hover { transform: translateY(-4px); }

.wc-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: var(--color-stone);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}
.workshop-card h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  margin-bottom: 8px;
}
.workshop-card p {
  font-size: 15px;
  color: var(--color-text-light);
  max-width: none;
}
@media (max-width: 580px) {
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-card,
  .workshop-card:nth-child(n) { transform: none; margin-top: 0; }
  .workshop-card:hover { transform: translateY(-3px); }
}

/* ---- SERVICES SNAPSHOT (Home) ---- */
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.snap-item { display: flex; flex-direction: column; }
.snap-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 64px;
  color: var(--color-stone);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}
.snap-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 8px;
}
.snap-item p {
  font-size: 16px;
  color: var(--color-slate);
  flex: 1;
  margin-bottom: 16px;
  max-width: none;
}
.snap-link {
  color: var(--color-cumquat);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: text-decoration var(--t);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.snap-link:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .snapshot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .snapshot-grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS (carousel, on moss) ---- */
.testimonials-section { overflow: hidden; }
.t-carousel { display: grid; grid-template-rows: 1fr auto; max-width: 820px; }
.t-slide { grid-column: 1; grid-row: 1; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.t-slide.active { opacity: 1; pointer-events: auto; }
.t-dots { grid-column: 1; grid-row: 2; }
.t-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.45;
  color: var(--color-white);
  position: relative;
  padding-top: 64px;
}
.t-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: 80px;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: -4px; left: -4px;
  line-height: 1;
}
.t-attr {
  margin-top: 24px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-stone);
}
.t-attr::before { content: '— '; }
.t-dots {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: all var(--t);
}
.t-dot.active { background: var(--color-cumquat); width: 24px; border-radius: 4px; }

/* ---- SINGLE TESTIMONIAL (.t-single) ---- */
.t-single-inner {
  position: relative;
  padding-left: clamp(28px, 5vw, 60px);
}
.t-single-inner::before {
  content: '\201C';
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 80px;
  color: var(--color-stone);
  position: absolute;
  left: -8px; top: -16px;
  line-height: 1;
}
.t-single blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.52;
  color: var(--color-text);
  max-width: 60ch;
  margin-bottom: 20px;
}
.t-single cite {
  font-style: normal;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-slate);
}
.t-single cite::before { content: '— '; }

/* Dark moss variant for t-single (matches either nested or combined classes) */
.bg-moss .t-single-inner::before,
.t-single.bg-moss .t-single-inner::before { color: rgba(255,255,255,0.18); }
.bg-moss .t-single blockquote,
.t-single.bg-moss blockquote { color: var(--color-white); }
.bg-moss .t-single cite,
.t-single.bg-moss cite { color: var(--color-stone); }

/* ---- CLIENTS ---- */

/* Queensland Government block */
.qg-block {
  background: var(--color-parchment);
  border-radius: var(--r);
  padding: 28px 32px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.qg-crest img {
  height: 96px;
  width: auto;
  display: block;
}
.qg-departments {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qg-label {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
}
.qg-dept-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.qg-dept-list li {
  font-family: 'Noto Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .qg-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    text-align: center;
  }
  .qg-crest img { margin: 0 auto; height: 72px; }
  .qg-dept-list { align-items: center; }
  .qg-dept-list li { font-size: 15px; white-space: normal; }
}

#clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.client-item {
  background: var(--color-parchment);
  border-radius: var(--r);
  padding: 24px 28px;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background var(--t);
}
.client-item:hover { background: var(--color-linen); }
.client-item img {
  max-height: 110px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.3s ease;
}
.client-item:hover img,
.client-item.in-view img { filter: grayscale(0) opacity(1); }
.client-item--placeholder span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-slate);
  line-height: 1.4;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--color-moss);
  text-align: center;
}
.cta-section h2 { color: var(--color-parchment); max-width: none; }
.cta-section p {
  color: rgba(250,247,242,0.85);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 52ch;
  margin: 16px auto 32px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.cta-text-link {
  color: rgba(250,247,242,0.7);
  font-family: var(--font-body);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.cta-text-link:hover { color: var(--color-parchment); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-moss-dark);
  padding: clamp(48px, 7vw, 72px) 0 clamp(28px, 4vw, 44px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-parchment);
  display: block;
  margin-bottom: 16px;
}
.footer-descriptor {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(250,247,242,0.65);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 38ch;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a {
  font-family: var(--font-body);
  color: rgba(250,247,242,0.75);
  font-size: 15px;
  transition: color var(--t);
}
.footer-contact a:hover { color: var(--color-cumquat); }
.footer-contact a.footer-whatsapp { display: flex; align-items: center; gap: 6px; }
.footer-affiliation {
  margin: 20px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: rgba(250,247,242,0.55);
}
.footer-affiliation a {
  color: rgba(250,247,242,0.75);
  border-bottom: 1px solid rgba(250,247,242,0.25);
  transition: color var(--t), border-color var(--t);
}
.footer-affiliation a:hover {
  color: var(--color-cumquat);
  border-bottom-color: var(--color-cumquat);
}
.footer-col-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-bottom: 16px;
}
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: var(--font-body);
  color: rgba(250,247,242,0.75);
  font-size: 15px;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--color-cumquat); }
.footer-acknowledgement {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(250,247,242,0.55);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-updated {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-li {
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center;
  transition: color var(--t);
}
.footer-li:hover { color: var(--color-cumquat); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-acknowledgement { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-col-acknowledgement { grid-column: auto; }
}

/* ---- ABOUT: BIO PHOTO ---- */
.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.bio-photo { position: sticky; top: calc(var(--nav-h) + 36px); }
.bio-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-linen);
  display: flex; align-items: center; justify-content: center;
}
.bio-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo-placeholder {
  text-align: center; padding: 24px;
}
.bio-photo-placeholder p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-slate);
  opacity: 0.65;
  max-width: none;
}
.bio-text p {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.82;
  max-width: 64ch;
}
.bio-text p + p { margin-top: 20px; }
.intro-pullquote {
  border-left: 3px solid var(--color-cumquat);
  padding-left: 20px;
  margin-top: 28px;
}
.intro-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--color-text);
  max-width: none;
  line-height: 1.5;
}
.intro-pullquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-slate);
  font-style: normal;
  margin-top: 8px;
}
@media (max-width: 780px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { position: static; }
  .bio-photo-wrap { max-width: 260px; margin: 0 auto; }
}

/* ---- ABOUT: INLINE IMAGE ---- */
.about-img {
  padding: 0 0 var(--section-pad);
  background: var(--color-parchment);
}
.about-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* ---- ABOUT: CREDENTIALS ---- */
.cred-list { margin-top: 36px; }
.cred-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-stone);
}
.cred-row:first-child { border-top: 1px solid var(--color-stone); }
.cred-marker {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-cumquat);
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 5px;
}
.cred-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  display: block;
  margin-bottom: 3px;
}
.cred-insurance {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-slate);
  margin-top: 24px;
}
.cred-institution {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-slate);
}
.cred-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-slate);
  margin-top: 6px;
  line-height: 1.6;
}

/* ---- ABOUT: HOW SECTION ---- */
.how-text p {
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.82;
  max-width: 65ch;
}
.how-text p + p { margin-top: 20px; }

/* ---- SERVICES PAGE ---- */
.svc-section { border-bottom: 1px solid var(--color-stone); }

.svc-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}
.svc-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: calc(var(--nav-h) + 36px);
  gap: 0;
}
.svc-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  color: var(--color-stone);
  user-select: none;
  display: block;
}
.svc-rule {
  width: 2px;
  height: 48px;
  background: var(--color-cumquat);
  display: block;
  margin-top: 8px;
}
.svc-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: var(--color-slate);
  margin-top: 12px;
  display: block;
}
.svc-body h2 { margin-bottom: 20px; }
.svc-body p {
  font-size: clamp(16px, 1.9vw, 17px);
  line-height: 1.82;
  max-width: 64ch;
  margin-bottom: 20px;
}
.svc-list { margin-top: 8px; }
.svc-list li {
  font-size: 16px;
  color: var(--color-text-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--color-stone);
  position: relative;
  padding-left: 24px;
  max-width: 60ch;
}
.svc-list li::before {
  content: '– ';
  color: var(--color-cumquat);
  position: absolute;
  left: 0;
}
.svc-joy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cumquat);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
  transition: gap var(--t);
}
.svc-joy-link:hover { gap: 12px; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 780px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; flex-direction: row; align-items: center; gap: 16px; }
  .svc-rule { width: 36px; height: 2px; margin-top: 0; }
  .svc-num { font-size: 56px; }
}

/* ---- VALUES / APPROACH SECTION (Services, on moss) ---- */
.values-section h2 { color: var(--color-parchment); }
.values-section .section-label { color: var(--color-stone); }
.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.val-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  color: var(--color-cumquat);
  display: block;
  margin-bottom: 6px;
}
.val-item h3 { font-size: 19px; color: var(--color-parchment); margin-bottom: 8px; }
.val-item p  { font-size: 14px; color: rgba(250,247,242,0.7); max-width: none; }
@media (max-width: 860px) { .values-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .values-list { grid-template-columns: 1fr; } }

/* ---- HOW WE WORK SECTION (Services) ---- */
.how-we-work-text p {
  font-size: clamp(16px, 1.9vw, 17px);
  line-height: 1.82;
  max-width: 64ch;
  margin-bottom: 20px;
}

/* ---- MORE JOY PAGE ---- */
.joy-intro-text p {
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.8;
  max-width: 64ch;
}
.joy-intro-text p + p { margin-top: 20px; }

.phase-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 56px;
  max-width: 760px;
}
.phase-item {
  display: grid;
  grid-template-columns: auto 3px 1fr;
  gap: 0 20px;
  align-items: start;
}
.phase-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  background: var(--color-cumquat);
}
.phase-rule {
  width: 3px;
  background: var(--color-cumquat);
  margin-top: 6px;
  align-self: stretch;
  min-height: 40px;
  border-radius: 2px;
}
.phase-content { padding-top: 8px; }
.phase-content h3 { font-size: clamp(18px, 2.2vw, 22px); margin-bottom: 8px; }
.phase-content p  { font-size: 16px; color: var(--color-text-light); max-width: 58ch; }

.video-placeholder {
  background: var(--color-moss);
  border-radius: 4px;
  padding: clamp(56px, 8vw, 96px) 40px;
  text-align: center;
  margin-top: 48px;
}
.video-placeholder p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: rgba(250,247,242,0.45);
  max-width: none;
  text-align: center;
}

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h3 { margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.cd-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  color: var(--color-slate);
  margin-bottom: 3px;
  display: block;
}
.cd-value {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text);
  font-weight: 400;
}
.cd-value a { color: inherit; transition: color var(--t); }
.cd-value a:hover { color: var(--color-cumquat); }
.cd-location { font-size: 15px; color: var(--color-text-light); max-width: 34ch; margin-top: 4px; }

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid var(--color-stone);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form-wrap h3 { font-size: 26px; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  color: var(--color-slate);
  margin-bottom: 7px;
}
.form-opt { font-weight: 400; }
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--color-stone);
  border-radius: 3px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-parchment);
  transition: border-color var(--t);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-moss);
  background: var(--color-white);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--color-text-light); margin-top: 10px; font-style: italic; }
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- CASE STUDIES PAGE ---- */
.case-study {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--color-stone);
}
.case-meta {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-slate);
  margin-bottom: 20px;
  display: block;
}
.case-study h3 { margin-bottom: 8px; }
.case-block { margin-top: 24px; }
.case-block h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-cumquat);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.case-block p {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 64ch;
}
.case-quote {
  margin: 40px 0 0;
  padding: 4px 0 4px 28px;
  border-left: 3px solid var(--color-cumquat);
  max-width: 64ch;
}
.case-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 14px;
}
.case-quote figcaption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-slate);
}
.case-quote figcaption strong { color: var(--color-text); font-weight: 700; }
.case-cta { margin-top: 32px; max-width: 64ch; }
.case-image {
  margin: 0 0 36px;
  max-width: 320px;
}
.case-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.case-image figcaption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: var(--color-slate);
  margin-top: 10px;
  line-height: 1.5;
}

/* ---- IMAGE BANNER ---- */
.image-banner {
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
}
.image-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.image-banner figcaption {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: var(--color-slate);
  text-align: center;
  margin-top: 14px;
}

/* ---- DIVIDER / RULE ---- */
.stone-rule {
  height: 1px;
  border: none;
  background: var(--color-stone);
  margin: 0;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---- UTILITIES ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .workshop-card,
  .workshop-card:nth-child(n) { transform: none; }
}

/* ============================================================
   SERVICE DETAIL PAGES (services/*)
   ============================================================ */
.svc-detail-body p {
  font-size: clamp(16px, 1.9vw, 17px);
  line-height: 1.82;
  margin-bottom: 20px;
}
.svc-detail-body h2 { margin-bottom: 20px; }

.case-pull-card {
  border-left: 3px solid var(--color-cumquat);
  padding: 20px 24px;
  background: var(--color-linen);
  margin: 36px 0;
  border-radius: 0 4px 4px 0;
}
.case-pull-card p { font-style: italic; color: var(--color-text); margin-bottom: 12px; font-size: 16px; }

.related-svc-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 16px; }

/* Services overview cards (6-up grid on overview page) */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.svc-overview-card {
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  border-radius: 4px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.svc-overview-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--color-stone);
  margin-bottom: 12px;
}
.svc-overview-card h3 { margin-bottom: 12px; font-size: clamp(18px, 2vw, 22px); }
.svc-overview-card p { font-size: 15px; line-height: 1.72; color: var(--color-text-light); flex: 1; margin-bottom: 20px; }
.svc-overview-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cumquat);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.svc-overview-link:hover { gap: 12px; text-decoration: underline; text-underline-offset: 3px; border-bottom: none; }
@media (max-width: 960px) {
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .svc-overview-grid { grid-template-columns: 1fr; }
}

/* Service sub-page sidebar layout */
.svc-page-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: start;
}
.svc-page-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.svc-subnav {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  margin: var(--section-pad) 24px 0 0;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  border-radius: 4px;
}
.svc-subnav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 14px;
}
.svc-subnav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-subnav-list a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  display: block;
  padding: 6px 8px;
  border-radius: 3px;
  transition: background var(--t), color var(--t);
}
.svc-subnav-list a:hover {
  background: var(--color-linen);
  color: var(--color-cumquat);
}
.svc-subnav-list a.current {
  background: var(--color-cumquat-pale);
  color: var(--color-cumquat);
  font-weight: 700;
}
@media (max-width: 960px) {
  .svc-page-body { display: block; }
  .svc-subnav { display: none; }
}

/* ---- FAQ ACCORDION ---- */
.faq-list { margin-top: 48px; }
.faq-item { border-top: 1px solid var(--color-stone); }
.faq-item:last-child { border-bottom: 1px solid var(--color-stone); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover .faq-q-text { color: var(--color-cumquat); }
.faq-q-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-slate);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 20px;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
  flex: 1;
  transition: color var(--t);
}
.faq-icon {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-cumquat);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t);
  user-select: none;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-answer { max-height: 1400px; }
.faq-answer-inner { padding-bottom: 32px; padding-left: 28px; }
.faq-answer-inner p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--color-text-light);
  max-width: 62ch;
  margin-bottom: 14px;
}
.faq-answer-inner p:last-of-type { margin-bottom: 0; }
.faq-answer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cumquat);
  transition: gap var(--t);
}
.faq-answer-cta:hover { gap: 12px; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 600px) {
  .faq-answer-inner { padding-left: 0; }
  .faq-q-num { display: none; }
}

/* ---- HOW IT WORKS PAGE ---- */
.how-step-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--color-slate);
  line-height: 1.4;
  max-width: 58ch;
  margin-bottom: 28px;
}
.how-step-detail li { list-style: none; padding: 0; }
.how-step-detail li + li { margin-top: 14px; }
