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

:root {
  --plum:    #2D1B35;
  --plum-mid:#3D2749;
  --gold:    #C9954A;
  --gold-lt: #E0B675;
  --cream:   #F7F3EE;
  --cream-dk:#EDE7E0;
  --mauve:   #4A3D55;
  --white:   #FFFFFF;
  --nav-h:   68px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--plum);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
.eyebrow, .section-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.section-h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(22px, 5.5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--plum);
  margin-bottom: 20px;
}
.section-h2 em { font-style: italic; }

.body-text {
  font-size: 15px;
  color: #4A3D55;
  line-height: 1.85;
  margin-bottom: 16px;
}

.text-link {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.text-link:hover { gap: 10px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--plum);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  font-size: 12px;
  color: rgba(247,243,238,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--gold); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--plum);
  color: var(--plum);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--plum); color: var(--cream); }

/* ===== NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--plum);
  border-bottom: 1px solid rgba(201,149,74,0.25);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-toggle-input { display: none; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s, width 0.3s;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle-input:checked ~ .nav-hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Full-screen overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,10,26,0.6);
  z-index: 198;
  opacity: 0;
  transition: opacity 0.35s;
}
.nav-toggle-input:checked ~ .nav-overlay {
  opacity: 1;
}

/* Slide-in panel */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  color: rgba(247,243,238,0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 7px 18px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--plum) !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/velvet-texture.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(45,27,53,0.92) 0%, rgba(45,27,53,0.7) 60%, rgba(45,27,53,0.4) 100%);
}
.hero-content {
  position: relative;
  max-width: 620px;
}
.hero-content .eyebrow { margin-bottom: 22px; }

.hero-h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(38px, 10vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-line1 { display: inline; }

.hero-sub {
  font-size: 16px;
  color: rgba(247,243,238,0.78);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,149,74,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  white-space: nowrap;
}
.ticker-dot { opacity: 0.4; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== INTRO SPLIT ===== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.intro-text {
  padding: 80px 60px 80px 40px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.intro-text .section-label { margin-bottom: 18px; }
.intro-text .section-h2 { margin-bottom: 24px; }
.intro-text .text-link { margin-top: 8px; }
.intro-image {
  height: 640px;
  overflow: hidden;
}
.intro-image img { object-position: 42% 42%; }

/* ===== SERVICES ===== */
.services-section {
  padding: 80px 40px;
  background: var(--cream);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
}
.services-header .section-label { margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(45,27,53,0.12);
}
.service-card {
  background: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.service-card:hover { background: var(--plum); }

.service-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.service-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--plum);
  margin-bottom: 14px;
  line-height: 1.25;
  transition: color 0.3s;
}
.service-card:hover .service-title { color: var(--cream); }

.service-desc {
  font-size: 13px;
  color: var(--mauve);
  line-height: 1.75;
  flex: 1;
  transition: color 0.3s;
}
.service-card:hover .service-desc { color: rgba(247,243,238,0.6); }

.service-arrow {
  font-size: 20px;
  color: var(--gold);
  margin-top: 28px;
  display: block;
  transition: transform 0.2s;
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* ===== IMAGE BREAK ===== */
.image-break {
  position: relative;
  height: 580px;
  overflow: hidden;
}
.image-break img { object-position: center 55%; }
.image-break-tall { height: 580px; }
.image-break-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,27,53,0.75));
  padding: 40px 40px 28px;
}
.image-break-caption p {
  font-size: 13px;
  color: rgba(247,243,238,0.7);
  font-style: italic;
  font-family: 'Cormorant Garant', serif;
  font-size: 16px;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute;
  inset: 0;
  background: url('images/bokeh-particles.webp') center/cover no-repeat;
}
.testimonial-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,27,53,0.88);
}
.testimonial-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.quote-mark {
  font-family: 'Cormorant Garant', serif;
  font-size: 130px;
  color: var(--gold);
  line-height: 0.75;
  opacity: 0.35;
  margin-top: 16px;
}
.quote-text {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 24px;
}
.quote-attr {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== CLIENTS STRIP ===== */
.clients-strip {
  padding: 60px 40px;
  background: var(--cream-dk);
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.client-pill {
  border: 1px solid rgba(45,27,53,0.2);
  color: var(--mauve);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 20px;
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee-section {
  background: var(--white);
  padding: 52px 0 48px;
  overflow: hidden;
  border-top: 1px solid rgba(45,27,53,0.08);
  border-bottom: 1px solid rgba(45,27,53,0.08);
}
.logo-marquee-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  text-align: center;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  opacity: 0.6;
}
.logo-marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  box-sizing: border-box;
}
.logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 172px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.35s ease, transform 0.35s ease;
}
/* Optical sizing keeps mixed logo aspect ratios visually balanced. */
.logo-pwc img { max-width: 96px; max-height: 62px; }
.logo-gcsp img { max-width: 178px; max-height: 58px; }
.logo-mann img { max-width: 145px; max-height: 60px; }
.logo-govtech img { max-width: 174px; max-height: 58px; }
.logo-kaleidoskope img { max-width: 178px; max-height: 52px; }
.logo-bosch img { max-width: 168px; max-height: 50px; }
.logo-meta img { max-width: 145px; max-height: 48px; }
.logo-osc img { max-width: 160px; max-height: 58px; }
.logo-catalyse img { max-width: 160px; max-height: 48px; }
.logo-luxasia img { max-width: 168px; max-height: 40px; }
.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-1px);
}
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none !important; }
}

