/* =========================================
   THRIVE TOGETHER — PREMIUM REDESIGN
   Brand: #FFA200 orange | #516B76 slate
   Fonts: Karla (body), Work Sans (headings)
   Philosophy: Elevated, premium, leadership
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Work+Sans:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --orange: #ffa200;
  --orange-light: #fff5e6;
  --orange-dark: #cc8200;
  --slate: #516b76;
  --slate-deeper: #3a4d55;
  --slate-deepest: #516b76;
  --bg-white: #ffffff;
  --bg-off: #f8fafb;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --font-head: 'Work Sans', sans-serif;
  --font-body: 'Karla', sans-serif;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(81, 107, 118, 0.1);
  --shadow-hover: 0 20px 50px rgba(81, 107, 118, 0.15);
  --max-w: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* =====================
   TYPOGRAPHY
===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 500;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
}

h3 {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
}

h4 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
}

h5 {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.text-center {
  text-align: center;
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255, 162, 0, 0.3);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 162, 0, 0.42);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  margin-top: 15px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.btn-text:hover {
  color: var(--orange-dark);
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--slate);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.btn-outline-slate {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline-slate:hover {
  background: var(--slate);
  color: #fff;
  transform: translateY(-2px);
}

/* =====================
   HEADER / NAVIGATION
===================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--slate);
  transition: var(--transition);
}

/* Home hero header is solid like others */
/* Previously transparent logic removed */

.site-header.scrolled {
  position: fixed;
  background: rgba(87, 106, 116, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #fff;
}

/* CTA nav button */
.nav-link.nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  margin-left: 8px;
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255, 162, 0, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/Thrive_Together_Coaching_2023_Chris_chase_photography_2023-3470-1-scaled.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(58, 71, 77, 0.85) 0%,
      rgba(87, 106, 116, 0.65) 50%,
      rgba(87, 106, 116, 0.2) 100%);
}

/* Subtle animated grain */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 100px 40px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content .eyebrow {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.hero-content h1 {
  color: #fff;
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  line-height: 1.15;
}

.hero-content h1 strong {
  font-weight: 700;
  color: #fff;
}

.hero-content .hero-sub {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 44px;
  line-height: 1.6;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Page Hero (sub-pages) */
.page-hero {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 76px;
  text-align: center;
}

.facilitation-hero {
  background-image: url('../images/Team-AUT-event-FLIP-edited-1024x1024.jpg');
  min-height: 600px;
}

.team-building-hero {
  background-image: url('../images/Belbin-Team-Roles.webp');
  min-height: 500px;
}

.coaching-hero {
  background-image: url('../images/leadership-coaching-hero.jpg');
  min-height: 500px;
  background-position: top;
}

.disc-flow-hero {
  background-image: url('../images/disc-workshop.png');
  min-height: 500px;
  background-position: center bottom;
}

.belbin-hero {
  background-image: url('../images/Belbin-Team-Roles.webp');
  min-height: 500px;
}

.ecd-hero {
  background-image: url('../images/Emotional-Culture-Deck-1-edited-300x300.webp');
  min-height: 500px;
}

.page-hero .hero-overlay {
  background: linear-gradient(to top,
      rgba(58, 71, 77, 0.85) 0%,
      rgba(58, 71, 77, 0.5) 50%,
      rgba(58, 71, 77, 0.2) 100%);
}

.page-hero .hero-content {
  padding: 60px 60px 70px;
  max-width: 860px;
  margin: 0 auto;
}

.page-hero .hero-content .eyebrow {
  color: var(--orange);
}

.page-hero .hero-content h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 14px;
  font-weight: 500;
}

.page-hero .hero-content h5 {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 30px;
  font-family: var(--font-body);
}

/* =====================
   INTRO / LEAD SECTION
===================== */
.intro-section {
  background: var(--bg-white);
  padding: 100px 0;
  border-bottom: 1px solid rgba(81, 107, 118, 0.08);
}

.intro-quote-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px 0;
}

.intro-quote {
  position: relative;
  margin-bottom: 48px;
}

.intro-quote::before {
  content: '“';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 100px;
  font-family: Georgia, serif;
  color: var(--orange-light);
  line-height: 1;
}

