*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:       #2D1B3D;
  --plum-deep:  #1E1028;
  --plum-mid:   #3D2555;
  --gold-1:     #B8860B;
  --gold-2:     #C9991A;
  --gold-3:     #D4AF37;
  --gold-4:     #E8CC6A;
  --gold-5:     #F4E4A6;
  --gold-grad:  linear-gradient(135deg,#B8860B 0%,#C9991A 25%,#D4AF37 55%,#E8CC6A 80%,#F4E4A6 100%);
  --gold-grad-h:linear-gradient(90deg,#B8860B 0%,#D4AF37 50%,#F4E4A6 100%);
  --white:      #FFFFFF;
  --off:        #F8F5F0;
  --off2:       #F0EBE3;
  --off3:       #EAE3D8;
  --ink:        #1E1028;
  --ink-mid:    #4A3860;
  --ink-lt:     rgba(30,16,40,.72);
  --muted-w:    rgba(255,255,255,.8);
  --border-lt:  rgba(30,16,40,.09);
  --border-g:   rgba(212,175,55,.25);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size:19px; line-height:1.8; overflow-x:hidden; background:var(--white); color:var(--ink); }

/* ─── SCROLL REVEAL ─── */
.rv { opacity:1; transform:translateY(0); transition:opacity .65s ease, transform .65s ease; }
.rv.hidden { opacity:0; transform:translateY(22px); }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

/* ─── GOLD TEXT ─── */
.gt { background:var(--gold-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* ─── TOP UTILITY BAR (like JURRI) ─── */
.topbar {
  background: var(--plum-deep);
  padding: 9px 64px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
.topbar a { font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.45); text-decoration:none; transition:color .3s; }
.topbar a:hover { color:var(--gold-4); }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand { text-decoration: none; display: flex; align-items: center; }
.nav-logo { height: 40px; width: auto; display: block; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color .3s; font-weight: 400; }
.nav-links a:hover { color: var(--gold-2); }

.nav-cta {
  font-family: var(--sans); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  background: var(--plum); color: var(--white); border: none; padding: 12px 26px; cursor: pointer;
  transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--plum-mid); transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .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); }

@media(max-width:1024px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-bottom: 1px solid var(--border-lt);
    box-shadow: 0 16px 32px rgba(30,16,40,.08);
    z-index: 199;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 32px;
    border-bottom: 1px solid var(--border-lt);
  }
  .nav-hamburger { display: flex; }
}

/* ─── HERO — full-bleed centered ─── */
#hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--plum-deep);
}

/* Background image */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://cdn.katalyst-crm.com/t1/cloudinary/MARY_GRESS_HERO_hsznvn.png') center center / cover no-repeat;
  opacity: 0.38;
  z-index: 0;
}

/* Gradient overlay — dark at edges, lighter center */
#hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(30,16,40,0.35) 0%, rgba(30,16,40,0.72) 100%);
  z-index: 1;
}

.hero-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 80px 32px;
  max-width: 980px;
}

.hero-eyebrow {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-4); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold-3); opacity: .6;
}

.hero-h1 {
  font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 300; line-height: 1.08; letter-spacing: .01em;
  color: var(--white); margin-bottom: 28px;
  white-space: nowrap;
}
.hero-h1 em { font-style: italic; font-weight: 400; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub {
  font-family: var(--sans); font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,.88); font-weight: 300; font-style: normal;
  line-height: 1.7; max-width: 860px; margin-bottom: 20px;
}

.hero-body {
  font-family: var(--sans); font-size: 1rem;
  color: rgba(255,255,255,.62); font-weight: 300; line-height: 1.85;
  max-width: 820px; margin-bottom: 48px;
}

/* Gold rule separator */
.hero-rule {
  width: 48px; height: 2px;
  background: var(--gold-grad);
  margin: 0 auto 40px;
}

.btn-plum {
  display: inline-block; font-family: var(--sans); font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; background: var(--gold-grad);
  color: var(--plum-deep); padding: 18px 48px; text-decoration: none; border: none; cursor: pointer;
  transition: opacity .3s, transform .25s, box-shadow .3s;
}
.btn-plum:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(180,130,10,.35); }

/* ─── STATS BAND ─── */
.stats-band {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid var(--border-lt);
}
.sb-item {
  padding: 40px 52px;
  border-right: 1px solid var(--border-lt);
  display: flex; gap: 20px; align-items: center;
  transition: background .3s;
}
.sb-item:last-child { border-right: none; }
.sb-item:hover { background: var(--off); }
.sb-num {
  font-family: var(--sans); font-size: 3rem; font-weight: 700; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0;
}
.sb-copy { font-size: 1rem; color: var(--ink-lt); line-height: 1.6; font-weight: 300; }
.sb-copy strong { display: block; color: var(--ink); font-weight: 500; font-size: 1.05rem; margin-bottom: 4px; }

