:root {
  --navy:    #1a3a5c;
  --teal:    #1D9E75;
  --gold:    #c8a84b;
  --black:   #1a1a1a;
  --offwhite:#F8F7F3;
  --paleteal:#E8F8F2;
  --slate:   #3E728E;
  --steel:   #61A0AF;
  --border:  #e0ece8;
  --text-muted: #6b7f8e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--black);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--teal) 55%, var(--gold) 100%);
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

/* Updated Brand Styles */
.nav-brand {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-brand-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.nav-brand-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: #178a65 !important;
  transform: translateY(-1px);
  color: #fff !important;
}

.page { display: none; }
.page.active { display: block; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #178a65; transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.hero {
  padding: 90px 60px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-bg-arc {
  position: absolute;
  top: -120px; right: -120px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--paleteal) 0%, rgba(232,248,242,0) 68%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 6px 18px;
  border-radius: 3px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-chip-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  line-height: 1.04;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--teal); }
.hero-creds {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 38px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-photo {
  position: relative;
  z-index: 1;
}
.hero-photo picture,
.about-photo picture,
.training-photos picture {
  display: block;
  width: 100%;
}
.hero-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  object-position: center top;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  background: var(--paleteal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.trust-text strong { display: block; font-weight: 600; color: var(--navy); font-size: 14px; }

.services-section {
  padding: 80px 60px;
  background: var(--offwhite);
}
.services-header { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Service cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 28px 31px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 100%;
}

.service-card-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, var(--teal), var(--navy));
  z-index: 2;
  pointer-events: none;
}
.gold-bar .service-card-bar {
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.service-card-head {
  flex-shrink: 0;
  margin-bottom: 14px;
}

.service-card-head-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--paleteal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.gold-bar .service-icon {
  background: rgba(200, 168, 75, 0.1);
}

.service-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  padding-top: 10px;
}

.service-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.service-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-card-list li {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.gold-bar .service-card-list li::before {
  background: var(--gold);
}

.productivity-section {
  background: var(--navy);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  color: #fff;
}
.prod-badge {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.prod-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.prod-title em { font-style: italic; color: #5DCAA5; }
.prod-text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prod-cta { margin-top: 8px; }
.prod-visual {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.prod-metric {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.prod-metric:last-child { margin-bottom: 0; }
.prod-metric-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.prod-metric-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.prod-metric-val { font-size: 16px; font-weight: 500; }

.cta-section {
  padding: 80px 60px;
  background: var(--paleteal);
  text-align: center;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--navy), var(--teal), var(--gold)) 1;
}
.cta-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cta-contact {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 30px;
}
.cta-contact a { color: var(--teal); }

.about-hero {
  padding: 80px 60px 72px;
  background: linear-gradient(150deg, #fff 0%, var(--offwhite) 60%, var(--paleteal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--paleteal) 0%, transparent 70%);
  z-index: -1;
}
.about-hero .section-title { font-size: 48px; margin: 0 auto 16px; max-width: 600px; }
.about-hero .section-sub { margin: 0 auto; text-align: center; max-width: 560px; }

.foundation-section {
  background: var(--navy);
  padding: 72px 60px;
  color: #fff;
}
.foundation-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.foundation-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.foundation-title em { font-style: italic; color: #5DCAA5; }
.foundation-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.foundation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.foundation-step {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}
.foundation-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 8px;
}
.foundation-step h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.foundation-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.foundation-result {
  margin-top: 28px;
  background: rgba(29,158,117,0.12);
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid rgba(29,158,117,0.2);
}
.foundation-result p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  text-align: center;
}

.about-body {
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: #fff;
}
.about-photo img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-bio h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}
.about-bio h3 em { font-style: italic; color: var(--teal); }
.about-bio .bio-creds-line {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 20px;
}
.about-bio p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.values-section {
  padding: 72px 60px;
  background: var(--offwhite);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s;
}
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.services-hero {
  padding: 80px 60px 72px;
  background: linear-gradient(150deg, #fff 0%, var(--offwhite) 60%, var(--paleteal) 100%);
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--paleteal) 0%, transparent 70%);
  z-index: -1;
}
.services-full-grid {
  padding: 72px 60px;
  background: var(--offwhite);
}
.services-full-grid .services-grid { margin-top: 48px; }

.training-section {
  padding: 72px 60px;
  background: #fff;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.training-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px;
  min-height: 0;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  transition: transform 0.15s, box-shadow 0.15s;
}
.training-item-title {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.training-item-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.training-item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(29,158,117,0.1);
}
.training-item:hover .training-item-desc {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.training-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 28px;
  font-style: italic;
}
.training-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.training-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}