.intro-quote p {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 32px;
}

.intro-quote .quote-signature {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--slate);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0;
}

.quote-action {
  display: flex;
  justify-content: center;
}

.intro-stat {
  text-align: center;
  padding: 24px 32px;
  background: var(--bg-off);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  min-width: 160px;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

/* =====================
   ABOUT / KATE SECTION
===================== */
.about-section {
  background: var(--slate-deeper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 162, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(87, 106, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-text .eyebrow {
  color: var(--orange);
}

.about-text h2 {
  color: #fff;
  margin-bottom: 28px;
  font-weight: 300;
}

.about-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16.5px;
  margin-bottom: 1.1em;
  line-height: 1.8;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.accreditation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.accreditation-badges img {
  height: 68px;
  width: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  transition: var(--transition);
  filter: brightness(1.05);
}

.accreditation-badges img:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.12);
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.kate-photo-wrap {
  position: relative;
}

.kate-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 162, 0, 0.4);
}

.kate-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 162, 0, 0.15);
}

.kate-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 5%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.kate-quote {
  background: rgba(255, 162, 0, 0.1);
  border: 1px solid rgba(255, 162, 0, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
  max-width: 300px;
}

/* =====================
   SERVICES SECTION
===================== */
.services-section {
  background: var(--bg-off);
  padding: 100px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--orange), transparent);
}

.services-header {
  margin-bottom: 60px;
}

.services-section h2 {
  color: var(--slate-deeper);
  margin-bottom: 16px;
  font-weight: 300;
}

.section-intro {
  max-width: 680px;
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.75;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 107, 118, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 162, 0, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 22px;
}

.service-card h5 {
  color: var(--slate-deeper);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Minimal Grid Variant */
.services-grid-minimal {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
}

.service-card-min {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1.5px solid rgba(81, 107, 118, 0.1);
  box-shadow: 0 10px 40px rgba(81, 107, 118, 0.05);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card-min::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 162, 0, 0.03) 0%, rgba(255, 162, 0, 0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card-min::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card-min:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(255, 162, 0, 0.12), 0 10px 20px rgba(81, 107, 118, 0.05);
  border-color: rgba(255, 162, 0, 0.4);
}

.service-card-min:hover::after {
  opacity: 1;
}

.service-card-min:hover::before {
  transform: scaleX(1);
}

.service-icon-min {
  color: var(--orange);
  margin-bottom: 30px;
  background: #fff;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 25px rgba(255, 162, 0, 0.15);
  border: 4px solid var(--orange-light);
}

.service-icon-min svg {
  width: 44px;
  height: 44px;
  transition: all 0.5s ease;
}

.service-card-min:hover .service-icon-min {
  transform: scale(1.1) rotate(8deg);
  background: var(--orange);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 15px 35px rgba(255, 162, 0, 0.4);
}

.service-card-min h4 {
  color: var(--slate-deeper);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

/* Removed Arrows */

@media (max-width: 992px) {
  .services-grid-minimal {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 576px) {
  .services-grid-minimal {
    grid-template-columns: 1fr !important;
  }
}

/* =====================
   WORKSHOPS SECTION
===================== */
.workshops-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.workshops-text .eyebrow {
  color: var(--orange);
}

.workshops-text h2 {
  color: var(--slate-deeper);
  margin-bottom: 20px;
  font-weight: 300;
}

.workshops-text>p {
  margin-bottom: 32px;
  font-size: 16.5px;
  color: var(--text-mid);
}

.workshops-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.workshop-item {
  display: grid;
  grid-template-columns: 24px minmax(180px, 1fr) 2fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(81, 107, 118, 0.1);
  text-decoration: none;
  align-items: flex-start;
  transition: var(--transition);
}

.workshop-item:last-child {
  border-bottom: none;
}

.workshop-item::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  margin-top: 2px;
}

.workshop-title {
  color: var(--slate-deeper);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.2s;
  padding-right: 16px;
}

.workshop-desc {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

.workshop-item:hover {
  background: rgba(87, 106, 116, 0.02);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.workshop-item:hover .workshop-title {
  color: var(--orange);
}

.workshops-image {
  position: relative;
}

.workshops-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--orange-light);
  z-index: 0;
}

.workshop-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* =====================
   THE TOOLS SECTION
===================== */
.tools-section {
  background: var(--bg-off);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tools-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(87, 106, 116, 0.15), transparent);
}

.tools-section .eyebrow {
  color: var(--orange);
}

.tools-section h2 {
  color: var(--slate-deeper);
  margin-bottom: 16px;
  font-weight: 300;
}

.tools-intro {
  max-width: 560px;
  margin: 0 auto 60px;
  color: var(--text-mid);
  font-size: 16px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tool-image-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate), var(--slate-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 12px 40px rgba(81, 107, 118, 0.25);
  position: relative;
}

.tool-image-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)) padding-box,
    linear-gradient(135deg, var(--orange), transparent) border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tool-item:hover .tool-image-wrap {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(87, 106, 116, 0.35);
}