/* ─── SHARED LAYOUT ─── */
.section-wrap { padding: 110px 64px; }
.section-wrap-sm { padding: 72px 64px; }

/* sidebar label like JURRI */
.sidebar-label {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-lt); writing-mode: horizontal-tb;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold-3); }

.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.col-2-wide { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.col-label-content { display: grid; grid-template-columns: 140px 1fr; gap: 60px; align-items: start; }
.col-label-content > div { min-width: 0; }

.h2-serif { font-family: var(--serif); font-size: clamp(3rem,4.2vw,5rem); font-weight: 300; line-height: 1.08; color: var(--ink); }
.h2-serif em { font-style: italic; font-weight: 400; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.h3-serif { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 14px; }
.body-copy { font-size: 1.1rem; color: var(--ink-lt); font-weight: 300; line-height: 1.85; }
.body-copy + .body-copy { margin-top: 14px; }
.body-copy strong { color: var(--ink); font-weight: 500; }

/* divider line */
.divider { border: none; border-top: 1px solid var(--border-lt); margin: 0; }

/* gold rule */
.gold-rule { height: 2px; background: var(--gold-grad); border: none; }

/* ─── CREDIBILITY section — text left, image right ─── */
#credibility { background: var(--white); padding: 100px 64px; }
.cred-outer {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: stretch;
}
.cred-content-col {
  padding: 0;
}
.cred-label-col { padding-top: 6px; margin-bottom: 16px; }
.cred-main .h2-serif { margin-bottom: 32px; }
.cred-main p { font-size: 1.12rem; color: var(--ink-lt); font-weight: 300; line-height: 1.88; margin-bottom: 16px; }
.cred-main p strong { color: var(--ink); font-weight: 500; }
.cred-image-col {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(30,16,40,0.13);
  align-self: stretch;
  top: 0;
}
.cred-image-col img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% top;
  position: absolute;
  inset: 0;
}
.cred-image-col::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(30,16,40,0.28) 0%, transparent 50%);
  pointer-events: none;
}

.cred-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); margin-top: 52px; border: 1px solid var(--border-lt); }
.cred-card { background: var(--white); padding: 36px 32px; position: relative; overflow: hidden; transition: background .3s; }
.cred-card:hover { background: var(--off); }
.cred-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .5s ease; }
.cred-card:hover::before { transform: scaleX(1); }
.cc-num { font-family: var(--sans); font-size: 2.4rem; font-weight: 700; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.cc-label { font-size: .94rem; color: var(--ink-lt); line-height: 1.6; font-weight: 300; }
.cc-label strong { display: block; font-size: 1rem; color: var(--ink); font-weight: 500; margin-bottom: 4px; }

/* ─── PROBLEM SECTION — dark carousel ─── */
#problem {
  position: relative;
  background: var(--plum-deep) !important;
}
#problem::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://cdn.katalyst-crm.com/t1/cloudinary/ChatGPT_Image_3_Haz_2026_15_43_49_jgrhcz.png') center center / cover no-repeat;
  opacity: 0.42;
  z-index: 0;
  filter: saturate(1.1) brightness(0.85);
}
#problem > * { position: relative; z-index: 1; }
#problem .sidebar-label { color: rgba(255,255,255,.5); }
#problem .sidebar-label::before { background: var(--gold-3); }
#problem .h2-serif { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.4); }
#problem .body-copy { color: rgba(255,255,255,.75); }

.problem-carousel-wrap {
  position: relative;
  margin-top: 52px;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 88%, transparent 100%);
}

.problem-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 4px 0 20px;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.problem-track::-webkit-scrollbar { display: none; }
.problem-track.grabbing { cursor: grabbing; scroll-behavior: auto; }

.pc {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: rgba(15, 7, 25, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212,175,55,.22);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.pc:hover {
  background: rgba(15, 7, 25, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(0,0,0,.5);
}
.pc::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.pc:hover::before { transform: scaleX(1); }

.pc-tick { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-4); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; font-weight: 600; font-family: var(--sans); }
.pc-tick::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold-3); flex-shrink: 0; }
.pc p { font-size: 1.02rem; color: rgba(255,255,255,.88); line-height: 1.82; font-weight: 300; }
.pc p strong { color: var(--white); font-weight: 600; }