/* ===== BOOK SECTION ===== */
.book-section {
  background: var(--cream-dk);
  border-top: 1px solid rgba(45,27,53,0.1);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: center;
  padding: 80px 80px;
}
.book-badge {
  display: inline-block;
  background: var(--plum);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.book-title {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(30px, 3.5vw, 40px);
  font-weight: 300;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 18px;
}
.book-title em { font-style: italic; color: var(--mauve); }
.book-sub {
  font-size: 14px;
  color: var(--mauve);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 480px;
}
.book-cover-wrap {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,27,53,0.25);
}
.book-cover-wrap img { width: 100%; height: auto; display: block; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1A1020;
  border-top: 1px solid rgba(201,149,74,0.15);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 12px;
  color: rgba(247,243,238,0.55);
  letter-spacing: 0.04em;
}
.footer-col-head {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 13px;
  color: rgba(247,243,238,0.7);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(247,243,238,0.08);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(247,243,238,0.45); }
.uv-credit { font-size: 12px; color: rgba(247,243,238,0.45); transition: color 0.2s; }
.uv-credit:hover { color: var(--gold); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--plum);
  padding: calc(var(--nav-h) + 60px) 40px 60px;
}
.page-hero-inner {
  max-width: 700px;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-h1 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 16px;
  color: rgba(247,243,238,0.75);
  line-height: 1.8;
  max-width: 520px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-image { overflow: hidden; }
.about-image img { height: 100%; object-position: top center; }
.about-content {
  padding: 80px 40px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.about-content .section-label { margin-bottom: 4px; }

.values-section {
  padding: 80px 40px;
  background: var(--cream-dk);
}
.values-section .section-label { margin-bottom: 16px; }
.values-section .section-h2 { margin-bottom: 48px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-item {}
.value-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.value-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--plum);
  margin-bottom: 10px;
}
.value-desc { font-size: 13px; color: var(--mauve); line-height: 1.8; }

/* ===== SERVICES PAGE ===== */
.services-full {
  padding: 0;
  max-width: 100%;
  margin: 0;
}
.service-full-item {
  display: grid;
  grid-template-columns: 55% 45%;
  border-bottom: none;
  min-height: max(100vh, 900px);
  align-items: stretch;
}
.service-full-item:last-child { border-bottom: none; }
.service-full-item.reverse {
  grid-template-columns: 45% 55%;
}
.service-full-item.reverse .service-full-img { order: -1; }
.service-full-item.reverse .service-full-text { order: 1; }

.service-full-text {
  padding: 72px 56px 80px 56px;
}
.service-full-item.reverse .service-full-text {
  padding: 72px 56px 80px 64px;
}

.service-full-img {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  min-height: 700px;
  overflow: hidden;
  align-self: start;
}
.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-full-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(201,149,74,0.2);
  line-height: 1;
  margin-bottom: 8px;
}
.service-full-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--plum);
  margin-bottom: 18px;
  line-height: 1.2;
}