.tool-item:hover .tool-image-wrap::after {
  opacity: 1;
}

.tool-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-item h5 {
  color: var(--slate-deeper);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tool-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 50px;
}

/* =====================
   COACHING SECTION
===================== */
.coaching-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.coaching-image {
  position: relative;
}

.coaching-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--orange-light);
  z-index: 0;
}

.coaching-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.coaching-text .eyebrow {
  color: var(--orange);
}

.coaching-text h2 {
  color: var(--slate-deeper);
  margin-bottom: 24px;
  font-weight: 300;
}

.coaching-text p {
  font-size: 16.5px;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* =====================
   TESTIMONIALS / SUCCESS STORIES
===================== */
.testimonials-section {
  background: var(--slate-deeper);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 280px;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .eyebrow {
  color: var(--orange);
}

.testimonials-section h2 {
  color: #fff;
  margin-bottom: 12px;
  font-weight: 300;
}

/* Light version override */
.testimonials-section.facil-alt h2 {
  color: var(--slate-deeper);
}

.testimonials-section.facil-alt .section-intro-light {
  color: var(--text-light);
}

.section-intro-light {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 56px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  max-width: 820px;
  margin: 0 auto 36px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 52px 60px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.testimonial-slide p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-slide strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  font-style: normal;
}

.testimonial-slide span {
  display: block;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* =====================
   CTA BANNER SECTION
===================== */
.cta-section {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-deeper) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 162, 0, 0.12) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 162, 0, 0.08) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 300;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  font-size: 16px;
}

/* =====================
   LOGOS / PARTNERS SECTION
===================== */
.logos-section {
  background: var(--bg-white);
  padding: 80px 0;
  border-top: 1px solid rgba(81, 107, 118, 0.08);
  border-bottom: 1px solid rgba(81, 107, 118, 0.08);
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: center;
  justify-content: center;
}

.logos-grid img {
  max-height: 52px;
  width: auto;
  max-width: 130px;
  filter: grayscale(100%) brightness(0.5);
  opacity: 0.55;
  transition: var(--transition);
  object-fit: contain;
}

.logos-grid img:hover {
  opacity: 0.85;
  filter: grayscale(40%) brightness(0.7);
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: var(--slate-deepest);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.linkedin-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkedin-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* =====================
   CONTACT PAGE
===================== */
.contact-hero {
  min-height: 280px;
  background: var(--slate-deepest);
  padding-top: 76px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 162, 0, 0.08) 0%, transparent 60%);
}

.contact-hero .hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.contact-hero h1 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 8px;
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.contact-section {
  background: var(--bg-off);
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
}

.contact-info .eyebrow {
  color: var(--orange);
}

.contact-info h2 {
  color: var(--slate-deeper);
  font-weight: 300;
  margin-bottom: 20px;
  font-size: clamp(26px, 3vw, 40px);
}

.contact-info p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--orange);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-link {
  color: var(--slate);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s;
}

.email-link:hover {
  color: var(--orange);
}

.contact-form-wrap {
  background: var(--bg-white);
  padding: 48px 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(81, 107, 118, 0.08);
}

.contact-form-wrap h3 {
  color: var(--slate-deeper);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(81, 107, 118, 0.1);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-mid);
}