/* nav */
.problem-nav {
  display: flex; gap: 10px; align-items: center;
  margin-top: 32px;
}
.problem-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(212,175,55,.4);
  background: rgba(15,7,25,.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .25s, border-color .25s;
  font-size: 1rem; color: var(--gold-4);
  flex-shrink: 0;
}
.problem-arrow:hover { background: var(--gold-3); color: var(--plum-deep); border-color: var(--gold-3); }
.problem-dots {
  display: flex; gap: 8px; align-items: center; margin-left: 8px;
}
.problem-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; padding: 0; cursor: pointer;
  transition: background .3s, transform .3s;
}
.problem-dot.active { background: var(--gold-3); transform: scale(1.5); }

.problem-foot { margin-top: 48px; background: rgba(15,7,25,.7); backdrop-filter: blur(10px); border: 1px solid rgba(212,175,55,.2); padding: 36px 40px; border-left: 3px solid var(--gold-3); }
.problem-foot p { font-size: 1.15rem; color: rgba(255,255,255,.88); font-weight: 300; line-height: 1.8; }
.problem-foot p strong { color: var(--white); font-weight: 600; }

/* ─── MISSION — white, JURRI "two col" style ─── */
#mission { background: var(--white); }
.mission-right-col { }
.mission-right-col p { font-size: 1.14rem; color: var(--ink-lt); font-weight: 300; line-height: 1.85; margin-bottom: 16px; }
.mission-right-col p strong { color: var(--ink); font-weight: 500; }
.mission-worlds { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); margin: 36px 0; }
.mw { background: var(--white); padding: 28px 28px; }
.mw.alt { background: var(--off); }
.mw-tag { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px; }
.mw-t { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.mw-b { font-size: 1.02rem; color: var(--ink-lt); line-height: 1.7; font-weight: 300; }
.quote-bar { padding: 28px 32px; border-left: 3px solid var(--gold-3); background: var(--off); margin-top: 28px; }
.quote-bar p { font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--ink); line-height: 1.6; }
.quote-bar cite { display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-style: normal; color: var(--ink-lt); margin-top: 8px; }

/* ─── DIFFERENTIATOR — like JURRI's 3-col below text ─── */
#differentiator { background: var(--off); }
.diff-intro { margin-bottom: 52px; }
.diff-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); }
.dc { background: var(--white); padding: 40px 36px; position: relative; overflow: hidden; transition: background .3s; }
.dc:hover { background: var(--off); }
.dc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.dc:hover::before { transform: scaleX(1); }
.dc-icon {
  width: 48px; height: 48px;
  margin-bottom: 22px;
  opacity: 0.85;
  transition: opacity .3s, transform .3s;
}
.dc:hover .dc-icon { opacity: 1; transform: translateY(-2px); }
.dc h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.dc p { font-size: 1.06rem; color: var(--ink-lt); line-height: 1.8; font-weight: 300; }
.dc .qb { margin-top: 24px; padding: 18px 20px; background: var(--off); border-left: 2px solid var(--gold-3); }
.dc .qb p { font-family: var(--serif); font-style: italic; font-size: 1.30rem; color: var(--ink); line-height: 1.55; }
.dc .qb cite { display: block; margin-top: 6px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-style: normal; color: var(--ink-lt); }

/* ─── ART FRAMEWORK — bubble accordion ─── */
#framework { background: var(--white); }
.fw-intro { margin-bottom: 64px; }

/* Bubbles row */
.fw-bubbles {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 2px;
}

