/* ─────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────── */
:root {
  /* Palette — Light (exact infographic colors) */
  --bg:        #FAF5EF;   /* warm parchment cream */
  --bg-alt:    #F2EBDF;   /* slightly darker warm cream for alt sections */
  --bg-card:   #FFFFFF;
  --text:      #122636;   /* dark navy title text */
  --text-muted:#55626B;   /* body text */
  --teal:      #1D5562;   /* dark teal accent */
  --teal-dark: #153F4A;   /* teal dark */
  --teal-faint:#E8F0EF;
  --gold:      #9D6B43;   /* amber gold */
  --gold-light:#E2C8A3;
  --border:    #D7C9AF;
  --shadow:    0 4px 24px rgba(13,24,38,.08);
  --shadow-lg: 0 12px 48px rgba(13,24,38,.14);
  --contact-bg:#1C3339;   /* infographic footer band */

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Source Sans 3', 'Inter', system-ui, -apple-system, sans-serif;
  --font-label: 'Source Sans 3', 'Inter', sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 9vw, 8rem);
  --container:  1200px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    0.3s;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(157,107,67,.05), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.32), rgba(255,255,255,0)),
    var(--bg);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
svg { display: block; }
svg * { stroke-linecap: round; stroke-linejoin: round; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

p { color: var(--text-muted); margin-bottom: .9em; }
p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-pad { padding-block: var(--section-py); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }
.delay-4 { transition-delay: .42s; }

/* ─────────────────────────────────────────────
   SHARED COMPONENTS
   ───────────────────────────────────────────── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--gold);
  font-size: .6rem;
  margin-block: 1.25rem;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Infographic-style label: "A SIMPLE 5-STEP OVERVIEW" */
.section-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .8rem;
}

/* "LISTEN BEFORE YOU DECIDE" footer style tagline */
.listen-tagline {
  font-family: var(--font-label);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.listen-tagline::before,
.listen-tagline::after {
  content: '◆';
  font-size: .45rem;
  opacity: .7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-label);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 3px;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(27,92,108,.35);
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  gap: 1.5rem;
}

.nav-logo .logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  padding: .45rem 1.1rem;
  border: 1.5px solid var(--teal);
  border-radius: 3px;
  color: var(--teal) !important;
  transition: background var(--t) var(--ease), color var(--t) var(--ease) !important;
}
.nav-cta:hover { background: var(--teal); color: #fff !important; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-label);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-link:hover { color: var(--teal); }
.mobile-cta { color: var(--teal) !important; border-bottom: none; }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 75% 30%, rgba(154,104,64,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 25% 70%, rgba(27,92,108,.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-tag {
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: .15em;
  margin-bottom: .5rem;
}
.hero-title span {
  display: block;
  color: var(--text);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-sketch-image {
  width: min(968px, 92%);
  object-fit: cover;
  display: block;
  filter: saturate(.92) contrast(.98);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-label);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-bounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
@keyframes fade-bounce {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;  transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────
   CONTEXT
   ───────────────────────────────────────────── */
.context { background: var(--bg-alt); }
.context,
.process,
.different,
.about,
.strategic,
.footer {
  position: relative;
}

.context::before,
.process::before,
.different::before,
.about::before,
.strategic::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(157,107,67,.045), transparent 22%),
    radial-gradient(circle at 85% 72%, rgba(29,85,98,.04), transparent 24%);
}

.context::after,
.process::after,
.about::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.065;
}

.context::after {
  background:
    url('../assets/images/textures/watercolor-elements.webp') center 12% / min(1180px, 92vw) auto no-repeat;
  opacity: 0.04;
}

.process::after {
  background:
    url('../assets/images/textures/watercolor-elements.webp') center 8% / min(1280px, 94vw) auto no-repeat;
}

.about::after {
  background:
    url('../assets/images/textures/watercolor-elements.webp') left center / min(980px, 72vw) auto no-repeat,
    url('../assets/images/textures/watercolor-elements.webp') right bottom / min(920px, 68vw) auto no-repeat;
  opacity: 0.045;
  transform: scaleX(-1);
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.3vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 1.5rem 2rem 1.5rem 2.25rem;
  border-left: 3px solid var(--teal);
  background: linear-gradient(180deg, rgba(255,255,255,.48), rgba(255,255,255,.18));
  border-radius: 0 6px 6px 0;
  display: block;
  box-shadow: 0 8px 24px rgba(18,38,54,.04);
}
.pull-quote p { color: var(--text); font-size: inherit; margin: 0; }

.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.context-col p { font-size: 1rem; line-height: 1.8; }

.premise-card {
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.8));
  margin-bottom: 1rem;
}
.premise-card:last-child { margin-bottom: 0; }
.premise-card--teal {
  background: linear-gradient(180deg, rgba(232,240,239,.95), rgba(232,240,239,.82));
  border-color: rgba(27,92,108,.25);
}
.premise-label {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

/* ─────────────────────────────────────────────
   12 PLACE FUNCTIONS — ROTATING WHEEL
   ───────────────────────────────────────────── */
.framework,
.deliverable,
.clients,
.faq {
  position: relative;
}

.framework::before,
.deliverable::before,
.clients::before,
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(157,107,67,.035), transparent 22%),
    radial-gradient(circle at 18% 76%, rgba(29,85,98,.03), transparent 22%);
}