/* ===== BOOK PAGE ===== */
.book-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 100px;
  align-items: start;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.book-form-section {
  background: var(--cream-dk);
  padding: 80px 40px;
}
.form-wrap {
  max-width: 540px;
  margin: 0 auto;
}
.form-row { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(45,27,53,0.15);
  color: var(--plum);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); }
.form-ty { display: none; text-align: center; padding: 32px 0; }
.form-ty .section-h2 { margin-bottom: 12px; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-toggle-input:checked ~ .nav-overlay { pointer-events: auto; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 85vw);
    background: #1E0F28;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 40px 48px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 199;
    border-left: 1px solid rgba(201,149,74,0.15);
    box-shadow: -20px 0 60px rgba(10,5,15,0.4);
  }
  .nav-toggle-input:checked ~ .nav-links { transform: translateX(0); }

  /* Stagger link entrance */
  .nav-links a {
    font-size: 22px;
    font-family: 'Cormorant Garant', serif;
    font-weight: 300;
    color: rgba(247,243,238,0.7);
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(201,149,74,0.1);
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { color: var(--gold); padding-left: 8px; }
  .nav-links a.nav-active { color: var(--gold); }

  /* CTA in panel */
  .nav-cta {
    margin-top: 24px;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    border: 1px solid rgba(201,149,74,0.5) !important;
    padding: 12px 24px !important;
    width: auto !important;
    display: inline-block !important;
    border-bottom: 1px solid rgba(201,149,74,0.5) !important;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--plum) !important; padding-left: 24px !important; }

  /* Small decorative gold line above links */
  .nav-links::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
    opacity: 0.6;
  }

  .intro-split, .about-grid { grid-template-columns: 1fr; }
  .intro-image, .about-image { height: 480px; order: -1; }
  .about-image img { object-position: 42% 8% !important; }
  .intro-text { padding: 48px 24px; }
  .intro-text .section-h2 { font-size: clamp(19px, 5vw, 26px); }
  .about-content { padding: 48px 24px; }

  .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .hero-scroll-hint { display: none; }

  .services-section, .testimonial-section, .book-section, .values-section, .clients-strip { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .book-section { grid-template-columns: 1fr; gap: 40px; }
  .book-cover-wrap { max-width: 360px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }

  .testimonial-inner { grid-template-columns: 48px 1fr; gap: 16px; }
  .quote-mark { font-size: 80px; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }

  .service-full-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-full-item.reverse { grid-template-columns: 1fr; }
  .service-full-item.reverse .service-full-img { order: 0; }
  .service-full-item.reverse .service-full-text { order: 1; }
  .service-full-img {
    position: relative;
    top: 0;
    height: 300px;
  }
  .service-full-text { padding: 40px 24px 56px; }
  .service-full-item.reverse .service-full-text { padding: 40px 24px 56px; }
  .services-full, .book-page-grid { padding: 0; }
  .book-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-form-section { padding: 60px 24px; }
  .image-break { height: 300px; }
  .image-break-tall { height: 300px; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }
  .nav-inner { padding: 0 24px; }

  .cf-turnstile { transform: scale(0.78); transform-origin: left center; overflow: hidden; }
}