.fw-bubble {
  flex: 1;
  cursor: pointer;
  transition: flex .55s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.fw-bubble.open { flex: 2.2; }

/* Bubble header — the visible "pill" */
.fw-bubble-head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--plum-deep);
  border: 1px solid rgba(212,175,55,.15);
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.fw-bubble-head::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.fw-bubble.open .fw-bubble-head::before,
.fw-bubble-head:hover::before { transform: scaleX(1); }
.fw-bubble-head:hover { background: #2a1445; }

.fw-bubble-letter {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  transition: font-size .3s;
}
.fw-bubble.open .fw-bubble-letter { font-size: 7rem; }

.fw-bubble-label {
  flex: 1;
}
.fw-bubble-name {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.fw-bubble-for {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s;
  opacity: 0;
}
.fw-bubble.open .fw-bubble-for { max-height: 60px; opacity: 1; }

.fw-bubble-toggle {
  width: 28px; height: 28px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .4s, background .3s;
  color: var(--gold-4);
  font-size: .75rem;
}
.fw-bubble.open .fw-bubble-toggle { transform: rotate(180deg); background: rgba(212,175,55,.15); }

/* Collapsible body */
.fw-bubble-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(0.4,0,0.2,1), opacity .4s;
  opacity: 0;
  border: 1px solid rgba(212,175,55,.15);
  border-top: none;
  background: var(--off);
}
.fw-bubble.open .fw-bubble-body { max-height: 320px; opacity: 1; }
.fw-bubble-body-inner { padding: 28px 32px; }
.fw-bubble-body-inner p {
  font-size: 1.02rem;
  color: var(--ink-lt);
  line-height: 1.85;
  font-weight: 300;
}

/* Trust foundation card */
.fw-trust-card {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(212,175,55,.18);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fw-trust-text-col {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #140a20 0%, #1a0d2c 100%);
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(212,175,55,.15);
}
.fw-trust-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #0d0818;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-trust-photo-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.fw-trust-photo-col::after {
  content: none;
}
.fw-trust-photo-quote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 24px 28px 28px;
  background: linear-gradient(to top, rgba(8,4,18,0.92) 0%, rgba(8,4,18,0.7) 60%, transparent 100%);
  border-left: 2px solid var(--gold-3);
}
.fw-trust-photo-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.26rem;
  color: rgba(255,255,255,.9);
  line-height: 1.65;
  margin-bottom: 8px;
}
.fw-trust-photo-quote cite {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-4);
  display: block;
}
@media(max-width:768px){
  .fw-trust-photo-quote { padding: 20px 20px 24px; }
  .fw-trust-photo-quote p { font-size: .95rem; }
}
.fw-trust-content {
  position: relative;
  z-index: 2;
}
.fw-trust-eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin-bottom: 8px;
}
.fw-trust-heading {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.fw-trust-text-col p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 14px;
}
.fw-trust-quote {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255,255,255,.05);
  border-left: 2px solid var(--gold-3);
}
.fw-trust-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin-bottom: 10px;
}
.fw-trust-quote cite {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-4);
  display: block;
}
@media(max-width:768px){
  .fw-trust-card { grid-template-columns: 1fr; }
  .fw-trust-text-col { padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(212,175,55,.15); }
  .fw-trust-photo-col { min-height: 300px; }
  .fw-trust-heading { font-size: 2rem; }
}
@media(min-width:769px) and (max-width:1024px){
  .fw-trust-text-col { padding: 44px 36px; }
}

/* ─── SERVICES — three vertical cards ─── */
#services { background: var(--white); }

.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-lt);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  background: var(--white);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(30,16,40,.1);
}

/* Image */
.svc-card-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--plum-deep);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.svc-card:hover .svc-card-img img { transform: scale(1.04); }
.svc-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,32,0.65) 0%, rgba(20,10,32,0.1) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Gold top bar on hover */
.svc-card::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  flex-shrink: 0;
}
.svc-card:hover::before { transform: scaleX(1); }

/* Image placeholder label */
.svc-img-label {
  position: absolute;
  bottom: 20px; left: 24px;
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--sans);
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0,0,0,.9), 0 0 30px rgba(0,0,0,.6);
  z-index: 3;
}

/* Card body */
.svc-card-body {
  padding: 32px 30px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* The big problem quote */
.svc-trigger-quote {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 20px;
  border-left: 2px solid var(--gold-3);
  padding-left: 16px;
}

/* Arrow diagnosis */
.svc-diagnosis {
  font-size: .97rem;
  color: var(--ink-lt);
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 18px;
}

/* Badge */
.svc-badge {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold-2);
  margin-bottom: 20px;
  padding: 8px 14px;
  background: rgba(212,175,55,.07);
  border: 1px solid rgba(212,175,55,.18);
  display: inline-block;
}

/* Description */
.svc-desc {
  font-size: .97rem;
  color: var(--ink-lt);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* You leave with */
.svc-outcome {
  margin-top: auto;
  padding: 18px 20px;
  background: var(--off);
  border-left: 3px solid var(--gold-3);
}
.svc-outcome-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--sans);
}
.svc-outcome p {
  font-size: .94rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.7;
}

/* Delivery mode */
.svc-mode-line {
  margin-top: 16px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-lt);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-mode-line::before { content: '◆'; color: var(--gold-3); font-size: .4rem; }

/* Collapsible body */
.svc-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(0.4,0,0.2,1), opacity .4s;
  opacity: 0;
}
.svc-collapse.open {
  max-height: 600px;
  opacity: 1;
}

/* Read more button */
.svc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  padding: 0;
  transition: color .25s;
}
.svc-read-more:hover { color: var(--gold-1); }
.svc-read-more .rm-arrow {
  display: inline-block;
  transition: transform .35s;
  font-size: .8rem;
}
.svc-read-more.open .rm-arrow { transform: rotate(180deg); }