.framework { background: var(--bg); }

.wheel-layout {
  display: grid;
  grid-template-columns: 620px minmax(0, 1fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.wheel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* The wheel container — fixed size */
.wheel {
  position: relative;
  width: 580px;
  height: 580px;
  flex-shrink: 0;
  overflow: visible;
}

/* Church center — stays fixed, non-rotating */
.wheel-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  z-index: 2;
  pointer-events: none;
}
.wheel-center-image {
  width: 840px;
  max-width: 134%;
  filter: saturate(.9) contrast(1.0);
  border-radius: 50%;
  object-fit: cover;
}
.wheel-center-label {
  font-size: .58rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.4;
  font-family: var(--font-label);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 120px;
  margin: 0;
}

/* Center dashed orbit circle */
.wheel-orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 316px;
  height: 316px;
  border-radius: 50%;
  border: 1px dashed rgba(157,107,67,.35);
  z-index: 1;
  pointer-events: none;
}

/* Ring: the rotating container */
.wheel-ring {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each item bubble on the ring */
.wheel-item {
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 12;
  /* Initial entrance animation */
  opacity: 0;
  transform: scale(0.3);
}
.wheel-item.wheel-visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.wheel-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  width: 110px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text);
  pointer-events: none;
  opacity: 0.5;
  visibility: visible;
  transition: opacity .4s var(--ease), visibility .4s step-end;
}

.wheel-label-num {
  font-family: var(--font-label);
  font-size: .62rem;
  line-height: 1;
  font-weight: 700;
  color: var(--teal);
}

.wheel-label-name {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.12;
}

.item-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2.5px solid transparent;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wheel-item:hover .item-inner {
  border-color: rgba(29,85,98,.55);
  box-shadow: 0 0 0 3px rgba(29,85,98,.1);
}

.wheel-item.active .item-inner {
  background: transparent;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,85,98,.18), 0 4px 22px rgba(27,92,108,.38);
  transform: rotate(var(--counter-rotate, 0deg)) scale(1.2);
}

.wheel-label.active {
  opacity: 0;
  visibility: hidden;
}
.wheel-label.near-active { opacity: 0.15; }

.item-num {
  font-family: var(--font-label);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--teal);
  transition: color var(--t);
  line-height: 1;
}
.item-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.92) contrast(1.04);
}

.wheel-item.active .item-icon-image {
  filter: drop-shadow(0 0 5px rgba(29,85,98,.5));
}