/* ===== ACTIVE NAV STATE ===== */
.nav-links a.nav-active {
  color: var(--gold) !important;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .scroll-line { animation: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ===== COMING SOON BADGE on article links ===== */
.coming-soon-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mauve);
  border: 1px solid rgba(45,27,53,0.2);
  padding: 2px 8px;
  margin-left: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ===== CONFIDENTIALITY NOTE ===== */
.confidentiality-note {
  font-size: 13px;
  color: var(--mauve);
  line-height: 1.75;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  margin-bottom: 28px;
  background: rgba(201,149,74,0.06);
}

/* ===== SERVICE DESC larger ===== */
.service-desc { font-size: 14px; }
.sector-desc { font-size: 14px; }
.case-body { font-size: 14px; }
.testi-text { font-size: 17px; }
.value-desc { font-size: 14px; }


/* Image framing refinements v8 */
.homepage-coach-image { height: 860px; }
.homepage-coach-image img { object-position: 42% 62%; }
.book-section { grid-template-columns: minmax(0, 1fr) 420px; gap: 32px; align-items: center; }
.home-book-landscape { width: 100%; }
.home-book-landscape img { width: 100%; height: auto; display: block; object-fit: unset; }
.coaching-photo { height: 540px; }
.coaching-photo img { object-position: 42% 62%; }
@media (max-width: 768px) {
  .homepage-coach-image { height: 560px; }
  .book-section { grid-template-columns: 1fr; }
  .home-book-landscape { max-width: 360px; width: 100%; margin: 0 auto; }
  .coaching-photo { height: 360px; }
}

/* Image framing refinements v9: reveal more of the coach's torso and hands */
@media (min-width: 769px) {
  .homepage-coach-image {
    height: 880px;
  }

  .homepage-coach-image img {
    object-position: 42% 62%;
  }

  .coaching-photo {
    height: 610px;
  }

  .coaching-photo img {
    object-position: 42% 62% !important;
  }
}



/* ===== TESTIMONIAL CAROUSEL ===== */
.tcarousel-section {
  padding: 80px 0 70px;
  background: var(--cream-dk);
  overflow: hidden;
}
.tcarousel-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 48px;
}
.tcarousel-header .section-label { margin-bottom: 12px; }

.tcarousel-outer {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.tcarousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(45,27,53,0.2);
  background: var(--white);
  color: var(--plum);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 2;
  margin: 0 16px;
}
.tcarousel-btn:hover {
  background: var(--plum);
  color: var(--gold);
  border-color: var(--plum);
}
.tcarousel-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.tcarousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tcard {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border: 1px solid rgba(45,27,53,0.08);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-sizing: border-box;
}
.tcard-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.6;
  margin-bottom: 12px;
}
.tcard-text {
  font-size: 14px;
  color: var(--mauve);
  line-height: 1.8;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tcard-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(45,27,53,0.08);
  margin-top: auto;
}
.tcard-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.tcard-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 2px;
}
.tcard-role {
  font-size: 12px;
  color: var(--mauve);
  line-height: 1.4;
}
.tcarousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 0 40px;
}
.tcarousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45,27,53,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.tcarousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== CREDENTIALS ===== */
.credentials-section {
  background: var(--plum);
  padding: 64px 40px;
}
.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.credentials-inner .section-label { margin-bottom: 16px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.cred-card {
  border: 1px solid rgba(201,149,74,0.2);
  padding: 28px 24px;
}
.cred-icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.cred-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 17px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cred-body {
  font-size: 12px;
  color: rgba(247,243,238,0.55);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .tcard { flex: 0 0 calc(100% - 0px); }
  .tcarousel-btn { width: 36px; height: 36px; font-size: 14px; margin: 0 8px; }
  .tcarousel-section { padding: 60px 0 52px; }
  .tcarousel-header { padding: 0 24px; }
  .credentials-section { padding: 60px 24px; }
  .credentials-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== REVIEW MODAL ===== */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 26, 0.7);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.review-modal-overlay.open {
  display: flex;
}
.review-modal {
  background: var(--white);
  max-width: 580px;
  width: 100%;
  padding: 48px 44px 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.28s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.review-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--mauve);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.review-modal-close:hover { color: var(--plum); }
.review-modal-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.5;
  margin-bottom: 12px;
}
.review-modal-text {
  font-size: 15px;
  color: var(--mauve);
  line-height: 1.85;
  margin-bottom: 28px;
}
.review-modal-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(45,27,53,0.1);
}
.review-modal-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-modal-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 3px;
}
.review-modal-role {
  font-size: 13px;
  color: var(--mauve);
  line-height: 1.4;
}