.required {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(81, 107, 118, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-off);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 162, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 10px;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
  font-weight: 600;
  font-size: 15px;
}

/* =====================
   PRIVACY PAGE
===================== */
.privacy-section {
  padding: 80px 0 100px;
  background: var(--bg-white);
}

.privacy-content-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 107, 118, 0.08);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-content-card .intro {
  font-size: 18px;
  color: var(--slate-deeper);
  font-weight: 500;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--orange-light);
}

.privacy-content-card h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  color: var(--slate-deeper);
  margin-top: 48px;
  margin-bottom: 16px;
}

.privacy-content-card p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.privacy-content-card a.text-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-content-card a.text-link:hover {
  color: var(--slate);
}

/* =====================
   FACILITATION PAGE
===================== */
.facil-intro-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.facil-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.facil-intro-text .eyebrow {
  color: var(--orange);
}

.facil-intro-text h2 {
  color: var(--slate-deeper);
  margin-bottom: 24px;
  font-weight: 300;
}

.facil-intro-text p {
  font-size: 16.5px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.facil-kate-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.facil-kate-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.5;
  z-index: 0;
}

.facil-kate-wrap::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid var(--orange);
  opacity: 0.2;
  z-index: 0;
}

.facil-kate-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 10%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* Facil section alternating */
.facil-section {
  padding: 90px 0;
  border-bottom: 1px solid rgba(81, 107, 118, 0.07);
}

.facil-section:last-of-type {
  border-bottom: none;
}

.facil-alt {
  background: var(--bg-off);
}

.facil-light {
  background: var(--bg-white);
}

.facil-dark {
  background: var(--slate-deeper);
}

.facil-dark h2 {
  color: #fff;
  font-weight: 300;
  margin-bottom: 24px;
}

.facil-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.facil-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.facil-grid-reverse {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: center;
}

.facil-text-box .eyebrow {
  color: var(--orange);
}

.facil-text-box h2 {
  color: var(--slate-deeper);
  font-weight: 300;
  margin-bottom: 20px;
}

.facil-dark .facil-text-box h2 {
  color: #fff;
}

.facil-text-box p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.facil-dark .facil-text-box p {
  color: rgba(255, 255, 255, 0.75);
}

.facil-text-box p a {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.facil-text-box p a:hover {
  border-color: var(--orange);
}

.facil-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}