/* Badge above wheel showing active item name */
.wheel-active-badge {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  z-index: 20;
  background: rgba(250,245,239,.9);
  padding: .46rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(157,107,67,.28);
  box-shadow: 0 14px 26px rgba(18,38,54,.08);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.wheel-active-badge.visible { opacity: 1; }

/* Detail panel */
.wheel-detail {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 1.5rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid rgba(157,107,67,.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.45)),
    radial-gradient(circle at top right, rgba(157,107,67,.06), transparent 34%);
  box-shadow: 0 20px 36px rgba(18,38,54,.05);
  position: relative;
  z-index: 15;
}
.wheel-detail-default {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.wheel-detail-content { animation: fade-in-up .3s var(--ease) both; }

.wheel-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: .875rem;
  border-top: 1px solid var(--border);
}
.wdn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(85,98,107,.45);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.wdn-btn:hover {
  background: var(--teal-faint);
  color: var(--teal);
}
.wdn-counter {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  opacity: .7;
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.detail-number {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}
.detail-name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--text);
  margin-bottom: .75rem;
}
.detail-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Mobile fallback grid — hidden on desktop */
.functions-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.fn-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.8));
  transition: border-color var(--t), box-shadow var(--t);
}
.fn-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.fn-card-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: .5rem;
}
.fn-card-num {
  font-family: var(--font-label);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; color: var(--teal);
}
.fn-card-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 600; color: var(--text);
}
.fn-card-desc { font-size: .875rem; color: var(--text-muted); margin: 0; }

.framework-note {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   HOW RE:PLACE WORKS — 5 STEPS
   ───────────────────────────────────────────── */
.process { background: var(--bg-alt); }

.replace-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 4px;
}

.section-header--process {
  max-width: 1020px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 2rem;
  align-items: center;
  text-align: left;
}

.process-copy {
  max-width: 600px;
}

.section-header--process .replace-logo {
  margin: 0;
}

.section-header--process .gold-divider {
  max-width: 320px;
}

.process-illustration {
  justify-self: end;
  width: min(100%, 720px);
  opacity: .82;
}

.process-illustration-image {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.92) contrast(.98);
}

/* "Who we survey" callout */
.survey-reach {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: .9rem 1.4rem;
  border: 1px solid rgba(157,107,67,.25);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(242,235,223,.5));
  margin-bottom: 2.5rem;
}
.survey-reach-label {
  font-family: var(--font-label);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); white-space: nowrap;
}
.survey-reach-list {
  display: flex; flex-wrap: wrap; gap: .4rem .8rem;
  list-style: none;
}
.survey-reach-list li {
  font-family: var(--font-label); font-size: .82rem;
  color: var(--text-muted);
  padding: .22rem .65rem;
  border: 1px solid rgba(157,107,67,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
}

.steps-wrapper {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow-x: auto;
  padding-bottom: 4.25rem;
  position: relative;
  scroll-snap-type: x proximity;
}

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 600px;
}

.step-slot {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Arrow between step cards */
.step-arrow-between {
  flex: 0 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2.1rem;
  color: var(--gold);
  opacity: 0.7;
  font-size: 1.55rem;
  line-height: 1;
}

/* Step card — infographic-style white card */
.step-card {
  flex: 1 1 auto;
  min-height: 472px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,255,255,.86)),
    radial-gradient(circle at top, rgba(157,107,67,.035), transparent 42%);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(13,24,38,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
              box-shadow var(--t), border-color var(--t);
  padding: 0 0 0;
  scroll-snap-align: start;
  overflow: hidden;
}
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:hover { border-color: rgba(29,85,98,.3); box-shadow: 0 8px 28px rgba(13,24,38,.1); }

.step-card--sandbox {
  border-color: rgba(157,107,67,.3);
}

/* Teal number circle at top of each card */
.step-num-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  font-family: var(--font-label);
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 1.35rem auto .8rem;
  box-shadow: 0 4px 14px rgba(27,92,108,.38);
  flex-shrink: 0;
}

.step-icon-frame {
  width: 86px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
  flex-shrink: 0;
}

.step-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(.95) contrast(1.02);
}

/* Watercolor illustration at bottom of step card */
.step-illus-frame {
  width: 100%;
  height: 128px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(to top, rgba(242,235,223,.5), transparent);
}

.step-illus-image {
  width: 124px;
  height: 124px;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  filter: saturate(.92);
}