/* Read more link on cards */
.tcard-readmore {
  display: block;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 16px;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.tcard-readmore:hover { opacity: 0.7; }

/* ===== PAIN SECTION (Team Elements style) ===== */
.pain-section {
  background: var(--cream);
  padding: 80px 40px;
  border-bottom: 1px solid rgba(45,27,53,0.08);
}
.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.pain-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.pain-h2 {
  font-family: 'Cormorant Garant', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--plum);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pain-h2 em { font-style: italic; color: var(--gold); }
.pain-sub {
  font-size: 16px;
  color: var(--mauve);
  font-style: italic;
  font-family: 'Cormorant Garant', serif;
}
.pain-intro {
  font-size: 15px;
  color: var(--plum);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pain-list li {
  font-size: 14px;
  color: var(--mauve);
  line-height: 1.7;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(45,27,53,0.06);
  position: relative;
}
.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}
.pain-conclusion {
  font-size: 15px;
  color: var(--plum);
  line-height: 1.8;
}
.pain-conclusion strong { font-weight: 500; color: var(--plum); }

/* ===== WHAT WE DO ===== */
.whatwedo-section {
  padding: 80px 40px;
  background: var(--cream-dk);
}
.whatwedo-inner { max-width: 1100px; margin: 0 auto; }
.whatwedo-sub {
  font-size: 15px;
  color: var(--mauve);
  line-height: 1.85;
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
}

/* ===== APPROACH STRIP ===== */
.approach-strip {
  background: var(--plum);
  padding: 80px 40px;
}
.approach-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-strip-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.approach-pillar {}
.approach-pillar-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}
.approach-pillar-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 6px;
}
.approach-pillar-body {
  font-size: 13px;
  color: rgba(247,243,238,0.55);
  line-height: 1.75;
}

/* ===== FOUNDER INTRO ===== */
.founder-intro-section {
  background: var(--cream);
  padding: 0;
}
.founder-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 560px;
}
.founder-intro-image {
  overflow: hidden;
  position: relative;
}
.founder-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 62%;
  display: block;
}
.founder-intro-text {
  padding: 72px 60px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--mauve);
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .pain-inner { grid-template-columns: 1fr; gap: 40px; }
  .pain-section { padding: 60px 24px; }
  .whatwedo-section { padding: 60px 24px; }
  .approach-strip { padding: 60px 24px; }
  .approach-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-intro-inner { grid-template-columns: 1fr; }
  .founder-intro-image { height: 420px; }
  .founder-intro-text { padding: 48px 24px; }
}