.process-section {
  padding: 72px 60px;
  background: var(--offwhite);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 80px; right: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--offwhite);
  box-shadow: 0 0 0 1px var(--navy);
}
.process-step:nth-child(2) .process-num { background: var(--teal); box-shadow: 0 0 0 1px var(--teal); }
.process-step:nth-child(3) .process-num { background: var(--slate); box-shadow: 0 0 0 1px var(--slate); }
.process-step:nth-child(4) .process-num { background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.process-step h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.contact-hero {
  padding: 80px 60px 72px;
  background: linear-gradient(150deg, #fff 0%, var(--offwhite) 60%, var(--paleteal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--paleteal) 0%, transparent 70%);
  z-index: -1;
}
.contact-body {
  padding: 72px 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  background: #fff;
}
.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--paleteal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.contact-detail-value a { color: var(--teal); }
.contact-social {
  margin-bottom: 8px;
}
.contact-social-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-social-links {
  display: flex;
  gap: 12px;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.contact-social-link--facebook {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}
.contact-social-link--facebook:hover {
  background: #1877f2;
  color: #fff;
}
.contact-social-link--instagram {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.18), rgba(225, 48, 108, 0.18), rgba(131, 58, 180, 0.18));
  color: #e1306c;
}
.contact-social-link--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.contact-social-link--linkedin {
  background: rgba(0, 119, 181, 0.12);
  color: #0077b5;
}
.contact-social-link--linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.contact-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.contact-availability {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--paleteal);
  border-radius: 12px;
  border-left: 3px solid var(--teal);
}
.contact-availability h4 {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-availability p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

.contact-form-wrap {
  background: var(--offwhite);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #178a65; transform: translateY(-1px); }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p { font-size: 15px; color: var(--text-muted); }

footer {
  background: var(--navy);
  padding: 48px 60px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-logo span { color: var(--teal); }
.footer-tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-tagline-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-links ul li a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item span:first-child { font-size: 16px; }
.footer-social {
  margin-top: 16px;
}
.footer-social .contact-social-label {
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-social .contact-social-links {
  gap: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-gradient-line {
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
}

.page.active { animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Defer layout/paint for below-fold sections until near viewport */
.services-section,
.testimonials-section,
.productivity-section,
.foundation-section,
.values-section,
.training-section,
.process-section,
.contact-body {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .page.active,
  .testimonials-track,
  .nav-brand-img,
  .nav-links a,
  .btn-primary,
  .btn-secondary,
  .value-card,
  .cookie-banner {
    animation: none !important;
    transition: none !important;
  }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--navy);
  padding: 16px 40px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:first-child { border-top: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--teal); background: var(--paleteal); }
.mobile-menu a.mobile-cta {
  margin-top: 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border: none;
  width: auto;
  padding: 16px 36px;
}
.mobile-menu-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 32px;
}

/* Bottom Navbar Styles */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  height: 64px;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
}

.bottom-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: pointer;
  flex: 1;
}

.bottom-nav-link.active {
  color: var(--teal);
}

.bottom-nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-icon svg {
  width: 20px;
  height: 20px;
}

/* =============================================
   Testimonials Slider
   ============================================= */
.testimonials-section {
  padding: 80px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-sub {
  margin: 0 auto;
}

.testimonials-slider-wrap {
  position: relative;
  margin-top: 48px;
}

.testimonials-track-outer {
  overflow: hidden;
  border-radius: 4px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card takes exactly 1/3 of the container minus gaps */
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,58,92,0.07);
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 72px;
  line-height: 1;
  color: rgba(29,158,117,0.08);
  font-family: 'DM Serif Display', serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-content {
  font-size: 14.5px;
  color: var(--black);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-text-wrapper {
  max-height: 130px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-text-wrapper.collapsible::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  background: linear-gradient(to bottom, rgba(248,247,243,0), var(--offwhite));
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 1;
}
.testimonial-text-wrapper.expanded::after { opacity: 0; }

.testimonial-content p { margin-bottom: 10px; }
.testimonial-content p:last-child { margin-bottom: 0; }

.read-more-btn {
  background: none;
  border: none;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  display: none;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.read-more-btn:hover { color: #178a65; }
.read-more-btn .btn-arrow {
  transition: transform 0.2s;
  font-size: 12px;
  display: inline-block;
}
.read-more-btn:hover .btn-arrow { transform: translateX(2px); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}
.testimonial-avatar {
  border-radius: 50%;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.testimonial-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.testimonial-linkedin {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  color: #0077b5;
  transition: opacity 0.2s;
}
.testimonial-linkedin:hover { opacity: 0.8; }
.testimonial-linkedin .icon-linkedin,
.testimonial-linkedin svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  object-fit: cover;
}

/* Slider navigation */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.testimonials-btn:hover:not(:disabled) {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: scale(1.08);
}
.testimonials-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.25s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.testimonials-dot.active {
  background: var(--teal);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  nav { height: 80px; padding: 0 24px; }
  .nav-brand-img { height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 60px 24px 0; grid-template-columns: 1fr; gap: 32px; }
  .hero-h1 { font-size: 42px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .services-section,
  .cta-section,
  .about-hero,
  .about-body,
  .values-section,
  .foundation-section,
  .services-hero,
  .services-full-grid,
  .training-section,
  .process-section,
  .contact-hero,
  .contact-body,
  .productivity-section { padding: 52px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .training-photos { grid-template-columns: repeat(2, 1fr); }
  .pulse-included-grid { grid-template-columns: 1fr; }
  .pulse-audit-stats { width: 100%; justify-content: flex-start; }
  .pulse-audit-footer { flex-direction: column; align-items: stretch; }
  .btn-pulse-audit { justify-content: center; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .about-body { grid-template-columns: 1fr; gap: 32px; }
  .foundation-steps { grid-template-columns: 1fr; gap: 16px; }
  .productivity-section { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 40px 24px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-title { font-size: 32px; }
  .cta-section h2 { font-size: 32px; }
  /* Testimonials slider — 1 card visible on tablet */
  .testimonials-section { padding: 52px 24px; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 600px) {
  nav { height: 70px; padding: 0 16px; }
  .nav-brand-img { height: 50px; }
  .hero { padding: 44px 20px 0; }
  .hero-chip { font-size: 9px; padding: 5px 12px; letter-spacing: 0.14em; }
  .hero-h1 { font-size: 32px; line-height: 1.1; }
  .hero-creds { font-size: 12px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; text-align: center; padding: 15px; font-size: 14px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .services-section,
  .about-hero,
  .about-body,
  .values-section,
  .foundation-section,
  .services-hero,
  .services-full-grid,
  .training-section,
  .process-section,
  .contact-hero,
  .contact-body,
  .productivity-section { padding: 40px 20px; }
  .cta-section { padding: 52px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr; }
  .training-photos { grid-template-columns: 1fr; }
  .pulse-audit-card { padding: 24px 20px 20px; }
  .pulse-stat-num { font-size: 2rem; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .section-title { font-size: 26px; }
  .cta-section h2 { font-size: 26px; }
  .about-hero .section-title { font-size: 30px; }
  .section-sub { font-size: 15px; }
  .value-card { padding: 22px 18px; }
  .cta-section .btn-primary { width: 100%; text-align: center; }
  .cta-contact { font-size: 13px; line-height: 1.8; }
  .cta-contact a { display: block; margin-top: 4px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 36px 20px 24px; }
  .footer-logo { font-size: 18px; }
  .footer-contact-item { font-size: 13px; word-break: break-word; }
  .process-step { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .process-num { width: 48px; height: 48px; font-size: 18px; flex-shrink: 0; margin: 0; }
  .mobile-menu a { font-size: 26px; padding: 14px 32px; }
  .prod-title { font-size: 28px; }
  .foundation-title { font-size: 26px; }

  /* Bottom Navbar Mobile Adjustments */
  body { padding-bottom: 64px; }
  .bottom-nav { display: flex; }
  footer, .footer-gradient-line { display: none; }
  /* Testimonials slider mobile */
  .testimonials-section { padding: 40px 20px; }
  .testimonial-card { flex: 0 0 100%; padding: 24px 20px; }
  .testimonials-btn { width: 38px; height: 38px; font-size: 16px; }
  .cookie-banner { bottom: 68px; }
  nav {
    backdrop-filter: none;
    background: #fff;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--dark, #1a2332);
  border-top: 1px solid rgba(200, 168, 75, 0.3);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
  min-width: 200px;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: var(--gold, #c8a84b);
  color: #1a2332;
}
.cookie-btn-reject {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

/* People Pulse Audit — featured card (above service grid) */
.pulse-audit-wrap { margin: 40px 0 48px; }
.pulse-audit-card {
  border: 2px solid var(--navy);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--paleteal) 120%);
  padding: 36px 40px 28px;
  box-shadow: 0 12px 40px rgba(26, 58, 92, 0.1);
}
.pulse-audit-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.pulse-audit-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pulse-audit-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 520px;
  line-height: 1.55;
  margin: 0;
}
.pulse-audit-stats {
  display: flex;
  gap: 36px;
  flex-shrink: 0;
}
.pulse-stat { text-align: center; }
.pulse-stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--navy);
}
.pulse-stat-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.pulse-audit-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0 24px;
}
.pulse-included-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pulse-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pulse-included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
}
.pulse-included-grid li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--teal);
  font-weight: 700;
  margin-top: 1px;
}
.pulse-audit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-pulse-audit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-pulse-audit:hover {
  background: #14304d;
  transform: translateY(-2px);
}
.pulse-audit-location {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.services-grid-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
#services-grid-home {
  grid-template-columns: repeat(2, 1fr);
}
.service-card--home {
  justify-content: center;
  min-height: 0;
  padding: 22px 22px 22px 25px;
}
.service-card--home .service-card-head {
  margin-bottom: 0;
}
.services-home-cta {
  margin-top: 40px;
  text-align: center;
}
.services-home-cta .btn-secondary {
  min-width: 260px;
}
.services-grid-cta {
  margin-top: 48px;
  padding: 32px 36px;
  background: var(--offwhite);
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
}
.services-grid-cta p {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.training-intro { margin: 0 0 1rem; max-width: 720px; line-height: 1.7; }
.training-intro--spaced { margin-bottom: 1.5rem; }
.training-pullquote {
  max-width: 720px;
  margin: 0 0 2rem;
  padding: 0 0 0 1rem;
  font-size: 17px;
  color: #0f6e56;
  line-height: 1.4;
  border-left: 3px solid var(--teal);
  font-weight: 600;
}
.training-cta {
  margin-top: 32px;
  text-align: center;
}
.training-cta .btn-primary { min-width: 280px; }