.step-body {
  flex: 1;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-title {
  font-family: var(--font-label);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .55rem;
  line-height: 1.3;
}

.step-desc {
  font-size: .79rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: .85rem;
  flex: 1;
}

.step-lower {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.step-output-label {
  width: 100%;
  border-top: 1px dotted rgba(157,107,67,.36);
  padding-top: .78rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.output-tag {
  font-family: var(--font-label);
  font-size: .52rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
}
.output-value {
  font-family: var(--font-label);
  font-size: .72rem; font-weight: 600;
  color: var(--gold);
}

.process-sandbox-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 .95rem;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(157,107,67,.42);
  background: rgba(255,250,243,.92);
  color: var(--gold);
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: normal;
  text-align: center;
  box-shadow: 0 12px 22px rgba(18,38,54,.05);
  width: 100%;
  max-width: calc(100% - 2rem);
  /* collapsed when not visible */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .45s var(--ease), max-height .45s var(--ease),
              padding .45s var(--ease), margin .45s var(--ease);
}
.process-sandbox-note.visible {
  opacity: 1;
  max-height: 80px;
  padding: .6rem .95rem;
  margin: 1rem 0 0;
}

.process-sandbox-kicker {
  padding: .18rem .42rem;
  border-radius: 999px;
  border: 1px solid rgba(157,107,67,.35);
  font-size: .54rem;
  letter-spacing: .16em;
  color: var(--gold);
}

/* Outcomes */
.outcomes { text-align: center; }
.outcomes-title {
  font-family: var(--font-label);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.outcomes-title::before, .outcomes-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.outcome-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .65rem;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.84));
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-label);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .03em; color: var(--text);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.outcome-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.outcome-sketch {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: saturate(.94) contrast(1.02);
}

/* ─────────────────────────────────────────────
   SAMPLE OUTPUT — PLACE FUNCTION PROFILE
   ───────────────────────────────────────────── */
.deliverable { background: var(--bg); }

.profile-showcase {
  max-width: 840px;
  margin: 0 auto;
}

.profile-card {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.9));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.profile-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--teal-dark);
  color: #fff;
}

.profile-church-image {
  width: 88px;
  height: 74px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(1.02) saturate(.75);
}

.profile-eyebrow {
  font-family: var(--font-label);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light);
  opacity: .85;
  margin-bottom: .3rem;
}

.profile-church-name {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.profile-church-sub {
  font-family: var(--font-label);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

.profile-functions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 1.25rem 1.75rem;
}

.pf-item {
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--border);
}
.pf-item:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 1.25rem; }
.pf-item:nth-child(even) { padding-left: 1.25rem; }
.pf-item:nth-last-child(-n+2) { border-bottom: none; }

.pf-item-header {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-bottom: .3rem;
}

.pf-num {
  font-family: var(--font-label);
  font-size: .56rem; font-weight: 700;
  letter-spacing: .06em;
  color: var(--teal);
  flex-shrink: 0;
}