/* v49: supplied Sigma Praxis logo + light navigation */
.site-header { background:rgba(255,255,255,.97); border-bottom:1px solid rgba(31,82,112,.10); box-shadow:0 1px 10px rgba(25,35,45,.035); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px); }
.nav-logo-image { display:flex;align-items:center;width:210px;height:var(--nav-h);flex:0 0 auto; }
.nav-logo-image img { display:block;width:100%;height:auto;max-height:45px;object-fit:contain;object-position:left center; }
.nav-links a { color:#303033; }
.nav-links a:hover,.nav-links a.nav-active { color:#1f5270; }
.nav-cta { border-color:#1f5270;color:#1f5270 !important; }
.nav-cta:hover { background:#1f5270 !important;border-color:#1f5270 !important;color:#fff !important; }
.nav-hamburger span { background:#303033; }
.linkedin-link { display:inline-flex !important;align-items:center;gap:7px; }
.linkedin-icon { width:15px;height:15px;flex:0 0 15px; }
@media(max-width:900px){.nav-logo-image{width:178px}.nav-logo-image img{max-height:40px}.nav-links{background:#fff;border-left-color:rgba(31,82,112,.10)}.nav-links a{color:#303033}.nav-links a:hover,.nav-links a.nav-active{color:#1f5270}.nav-cta{color:#1f5270 !important;border-color:#1f5270 !important}}
@media(max-width:420px){.nav-logo-image{width:155px}}


/* v50: transparent high-density Sigma Praxis brand asset */
.nav-logo-image img {
  image-rendering: auto;
}

.footer-brand-logo {
  width: min(230px, 58vw);
  margin: 0 0 26px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.94);
  border-radius: 4px;
}
.footer-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .footer-brand-logo {
    width: 190px;
    margin-bottom: 22px;
  }
}

/* v51 footer logo correction */
.footer-left .footer-brand-logo {
  width: 230px;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.footer-left .footer-brand-logo img {
  display:block; width:100%; height:auto;
  /* Light backing is applied only to the dark wordmark pixels, not as a box. */
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}
@media(max-width:700px){.footer-left .footer-brand-logo{width:205px;margin-bottom:12px;}}


/* v52: footer logo plaque — preserve official logo colours on dark footer */
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(230px, 100%);
  margin: 0 0 24px;
  padding: 10px 14px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
}
.footer-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}
@media (max-width: 700px) {
  .footer-brand-logo {
    width: 200px;
    margin-bottom: 20px;
    padding: 9px 12px;
  }
}


/* v53: definitive light plaque for footer brand mark */
.site-footer .footer-brand-logo,
footer .footer-brand-logo,
.site-footer a.footer-brand-logo,
footer a.footer-brand-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 230px !important;
  max-width: 100% !important;
  min-height: 66px !important;
  margin: 0 0 20px !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 0 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}
.site-footer .footer-brand-logo img,
footer .footer-brand-logo img,
.site-footer a.footer-brand-logo img,
footer a.footer-brand-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 46px !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
}
@media (max-width: 700px) {
  .site-footer .footer-brand-logo,
  footer .footer-brand-logo,
  .site-footer a.footer-brand-logo,
  footer a.footer-brand-logo {
    width: 200px !important;
    min-height: 58px !important;
    padding: 9px 12px !important;
  }
}


/* v54: mobile menu viewport fix
   backdrop-filter on the fixed header was making the fixed slide-out menu
   use the header as its containing block instead of the full viewport. */
@media (max-width: 900px) {
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: min(340px, 88vw) !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    justify-content: flex-start !important;
    padding: max(92px, calc(env(safe-area-inset-top) + 72px)) 32px
             max(36px, calc(env(safe-area-inset-bottom) + 24px)) !important;
    z-index: 199 !important;
  }

  .nav-links::before {
    margin-bottom: 18px !important;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 21px;
    line-height: 1.15;
    padding: 13px 0;
  }

  .nav-hamburger {
    z-index: 201 !important;
  }

  .nav-overlay {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 198 !important;
  }
}


/* ============================================================
   v55 SIGMA PRAXIS REFRESH
   Inspired by the graphic confidence / colour rhythm of the
   supplied references, while retaining Sigma Praxis' own content.
   ============================================================ */
:root {
  --turquoise: #00C6C8;
  --salmon: #FF6074;
  --salmon-soft: #FF7B82;
  --indigo: #4338C8;
  --indigo-deep: #27206F;
  --ink: #242733;
  --paper: #FBFAF7;
  --paper-2: #F2F0EB;

  /* Remap legacy variables so all existing pages inherit the new identity. */
  --plum: #27206F;
  --plum-mid: #4338C8;
  --gold: #FF6074;
  --gold-lt: #FF7B82;
  --cream: #FBFAF7;
  --cream-dk: #F2F0EB;
  --mauve: #4B4E5B;
}

body {
  background: var(--paper);
  color: var(--ink);
}

/* cleaner white navigation, with a stronger brand-colour CTA */
.site-header {
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid rgba(36,39,51,.08) !important;
  box-shadow: 0 6px 28px rgba(39,32,111,.05);
}
.nav-links a { color: var(--ink) !important; }
.nav-links a:hover,
.nav-links a.nav-active { color: var(--indigo) !important; }
.nav-cta {
  border: 1px solid var(--indigo) !important;
  color: var(--indigo) !important;
  border-radius: 999px;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--indigo) !important;
  color: #fff !important;
}
.nav-hamburger span { background: var(--ink) !important; }