.svc-foot { margin-top: 48px; padding: 32px 40px; background: var(--off); border: 1px solid var(--border-lt); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.svc-foot p { font-size: 1.1rem; color: var(--ink-lt); font-weight: 300; line-height: 1.7; }

/* ─── SPLIT SECTION — photo left, content right (JURRI bottom split) ─── */
#approach {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
}
.approach-img {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 48px;
  background: var(--plum-deep);
}
.approach-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.approach-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,32,0.75) 0%, rgba(20,10,32,0.2) 55%, transparent 80%);
  z-index: 1;
}
.approach-img-caption {
  background: rgba(212,175,55,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(212,175,55,.2); padding: 22px 26px;
  position: relative; z-index: 2;
}
.approach-img-caption blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.26rem;
  color: var(--white); line-height: 1.55;
}
.approach-img-caption cite { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-style: normal; color: var(--gold-4); display: block; margin-top: 8px; }

.approach-content {
  background: var(--white);
  padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.approach-content .sidebar-label { margin-bottom: 24px; }
.approach-content h2 { font-family: var(--serif); font-size: clamp(2.6rem,3.6vw,4.2rem); font-weight: 300; line-height: 1.1; margin-bottom: 28px; }
.approach-content h2 em { font-style: italic; font-weight: 400; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.approach-content p { font-size: 1.1rem; color: var(--ink-lt); font-weight: 300; line-height: 1.9; margin-bottom: 18px; }
.approach-content p strong { color: var(--ink); font-weight: 500; }
.outcomes-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); margin-top: 36px; }
.oc2 { background: var(--white); padding: 28px 26px; transition: background .3s; }
.oc2:hover { background: var(--off); }
.oc2-label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.oc2-label::before { content: ''; display: block; width: 14px; height: 1px; background: var(--gold-3); }
.oc2 p { font-size: 1.02rem; color: var(--ink-lt); line-height: 1.7; font-weight: 300; }

/* ─── TESTIMONIALS / PROOF ─── */
#proof { background: var(--off); }
.proof-framing {
  font-size: 1.08rem;
  color: var(--ink-lt);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 720px;
}
.t-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); margin-top: 40px; }
.tc {
  background: var(--white);
  padding: 48px 40px;
  transition: background .3s;
  position: relative;
  display: flex;
  align-items: center;
}
.tc:hover { background: var(--off); }
.tc::before {
  content: '"';
  position: absolute;
  top: 12px; left: 28px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-3);
  opacity: .18;
  pointer-events: none;
}
.tc-q {
  font-family: var(--serif);
  font-size: 1.34rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.68;
  margin: 0;
  position: relative;
  z-index: 1;
}
.proof-disclaimer {
  font-size: .88rem;
  color: var(--ink-lt);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-top: 18px;
  opacity: .8;
}
.recognition-row { display: flex; gap: 24px; align-items: flex-start; margin-top: 1px; background: var(--white); padding: 36px 40px; border: 1px solid var(--border-lt); }
.recognition-row:first-of-type { margin-top: 32px; }
.rec-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,.12) 0%, rgba(212,175,55,.04) 100%);
  border: 1px solid rgba(212,175,55,.35);
  display: flex; align-items: center; justify-content: center;
}
.rec-icon svg { width: 22px; height: 22px; }
.rec-icon svg path,
.rec-icon svg rect,
.rec-icon svg circle,
.rec-icon svg line { stroke: var(--gold-3); }
.rec-text { font-size: 1.08rem; color: var(--ink-lt); line-height: 1.75; font-weight: 300; }
.rec-text strong { color: var(--ink); font-weight: 500; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 45% 55%; gap: 0; border: 1px solid var(--border-lt); }
.about-photo-col {
  position: relative; overflow: hidden;
  min-height: 580px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px;
  background: var(--plum-deep);
}
.about-photo-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,10,32,0.88) 0%, rgba(20,10,32,0.3) 45%, transparent 75%);
  pointer-events: none;
}
.about-photo-name { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); position: relative; z-index: 1; }
.about-photo-title { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-4); margin-top: 6px; position: relative; z-index: 1; }
.about-text-col { padding: 56px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-text-col p { font-size: 1.1rem; color: var(--ink-lt); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.about-text-col p strong { color: var(--ink); font-weight: 500; }
.about-creds-box { margin-top: 28px; padding: 24px 28px; background: var(--off); border-left: 3px solid var(--gold-3); }
.about-creds-box h5 { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-lt); margin-bottom: 12px; }
.acred { display: flex; gap: 12px; font-size: 1.02rem; color: var(--ink-lt); margin-bottom: 8px; line-height: 1.5; }
.acred::before { content: '◆'; color: var(--gold-3); font-size: .4rem; margin-top: 5px; flex-shrink: 0; }

/* ─── FINAL CTA ─── */
#cta {
  position: relative;
  overflow: hidden;
  padding: 120px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 560px;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://cdn.katalyst-crm.com/t1/cloudinary/mary_gress9_1_x69du0.png') center center / cover no-repeat;
  z-index: 0;
}
#cta::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(18, 8, 28, 0.78);
  z-index: 1;
}
.cta-left {
  position: relative; z-index: 2;
  max-width: 680px;
  width: 100%;
  padding: 0;
  display: flex; flex-direction: column;
  align-items: center;
  overflow: visible;
}
.cta-left::before, .cta-left::after { display: none; }
.cta-left > * { position: relative; z-index: auto; }
.cta-right { display: none; }
.cta-left .sidebar-label { margin-bottom: 24px; color: rgba(255,255,255,.4); justify-content: center; }
.cta-left .sidebar-label::before { background: var(--gold-3); }
.cta-left h2 { font-family: var(--serif); font-size: clamp(2rem,3.8vw,4.4rem); font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 36px; text-align: center; white-space: nowrap; }
.cta-left h2 em { font-style: italic; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.cta-service-name {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin-bottom: 12px;
  text-align: center;
}
.cta-meta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.cta-pill {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: var(--sans);
  font-weight: 400;
}
.cta-pill-divider {
  color: rgba(212,175,55,.4);
  font-size: .9rem;
}
.cta-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 20px;
  max-width: 540px;
  text-align: center;
}
.cta-promise {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
  text-align: center;
  border-left: none;
  padding-left: 0;
  border-top: 1px solid rgba(212,175,55,.2);
  border-bottom: 1px solid rgba(212,175,55,.2);
  padding: 18px 0;
}