.pf-name {
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 500;
  color: var(--text);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pf-score-val {
  font-family: var(--font-label);
  font-size: .68rem; font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
}
.pf-score-val.score-high { color: var(--teal); }
.pf-score-val.score-mid  { color: var(--gold); }
.pf-score-val.score-low  { color: var(--text-muted); }

.pf-bar-track {
  height: 4px;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
}

.pf-bar {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(.4,0,.2,1);
}
.pf-bar.score-high { background: var(--teal); }
.pf-bar.score-mid  { background: var(--gold); }
.pf-bar.score-low  { background: var(--text-muted); opacity: .6; }

.profile-card-footer {
  padding: .9rem 1.75rem;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  background: var(--bg-alt);
}

/* ─────────────────────────────────────────────
   STRATEGIC VALUE
   ───────────────────────────────────────────── */
.strategic { background: var(--bg-alt); }

.strategic-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.strategic-timing,
.strategic-use {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
  border: 1px solid var(--border);
  border-radius: 12px;
}

.strategic-timing {
  padding: 2rem 2rem 2.1rem;
  box-shadow: var(--shadow);
}

.strategic-card-tag {
  font-family: var(--font-label);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.strategic-timing h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: .75rem;
}

.strategic-uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.strategic-use {
  padding: 1.4rem 1.25rem;
}

.strategic-use-title {
  font-family: var(--font-label);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: .55rem;
}

/* ─────────────────────────────────────────────
   WHAT MAKES THIS DIFFERENT
   ───────────────────────────────────────────── */
.different { background: var(--bg-alt); }

.different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.different-card {
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: box-shadow var(--t), transform var(--t);
}
.different-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.different-row {
  display: flex; flex-direction: column; gap: .35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.1rem;
}
.different-row--ours { padding-bottom: 0; border-bottom: none; margin-bottom: 0; }

.diff-label {
  font-family: var(--font-label);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
}
.diff-label--others { color: var(--text-muted); }
.diff-label--us { color: var(--teal); }

.diff-strike {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-style: italic;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: rgba(74,88,98,.5);
}
.diff-highlight {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600; font-style: italic;
  color: var(--text);
}

/* ─────────────────────────────────────────────
   WHO WE WORK WITH
   ───────────────────────────────────────────── */
.clients { background: var(--bg); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.client-card {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
  border: 1px solid var(--border);
  border-radius: 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease),
              border-color var(--t), box-shadow var(--t);
}
.client-card.visible { opacity: 1; transform: translateY(0); }
.client-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.client-card:nth-child(1) { grid-column: 1/3; }
.client-card:nth-child(2) { grid-column: 3/5; }
.client-card:nth-child(3) { grid-column: 5/7; }
.client-card:nth-child(4) { grid-column: 2/4; }
.client-card:nth-child(5) { grid-column: 4/6; }

.client-ornament {
  width: 84px;
  height: 22px;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(154,104,64,.55);
  border-bottom: 1px solid rgba(154,104,64,.2);
  position: relative;
}
.client-ornament::before {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -58%);
  color: var(--gold);
  font-size: .72rem;
}
.client-title {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--text); margin-bottom: .5rem;
}
.client-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─────────────────────────────────────────────
   ABOUT / FOUNDERS
   ───────────────────────────────────────────── */
.about { background: var(--bg-alt); }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.founder-card {
  padding: 2.25rem 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.86));
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: box-shadow var(--t), transform var(--t);
}
.founder-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.founder-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-label);
  font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.founder-info { margin-bottom: 1.25rem; }
.founder-card h3 { margin-bottom: .25rem; }
.founder-role {
  font-family: var(--font-label);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .35rem;
}
.founder-location {
  display: flex; align-items: center; gap: .35rem;
  font-size: .8rem; color: var(--text-muted);
}
.founder-location-label {
  font-family: var(--font-label);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.founder-card p { font-size: .9rem; line-height: 1.75; }
.founder-email {
  display: inline-flex; align-items: center;
  margin-top: 1.25rem;
  font-family: var(--font-label);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .05em;
  color: var(--teal);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t);
  padding-bottom: 1px;
}
.founder-email:hover { border-color: var(--teal); }

/* ─────────────────────────────────────────────
   CONTACT / CTA
   ───────────────────────────────────────────── */
.contact { background: var(--contact-bg); }
.contact .section-tag { color: var(--gold-light); }
.contact h2 { color: #fff; }
.contact .gold-divider { color: var(--gold); }
.contact .gold-divider::before, .contact .gold-divider::after { background: rgba(255,255,255,.15); }
.contact p { color: rgba(255,255,255,.72); font-size: 1.05rem; }

.contact-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.contact-note { font-style: italic; margin-bottom: 2rem; }

/* ── Contact form ── */
.contact-form { text-align: left; margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-family: var(--font-label);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.38);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: .95rem;
  line-height: 1.5;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(157,107,67,.2);
}

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2.5rem;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-label);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn-contact-submit:hover {
  background: var(--teal);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transform: translateY(-1px);
}
.btn-contact-submit:active { transform: translateY(0); }