/* Hero: less old-world luxury, more contemporary leadership brand */
.hero {
  min-height: 92vh;
  align-items: center;
  padding-bottom: 64px;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27,22,72,.92) 0%, rgba(39,32,111,.82) 46%, rgba(39,32,111,.42) 100%);
}
.hero::after {
  content:"";
  position:absolute;
  width:310px;
  height:310px;
  right:-75px;
  top:22%;
  border-radius:50%;
  background:rgba(255,96,116,.16);
  border:1px solid rgba(255,255,255,.12);
  z-index:1;
  pointer-events:none;
}
.hero-content { max-width: 760px; z-index:2; }
.hero-h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: .98;
  letter-spacing: -.025em;
}
.hero-h1 em { color: var(--salmon); }
.hero-sub { max-width: 560px; font-size:17px; }
.eyebrow, .section-label { color: var(--salmon); font-weight:700; }
.btn-primary {
  background: var(--salmon);
  color: #241E55;
  border-radius:999px;
  padding:15px 28px;
  font-weight:700;
}
.btn-primary:hover { background:#fff; color:var(--indigo); }
.btn-ghost { color:#fff; }
.btn-ghost:hover { color:var(--turquoise); }

/* Graphic brand ticker */
.ticker-wrap { background: var(--turquoise); padding:12px 0; }
.ticker-track span { color: #17202A; font-weight:700; }

/* Alternating white / soft-neutral sections, with more generous breathing room */
.pain-section,
.whatwedo-section,
.services-section { background: var(--paper) !important; }
.pain-section { position:relative; overflow:hidden; }
.pain-section::before {
  content:"";
  position:absolute;
  width:220px;height:220px;border-radius:50%;
  left:-110px;bottom:-70px;
  background:rgba(0,198,200,.10);
}
.pain-h2 em { color: var(--salmon) !important; }
.pain-list li::before { color: var(--turquoise) !important; }

.whatwedo-section { background: var(--paper-2) !important; }
.services-grid {
  gap:18px !important;
  background:transparent !important;
}
.service-card {
  background:#fff !important;
  border:1px solid rgba(39,32,111,.10);
  border-radius:16px;
  padding:36px 30px !important;
  box-shadow:0 14px 40px rgba(39,32,111,.055);
  position:relative;
  overflow:hidden;
}
.service-card::before {
  content:"";
  position:absolute; left:0; top:0; width:100%; height:5px;
  background:var(--turquoise);
}
.service-card:nth-child(2)::before { background:var(--salmon); }
.service-card:nth-child(3)::before { background:var(--indigo); }
.service-card:hover {
  background:var(--indigo-deep) !important;
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(39,32,111,.16);
}
.service-num { color:var(--salmon); font-family:'Inter',sans-serif; font-weight:700; }
.service-title { color:var(--ink); font-size:27px; }
.service-card:hover .service-title { color:#fff; }
.service-card:hover .service-desc { color:rgba(255,255,255,.72); }
.service-arrow { color:var(--salmon); }

/* Approach becomes a bold colour block, closer to the confidence of OSC */
.approach-strip {
  background: var(--indigo-deep) !important;
  position:relative;
  overflow:hidden;
}
.approach-strip::after {
  content:"";
  position:absolute;
  width:430px;height:430px;border-radius:50%;
  right:-170px;top:-170px;
  background:rgba(0,198,200,.10);
}
.approach-strip-inner { position:relative; z-index:1; }
.approach-pillar-line { background:var(--turquoise) !important; }
.approach-pillar:nth-child(2) .approach-pillar-line { background:var(--salmon) !important; }
.approach-pillar:nth-child(3) .approach-pillar-line { background:#7D72FF !important; }

/* Image break gets a subtle brand tint */
.image-break::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(0,198,200,.08),transparent 35%,rgba(255,96,116,.08));
  pointer-events:none;
}

/* Testimonials: cards feel lighter and more contemporary */
.tcarousel-section { background:var(--paper-2) !important; }
.tcard {
  border-radius:14px !important;
  border:1px solid rgba(39,32,111,.10) !important;
  box-shadow:0 12px 34px rgba(39,32,111,.06);
}
.tcard-quote { color:var(--salmon) !important; }
.tcarousel-btn { border-color:rgba(39,32,111,.18) !important; color:var(--indigo) !important; }
.tcarousel-btn:hover { background:var(--indigo) !important; color:#fff !important; }

/* Client logos become a clean proof band */
.logo-marquee-section {
  padding:60px 0 56px;
  background:#fff;
}
.logo-item img { filter:grayscale(100%) opacity(.55); }
.logo-item:hover img { filter:grayscale(0%) opacity(1); }

/* Founder: cleaner editorial split with a coloured edge */
.founder-intro-section { background:#fff !important; }
.founder-intro-text {
  position:relative;
}
.founder-intro-text::before {
  content:"";
  position:absolute;
  left:0; top:0; bottom:0; width:6px;
  background:linear-gradient(var(--turquoise),var(--salmon),var(--indigo));
}
.founder-tagline { color:var(--indigo) !important; }

/* Book: turn into a modern feature band rather than another beige block */
.book-section {
  background:linear-gradient(120deg,#F4F1FF 0%,#FFF4F4 100%) !important;
  border-top:0 !important;
}
.book-badge {
  background:var(--indigo);
  color:#fff;
  border-radius:999px;
}
.book-title { color:var(--indigo-deep); }
.book-title em { color:var(--salmon); }

/* CTA / footer */
body > section[style*="background: var(--plum)"] {
  background:var(--indigo) !important;
}
.site-footer {
  background:#171426 !important;
}
.footer-col-head { color:var(--turquoise) !important; }
.footer-links-col a:hover { color:var(--salmon) !important; }

/* Internal page heroes and service pages inherit the refreshed identity */
.page-hero { background:var(--indigo-deep) !important; }
.page-hero .section-h2,
.page-hero h1 { color:#fff !important; }
.service-full-num { color:var(--salmon) !important; }
.service-full-title { color:var(--indigo-deep) !important; }
.text-link { color:var(--indigo); font-weight:700; }
.btn-outline { border-color:var(--indigo); color:var(--indigo); border-radius:999px; }
.btn-outline:hover { background:var(--indigo); color:#fff; }

/* Mobile */
@media (max-width:900px) {
  .hero { min-height:88svh; padding-top:calc(var(--nav-h) + 60px); }
  .hero::after { width:190px;height:190px;right:-85px;top:18%; }
  .hero-h1 { font-size:clamp(48px,14vw,68px); }
  .services-grid { gap:14px !important; }
  .service-card { border-radius:12px; }
  .nav-links { background:#fff !important; }
  .founder-intro-text::before { width:5px; }
}