.cta-right {
  background: transparent;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-right h3 { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--ink); margin-bottom: 16px; }
.cta-right p { font-size: 1.08rem; color: var(--ink-lt); font-weight: 300; line-height: 1.8; margin-bottom: 32px; }
.cta-right a.btn-cta-inline {
  display: inline-block; font-family: var(--sans); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; background: var(--gold-grad);
  color: var(--plum-deep); padding: 15px 36px; text-decoration: none; transition: opacity .3s, transform .2s;
}
.cta-right a.btn-cta-inline:hover { opacity: .88; transform: translateY(-1px); }
.cta-email { margin-top: 24px; }
.cta-email a { font-size: .98rem; color: var(--ink-lt); text-decoration: none; transition: color .3s; }
.cta-email a:hover { color: var(--gold-2); }

/* ─── FOOTER ─── */
footer {
  background: var(--plum-deep);
  padding: 44px 64px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
  border-top: 3px solid;
  border-image: var(--gold-grad-h) 1;
}
.f-brand { text-decoration: none; }
.f-meg { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: .04em; }
.f-sub { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: 4px; }
.f-links { display: flex; gap: 28px; list-style: none; justify-content: center; }
.f-links a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--gold-4); }
.f-right { text-align: right; }
.f-email a { font-size: .96rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .3s; }
.f-email a:hover { color: var(--gold-4); }
.f-copy { font-size: .62rem; color: rgba(255,255,255,.2); margin-top: 6px; }
.f-li a { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-4); text-decoration: none; margin-top: 8px; display: inline-block; }

/* marquee */
.mq-wrap { padding: 16px 0; overflow: hidden; border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); background: var(--white); }
.mq-track { display: flex; gap: 64px; animation: ticker 28s linear infinite; width: max-content; }
.mq-item { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-lt); display: flex; align-items: center; gap: 20px; }
.mq-item::after { content: '◆'; color: var(--gold-3); font-size: .4rem; }