.form-success {
  margin-top: 1rem;
  color: var(--gold-light);
  font-style: italic;
  font-size: .95rem;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq-list { max-width: 740px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  gap: 1rem;
  transition: color var(--t);
}
.faq-question:hover { color: var(--teal); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--t) var(--ease);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer-inner p { margin-bottom: .5em; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.footer-brand .footer-logo-img { height: 56px; width: auto; margin-bottom: .95rem; }
.footer-tagline {
  font-family: var(--font-label);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .35rem;
}
.footer-location { font-size: .8rem; color: var(--text-muted); margin: 0; }

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; justify-content: end; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-col-title {
  font-family: var(--font-label);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .35rem;
}
.footer-col a, .footer-col span {
  font-size: .85rem; color: var(--text-muted);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  padding-block: 1.1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .5rem;
}
.footer-bottom span {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   MOBILE WHEEL CONTROLS
   ───────────────────────────────────────────── */
.wheel-mobile-controls {
  display: none;
}
.wmc-btn {
  width: 32px; height: 44px;
  border: none;
  background: none;
  display: flex; align-items: center; justify-content: center;
  color: rgba(29,85,98,.45);
  flex-shrink: 0;
  transition: color var(--t);
}
.wmc-btn:hover, .wmc-btn:active { color: var(--teal); }
.wmc-info { display: none; }

/* ─────────────────────────────────────────────
   STEPS MOBILE PAGINATOR
   ───────────────────────────────────────────── */
.steps-mobile-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: .75rem 0 1.5rem;
}
.sm-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: background var(--t), border-color var(--t), opacity var(--t);
}
.sm-btn:hover, .sm-btn:active { background: var(--teal-faint); border-color: var(--teal); }
.sm-btn:disabled { opacity: .3; pointer-events: none; }
.sm-dots { display: flex; gap: .5rem; align-items: center; }
.sm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; padding: 0;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.sm-dot.active { background: var(--teal); transform: scale(1.35); }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤1100px)
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .wheel-layout {
    gap: 1.75rem;
  }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions { margin-left: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-body { margin-inline: auto; }
  .hero-visual { min-height: 260px; order: -1; }
  .hero-orb { width: min(280px, 70%); }
  .hero-plate { inset: 12% 14% 8%; }
  .hero-sketch-image { width: min(300px, 86%); }
  .hero-scroll-hint { display: none; }

  .context-grid { grid-template-columns: 1fr; }

  /* ── Mobile wheel: half-wheel slider ── */
  .wheel-layout {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .wheel-wrapper {
    width: 100%;
    height: 290px;
    overflow: hidden;
    position: relative;
  }
  .wheel {
    position: absolute !important;
    left: 50% !important;
    margin-left: -290px;
    top: 18px;
    transform: scale(0.62) !important;
    transform-origin: top center;
  }
  .wheel-active-badge { display: none; }
  .wheel-detail {
    min-height: unset;
    height: auto;
    margin-left: 0;
    padding: 1.25rem 1.25rem;
  }
  .wheel-detail-nav { display: none; }
  .wheel-detail {
    position: relative;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .wheel-mobile-controls {
    display: flex;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
    pointer-events: none;
  }
  .wmc-btn { pointer-events: auto; }
  .functions-grid { display: none !important; }

  /* ── Steps paginator ── */
  .steps-wrapper {
    overflow: hidden;
    padding-bottom: 0;
  }
  .steps-row {
    display: flex;
    align-items: flex-start;
    min-width: unset !important;
    width: 100%;
    transition: transform 0.4s var(--ease);
  }
  .step-slot {
    flex: 0 0 100%;
    padding: 0 .25rem;
  }
  .step-card { min-height: auto; width: 100%; }
  .step-arrow-between { display: none; }
  .steps-mobile-nav { display: flex; }

  .section-header--process { grid-template-columns: 1fr; text-align: center; }
  .section-header--process .replace-logo { margin: 0 auto; }
  .section-header--process .gold-divider { margin-inline: auto; }
  .process-copy { margin: 0 auto; }
  .process-illustration { display: none; }
  .process-sandbox-note {
    width: min(100%, 320px);
  }
  .process-sandbox-note.visible {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-functions-grid { grid-template-columns: 1fr; }
  .pf-item:nth-child(odd) { border-right: none; padding-right: .75rem; }
  .pf-item:nth-child(even) { padding-left: .75rem; }
  .pf-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .pf-item:last-child { border-bottom: none; }
  .strategic-grid { grid-template-columns: 1fr; }
  .strategic-uses { grid-template-columns: 1fr 1fr; }
  .different-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .clients-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .clients-grid .client-card { grid-column: span 1 !important; }
  .founders-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤600px)
   ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .strategic-uses { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr !important; }
  .clients-grid .client-card { grid-column: span 1 !important; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .btn-contact-submit { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