.facil-list li {
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(81, 107, 118, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.facil-list li:last-child {
  border-bottom: none;
}

.facil-list li::before {
  content: '✦';
  color: var(--orange);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

.facil-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.round-img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

/* Outcomes Table */
.outcomes-table {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid rgba(81, 107, 118, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.outcome-row {
  display: contents;
}

.outcome-row:not(:last-child) .outcome-title,
.outcome-row:not(:last-child) .outcome-desc {
  border-bottom: 1px solid rgba(81, 107, 118, 0.1);
}

.outcome-title {
  padding: 20px 24px;
  background: var(--bg-off);
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-deeper);
  border-right: 1px solid rgba(81, 107, 118, 0.12);
  display: flex;
  align-items: center;
}

.outcome-desc {
  padding: 20px 24px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

.section-label {
  font-weight: 700;
  color: var(--slate-deeper);
  margin-bottom: 4px;
  margin-top: 24px;
}

.coaching-pacific-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

.coaching-pacific-banner img {
  width: 100%;
  height: auto;
}

/* Positive Leadership Grid */
.positive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.positive-item {
  background: var(--bg-off);
  border-radius: var(--radius);
  padding: 28px 28px;
  border: 1px solid rgba(81, 107, 118, 0.1);
  transition: var(--transition);
}

.positive-item:hover {
  border-color: rgba(255, 162, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facil-dark .positive-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.positive-item h5 {
  color: var(--orange);
  margin-bottom: 10px;
  font-size: 15px;
}

.positive-item p {
  font-size: 14.5px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.65;
}

.facil-dark .positive-item p {
  color: rgba(255, 255, 255, 0.65);
}

/* Facil dark — list */
.facil-list-styled {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  max-width: 760px;
}

.facil-list-styled li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.facil-list-styled li:last-child {
  border-bottom: none;
}

.facil-list-styled li::before {
  content: '✦';
  color: var(--orange);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Belbin walk images */
.belbin-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.belbin-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.belbin-images img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

/* =====================
   PRIVACY POLICY PAGE
===================== */
.policy-section {
  padding: 120px 0 80px;
  min-height: 70vh;
}

.policy-container {
  max-width: 820px;
}

.policy-section h1 {
  color: var(--slate-deeper);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-deeper);
  margin: 36px 0 12px;
}

.policy-section p,
.policy-section li {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
}

.policy-section ul {
  padding-left: 20px;
  margin-bottom: 1em;
}

/* =====================
   FADE-IN ANIMATIONS
===================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delays */
.fade-in:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
  transition-delay: 0.3s;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .about-grid {
    grid-template-columns: 1fr 280px;
    gap: 50px;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaching-grid,
  .workshops-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coaching-image,
  .workshops-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(30, 45, 52, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 0 20px;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.nav-cta {
    width: auto;
    margin: 8px 24px 0;
  }

  .workshop-item {
    grid-template-columns: 24px 1fr;
  }

  .workshop-title {
    grid-column: 2 / -1;
  }

  .workshop-desc {
    grid-column: 2 / -1;
    margin-top: -8px;
  }

  .hero-content {
    padding: 60px 28px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

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

  .about-image {
    order: -1;
  }

  .kate-photo {
    width: 220px;
    height: 220px;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .tool-image-wrap {
    width: 130px;
    height: 130px;
  }

  .facil-intro-grid {
    grid-template-columns: 1fr;
  }

  .facil-grid,
  .facil-grid-reverse {
    grid-template-columns: 1fr;
  }

  .round-img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .belbin-images {
    grid-template-columns: 1fr;
  }

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

  .outcomes-table {
    grid-template-columns: 1fr;
  }

  .outcome-title {
    border-right: none;
    border-bottom: 1px solid rgba(81, 107, 118, 0.1);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .testimonial-slide {
    padding: 32px 28px;
  }

  .logos-grid {
    gap: 24px 36px;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-stat-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .privacy-content-card {
    padding: 32px 24px;
    border-radius: 12px;
  }
}

/* =====================
   WORKSHOPS GRID
===================== */
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.workshop-item {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(81, 107, 118, 0.08);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.workshop-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}

.workshop-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 20px;
}

.workshop-item h3 {
  font-size: 24px;
  color: var(--slate-deeper);
  margin-bottom: 20px;
}

.workshop-item p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 1.2em;
}

.workshop-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: var(--slate);
}

/* =====================
   TEAM INTRO SECTION
===================== */
.team-intro-section {
  padding: 100px 0 60px;
  background: var(--bg-off);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(81, 107, 118, 0.05);
}

.team-intro-section::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 162, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.team-intro-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.team-intro-text {
  flex: 1.3;
}

.lead-text {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--slate-deeper);
  margin-bottom: 28px;
}

.sub-lead-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
}

.team-intro-visual {
  flex: 0.7;
  display: flex;
  justify-content: center;
  position: relative;
}

.badge-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-badge {
  width: 170px;
  height: 170px;
  object-fit: contain;
  padding: 15px;
  background: var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 15px 45px rgba(81, 107, 118, 0.1);
  transition: var(--transition);
  border: 4px solid var(--bg-white);
  position: relative;
}

.badge-stack img:nth-child(2) {
  margin-top: -60px;
  margin-left: 90px;
  z-index: 2;
}

.badge-stack img:nth-child(3) {
  margin-top: -60px;
  margin-left: -70px;
  z-index: 3;
}

.intro-badge:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

@media (max-width: 992px) {
  .team-intro-flex {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .badge-stack {
    flex-direction: row;
    justify-content: center;
  }

  .badge-stack img:nth-child(2) {
    margin-top: 0;
    margin-left: -40px;
  }
}

/* =====================
   BELBIN WALK BOX
===================== */
.belbin-walk-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
  background: var(--bg-white);
  padding: 80px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(81, 107, 118, 0.08);
  margin-top: 40px;
  position: relative;
  overflow: visible;
}

.belbin-walk-box::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--orange) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: -1;
}

.belbin-walk-content {
  position: relative;
}

.belbin-walk-content h3 {
  margin-bottom: 28px;
  color: var(--slate-deeper);
  position: relative;
  display: inline-block;
}

.belbin-walk-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.belbin-walk-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.9;
}

.belbin-walk-images {
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.walk-img-main {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.walk-img-main:hover {
  transform: translateY(-10px) rotate(-1deg);
  z-index: 10;
}

.walk-img-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.walk-img-grid img {
  width: 360px;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 6px solid var(--bg-white);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.walk-img-grid img:nth-child(1) {
  z-index: 3;
  background: var(--bg-off);
  padding: 40px;
  object-fit: contain;
}

.walk-img-grid img:nth-child(2) {
  z-index: 4;
}

.walk-img-grid img:hover {
  transform: scale(1.05) translateY(-10px) rotate(1deg);
  z-index: 11;
}

@media (max-width: 1100px) {
  .belbin-walk-box {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 40px;
  }

  .belbin-walk-images {
    min-height: auto;
    padding-bottom: 40px;
  }

  .walk-img-main,
  .walk-img-grid img {
    max-width: 100%;
    transform: none !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    position: static;
  }

  .walk-img-grid {
    flex-direction: column;
    gap: 32px;
  }
}


/* =====================
   DISC QUADRANTS GRID
===================== */
.disc-quadrants-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.quadrant-item {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 5px solid transparent;
  transition: var(--transition);
}

.quadrant-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quad-letter {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.d-style {
  border-bottom-color: #E31E24;
}

.d-style .quad-letter {
  color: #E31E24;
}

.i-style {
  border-bottom-color: #FFD200;
}

.i-style .quad-letter {
  color: #FFD200;
}

.s-style {
  border-bottom-color: #00A651;
}

.s-style .quad-letter {
  color: #00A651;
}

.c-style {
  border-bottom-color: #0072BC;
}

.c-style .quad-letter {
  color: #0072BC;
}

.quadrant-item h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--slate-deeper);
}

.quadrant-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-mid);
  margin-bottom: 0;
}

/* =====================
   WORKSHOP DETAIL LIST
===================== */
.workshops-list {
  max-width: 900px;
  margin: 0 auto;
}

.workshop-detail-item {
  padding: 40px 0;
}

.workshop-num-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.workshop-detail-content h3 {
  font-size: 32px;
  color: var(--slate-deeper);
  margin-bottom: 30px;
  line-height: 1.2;
}

.workshop-detail-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.workshop-audience {
  margin-top: 40px;
  background: var(--bg-soft);
  padding: 30px;
  border-radius: 16px;
  border-left: 5px solid var(--orange);
}

.workshop-audience h4 {
  font-size: 20px;
  color: var(--slate-deeper);
  margin-bottom: 15px;
}

.workshop-audience p {
  font-size: 16px;
  margin-bottom: 15px;
}

.workshop-audience ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.workshop-audience li {
  margin-bottom: 10px;
  color: var(--text-mid);
  position: relative;
  list-style: none;
}

.workshop-audience li::before {
  content: '•';
  color: var(--orange);
  position: absolute;
  left: -20px;
  font-weight: bold;
}

.workshop-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(81, 107, 118, 0.1) 50%, transparent 100%);
  margin: 40px 0;
}

.workshop-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.module-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.module-item strong {
  display: block;
  font-size: 16px;
  color: var(--slate-deeper);
  margin-bottom: 10px;
}

.module-item p {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .workshop-detail-content h3 {
    font-size: 26px;
  }

  .workshop-modules {
    grid-template-columns: 1fr;
  }
}

/* =====================
   THE TOOLS PAGE
===================== */
/* =====================
   THE TOOLS PAGE
===================== */
/* =====================
   TOOLS MODULE — MODERN
===================== */
.tools-module {
  padding: 100px 0 160px;
  background-color: #f7f9fa;
  /* Subtle off-white to contrast the white island */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorative Blobs */
.tools-decor {
  position: absolute;
  filter: blur(100px);
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.tools-decor--1 {
  width: 500px;
  height: 500px;
  background: rgba(81, 107, 118, 0.08);
  top: -150px;
  right: -100px;
}

.tools-decor--2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 162, 0, 0.06);
  bottom: 100px;
  left: -100px;
}

.tools-module__header {
  text-align: center;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.tools-module__header .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.tools-module__header h1 {
  color: var(--slate-deeper);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 56px);
  letter-spacing: -0.01em;
  margin-bottom: 0;
  line-height: 1.1;
}

.tools-module__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  background: #ffffff;
  /* Subtle white background behind tools */
  border-radius: 48px;
  box-shadow: 0 10px 40px rgba(81, 107, 118, 0.03);
}

.tools-module__item {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  padding: 40px 30px;
  border-radius: 32px;
  isolation: isolate;
  height: 100%;
}

/* Animated Card Background */
.tools-module__card-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-white);
  border: 1px solid rgba(81, 107, 118, 0.08);
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(81, 107, 118, 0.04);
  z-index: -1;
  transition: var(--transition);
}