/* animations */
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   MOBILE RESPONSIVE — 768px and below
══════════════════════════════════════ */
@media(max-width:768px){

  /* ── BASE ── */
  body { font-size: 16px; }

  /* ── NAV ── */
  nav { padding: 0 20px; height: 60px; gap: 16px; }
  .nav-logo { height: 32px; }
  .nav-cta { padding: 10px 16px; font-size: .6rem; letter-spacing: .06em; }

  /* ── HERO ── */
  #hero { min-height: 100svh; }
  .hero-center { padding: 80px 24px 60px; }
  .hero-eyebrow { font-size: .62rem; letter-spacing: .16em; }
  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    white-space: normal;
    line-height: 1.12;
    margin-bottom: 20px;
  }
  .hero-sub { font-size: 1rem; line-height: 1.7; margin-bottom: 16px; }
  .hero-body { font-size: .9rem; line-height: 1.75; margin-bottom: 36px; }
  .btn-plum { padding: 15px 32px; font-size: .7rem; }

  /* ── SECTIONS ── */
  .section-wrap, .section-wrap-sm { padding: 64px 20px; }
  .col-label-content { grid-template-columns: 1fr; gap: 20px; }
  .col-2, .col-2-wide { grid-template-columns: 1fr; gap: 32px; }

  /* ── HEADINGS ── */
  .h2-serif { font-size: clamp(2rem, 8vw, 2.8rem); line-height: 1.12; }
  .h2-serif br { display: none; }

  /* ── CREDIBILITY ── */
  #credibility { padding: 56px 20px; }
  .cred-outer { grid-template-columns: 1fr; gap: 0; }
  .cred-content-col { padding: 48px 20px; }
  .cred-image-col { min-height: 300px; }
  .cred-image-col img { object-position: center 20%; }
  .cred-cards { grid-template-columns: 1fr; }

  /* ── PROBLEM CAROUSEL ── */
  #problem .section-wrap, #problem.section-wrap { padding: 64px 20px; }
  .pc { flex: 0 0 280px; padding: 28px 24px; }
  .pc p { font-size: .95rem; }

  /* ── MISSION ── */
  .mission-worlds { grid-template-columns: 1fr; }
  .mission-body { grid-template-columns: 1fr !important; gap: 24px !important; }
  .mw-illus { height: 130px; }

  /* ── DIFFERENTIATOR ── */
  .diff-cols { grid-template-columns: 1fr; }

  /* ── ART FRAMEWORK ── */
  .fw-bubbles { flex-direction: column; gap: 12px; }
  .fw-bubble { flex: none !important; width: 100%; }
  .fw-bubble.open { flex: none !important; }
  .fw-bubble-letter { font-size: 3.8rem !important; }
  .fw-bubble.open .fw-bubble-letter { font-size: 4.5rem !important; }
  .fw-bubble-head { padding: 22px 24px; gap: 16px; }
  .fw-bubble-body-inner p { font-size: .95rem; }
  .fw-trust { min-height: auto; }
  .fw-trust-inner { padding: 48px 24px; }
  .fw-trust h4 { font-size: 1.6rem; }
  .fw-trust p { font-size: 1rem; }

  /* ── SERVICES ── */
  #services { padding: 64px 20px !important; }
  .svc-cards { grid-template-columns: 1fr; gap: 24px; }
  .svc-card-img { height: 200px; }
  .svc-card-body { padding: 24px 20px 28px; }
  .svc-trigger-quote { font-size: 1.08rem; }
  .svc-diagnosis { font-size: .92rem; }

  /* ── APPROACH / OUTCOMES ── */
  #approach { grid-template-columns: 1fr !important; }
  .approach-img { display: none; }
  .approach-content { padding: 56px 20px; }
  .approach-content h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); white-space: normal; }
  .outcomes-2col { grid-template-columns: 1fr; }

  /* ── PROOF ── */
  .t-grid { grid-template-columns: 1fr; }
  .tc { padding: 32px 24px; }
  .tc-q { font-size: 1.1rem; }

  /* ── ABOUT ── */
  #about .section-wrap { padding: 56px 20px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 360px; }
  .about-text-col { padding: 36px 20px; }
  .about-text-col p { font-size: 1rem; }
  .about-creds-box { padding: 18px 20px; }
  .acred { font-size: .9rem; }

  /* ── CTA ── */
  #cta { padding: 80px 24px; min-height: auto; }
  .cta-left h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); white-space: normal; line-height: 1.15; }
  .cta-meta-pills { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .cta-desc { font-size: 1rem; }
  .cta-promise { font-size: .95rem; }

  /* ── FOOTER ── */
  footer.footer-redesign { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .f-col-left  { align-items: center; }
  .f-col-center { align-items: center; }
  .f-col-right  { align-items: center; }
  .f-copy { text-align: center; white-space: normal; }
  .f-email-link { flex-direction: column; gap: 4px; text-align: center; word-break: break-all; white-space: normal; }

  /* ── SIDEBAR LABELS ── */
  .sidebar-label { font-size: .6rem; }
}

/* ── TABLET 769–1024px ── */
@media(min-width:769px) and (max-width:1024px){
  nav { padding: 0 32px; }
  .section-wrap { padding: 80px 32px; }
  #credibility { padding: 80px 32px; }
  .cred-outer { grid-template-columns: 1fr 360px; gap: 40px; }
  .cred-content-col { padding: 0; }
  .fw-bubbles { flex-direction: column; gap: 12px; }
  .fw-bubble { flex: none !important; }
  .fw-bubble.open { flex: none !important; }
  .svc-cards { grid-template-columns: 1fr; gap: 24px; }
  .diff-cols { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
  footer.footer-redesign { padding: 40px 32px; }
}

/* ─── FOOTER (site-wide) ─── */
.site-footer {
  background: var(--plum-deep);
  position: relative;
  padding: 0 64px;
  box-sizing: border-box;
  display: block;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-grad-h);
}

/* ── Row 1: head ── */
.footer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 64px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fh-brand {
  display: flex;
  align-items: center;
  gap: 36px;
  min-width: 0;
}
.fh-logo { height: 44px; width: auto; flex-shrink: 0; }
.fh-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.fh-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold-4);
  text-decoration: none;
  flex-shrink: 0;
  transition: all .25s;
}
.fh-social svg { width: 20px; height: 20px; }
.fh-social:hover { background: rgba(212,175,55,.12); border-color: var(--gold-3); transform: translateY(-2px); }

/* ── Row 2: grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 52px 0;
}
.fg-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.fg-title {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-4);
  margin: 0 0 6px;
}
.fg-col a {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-weight: 300;
  transition: color .25s, transform .25s;
  width: fit-content;
}
.fg-col a:hover { color: var(--gold-4); transform: translateX(3px); }
.fg-email { word-break: break-all; overflow-wrap: anywhere; line-height: 1.55; }
.fg-note {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── Row 3: legal ── */
.footer-legal {
  display: flex;
  width: 100%;
  clear: both;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.fl-copy { font-size: .78rem; color: rgba(255,255,255,.35); font-weight: 300; }
.fl-links { display: flex; gap: 28px; }
.fl-links a {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-weight: 400;
  transition: color .25s;
}
.fl-links a:hover { color: var(--gold-4); }

/* ── Responsive ── */
@media(max-width:900px){
  .site-footer { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media(max-width:560px){
  .site-footer { padding: 0 24px; }
  .footer-head { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── LEGAL PAGES (Privacy Policy, Terms) ─── */
.legal-hero {
  background: var(--plum-deep);
  padding: 140px 64px 64px;
}
.legal-hero .legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-hero .sidebar-label { color: rgba(255,255,255,.5); margin-bottom: 24px; }
.legal-hero .sidebar-label::before { background: var(--gold-3); }
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.legal-hero h1 em {
  font-style: italic; font-weight: 400;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.legal-hero .legal-updated { font-size: 1.02rem; color: rgba(255,255,255,.6); font-weight: 300; }

.legal-wrap { max-width: 820px; margin: 0 auto; }

.legal-toc {
  background: var(--off);
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--gold-3);
  padding: 32px 40px;
  margin: 8px 0 56px;
}
.legal-toc h3 {
  font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 20px;
}
.legal-toc ol {
  list-style: none; counter-reset: toc; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.legal-toc li { counter-increment: toc; font-size: .98rem; line-height: 1.5; }
.legal-toc li::before { content: counter(toc) '. '; color: var(--gold-2); font-weight: 600; }
.legal-toc a { color: var(--ink-lt); text-decoration: none; transition: color .25s; }
.legal-toc a:hover { color: var(--gold-2); }

.legal-content h2 {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--ink);
  margin: 0 0 18px; padding-top: 40px; border-top: 1px solid var(--border-lt);
  scroll-margin-top: 90px;
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink);
  margin: 32px 0 12px;
}
.legal-content p {
  font-size: 1.06rem; color: var(--ink-lt); font-weight: 300; line-height: 1.85; margin-bottom: 18px;
}
.legal-content p strong { color: var(--ink); font-weight: 500; }
.legal-content ul {
  list-style: none; margin: 0 0 20px; padding: 0;
}
.legal-content li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  font-size: 1.02rem; color: var(--ink-lt); font-weight: 300; line-height: 1.7;
}
.legal-content li::before {
  content: '◆'; color: var(--gold-3); font-size: .5rem; position: absolute; left: 0; top: 8px;
}
.legal-content a { color: var(--gold-2); text-decoration: underline; text-decoration-color: rgba(212,175,55,.4); text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-content a:hover { color: var(--gold-1); }
.legal-content > *:last-child { margin-bottom: 0; }

.legal-footer-note {
  margin-top: 56px; padding: 24px 28px; background: var(--off); border-left: 3px solid var(--gold-3);
}
.legal-footer-note p { margin: 0; font-size: .96rem; color: var(--ink-lt); }

@media(max-width:768px){
  .legal-hero { padding: 96px 20px 48px; }
  .legal-toc { padding: 24px 24px; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-content h2 { font-size: 1.55rem; }
  .legal-content h3 { font-size: 1.25rem; }
}