.tools-module__item:hover .tools-module__card-bg {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(81, 107, 118, 0.1);
  border-color: var(--orange-light);
  background: linear-gradient(to bottom, #fff, var(--bg-off));
}

.tools-module__image-wrap {
  width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(81, 107, 118, 0.06);
  border: 4px solid #fff;
  transition: var(--transition);
}

.tools-module__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.tools-module__item:hover {
  transform: translateY(-12px);
}

.tools-module__item:hover .tools-module__image-wrap {
  box-shadow: 0 20px 50px rgba(81, 107, 118, 0.12);
  transform: scale(1.05);
}

.tools-module__item:hover .tools-module__image-wrap img {
  transform: scale(1.1);
}

.tools-module__item.ecd .tools-module__image-wrap {
  background: #fdf2f4;
}

.tools-module__item h3 {
  font-size: 24px;
  color: var(--slate-deeper);
  margin-bottom: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tools-module__item:hover h3 {
  color: var(--orange);
}

.tools-module__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tools-module__item p {
  font-size: 15.5px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.tools-module__item::after {
  content: 'Explore Feature';
  margin-top: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.tools-module__item:hover::after {
  border-bottom-color: var(--orange);
  letter-spacing: 0.15em;
}

@media (max-width: 1200px) {
  .tools-module__grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .tools-module__grid {
    grid-template-columns: minmax(0, 420px);
    gap: 40px;
  }

  .tools-module__item {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .tools-module {
    padding: 60px 0 100px;
  }

  .tools-module__header {
    margin-bottom: 50px;
  }

  .tools-module__image-wrap {
    width: 160px;
  }
}

aspect-ratio: 1 / 1;
border-radius: 50%;
overflow: hidden;
margin-bottom: 32px;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 30px rgba(81, 107, 118, 0.06);
border: 4px solid #fff;
transition: var(--transition);
}

.tools-module__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.tools-module__item:hover {
  transform: translateY(-12px);
}

.tools-module__item:hover .tools-module__image-wrap {
  box-shadow: 0 20px 50px rgba(81, 107, 118, 0.12);
  transform: scale(1.05);
}

.tools-module__item:hover .tools-module__image-wrap img {
  transform: scale(1.1);
}

.tools-module__item.ecd .tools-module__image-wrap {
  background: #fdf2f4;
}

.tools-module__item h3 {
  font-size: 24px;
  color: var(--slate-deeper);
  margin-bottom: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tools-module__item:hover h3 {
  color: var(--orange);
}

.tools-module__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tools-module__item p {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.tools-module__item::after {
  content: 'Explore Feature';
  margin-top: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.tools-module__item:hover::after {
  border-bottom-color: var(--orange);
  letter-spacing: 0.15em;
}

@media (max-width: 1200px) {
  .tools-module__grid {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .tools-module__grid {
    grid-template-columns: minmax(0, 420px);
    gap: 40px;
  }

  .tools-module__item {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .tools-module {
    padding: 60px 0 100px;
  }

  .tools-module__header {
    margin-bottom: 50px;
  }

  .tools-module__image-wrap {
    width: 160px;
  }
}