/* =========================================================
   Hemani Jayaswal — The Capacity Approach™
   Premium executive coaching brand stylesheet
   ========================================================= */

:root {
  --navy: #1a2b3c;
  --navy-deep: #0f1c28;
  --navy-soft: #2a3f52;
  --sage: #5f7a6a;
  --sage-dark: #4a6356;
  --sage-light: #8fa89a;
  --sage-mist: #e8f0eb;
  --beige: #e8dfd2;
  --beige-warm: #f3ebe1;
  --beige-deep: #d4c4b0;
  --soft-white: #faf8f5;
  --cream: #f7f3ed;
  --gold: #b8956c;
  --gold-light: #d4b896;
  --gold-soft: rgba(184, 149, 108, 0.18);
  --text: #2c3a45;
  --text-muted: #5c6b76;
  --border: rgba(26, 43, 60, 0.08);
  --shadow-sm: 0 4px 20px rgba(15, 28, 40, 0.05);
  --shadow-md: 0 12px 40px rgba(15, 28, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 28, 40, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-pill: 2rem;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;
}

/* ----- Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--soft-white);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(143, 168, 154, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(232, 223, 210, 0.5), transparent);
  overflow-x: hidden;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--sage-mist);
  color: var(--navy);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6,
.display-font {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.section-lead.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.gold-rule {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: 0;
  margin: 1.25rem 0;
}

.gold-rule.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-navy { color: var(--navy) !important; }
.text-sage { color: var(--sage) !important; }
.text-gold { color: var(--gold) !important; }
.text-muted-brand { color: var(--text-muted) !important; }
.bg-soft-white { background-color: var(--soft-white) !important; }
.bg-cream { background-color: var(--cream) !important; }
.bg-beige { background-color: var(--beige-warm) !important; }
.bg-sage-mist { background-color: var(--sage-mist) !important; }
.bg-navy { background-color: var(--navy) !important; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 248, 245, 0.97);
}

.navbar {
  min-height: var(--header-h);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0%, var(--sage-dark) 100%);
  color: var(--soft-white);
  font-family: var(--font-display);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-link-custom {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.4rem 0.65rem !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--navy) !important;
  background: var(--sage-mist);
}

.nav-link-custom.active::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.btn-nav-cta {
  background: var(--sage-dark) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.5rem 0.95rem !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1.2 !important;
  max-width: none;
  word-break: keep-all;
}

.btn-nav-cta:hover {
  background: var(--navy) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.navbar-collapse .navbar-nav {
  flex-wrap: nowrap !important;
}

.navbar-nav > .nav-item:has(.btn-nav-cta) {
  flex-shrink: 0;
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 43, 60, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.offcanvas-brand {
  border-bottom: 1px solid var(--border);
}

.offcanvas .nav-link-custom {
  font-size: 1rem;
  padding: 0.75rem 1rem !important;
  margin-bottom: 0.25rem;
}

/* ----- Buttons ----- */
.btn {
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  transition: all var(--transition);
}

.btn-primary-brand {
  background: var(--sage-dark);
  border: 2px solid var(--sage-dark);
  color: #fff;
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

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

.btn-gold {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.btn-light-brand {
  background: #fff;
  border: 2px solid #fff;
  color: var(--navy);
}

.btn-light-brand:hover {
  background: var(--beige-warm);
  border-color: var(--beige-warm);
  color: var(--navy);
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--sage-dark);
  padding: 0;
  border: 0;
  background: none;
}

.btn-link-arrow:hover {
  color: var(--navy);
  gap: 0.65rem;
}

.btn-link-arrow i {
  transition: transform var(--transition);
}

.btn-link-arrow:hover i {
  transform: translateX(4px);
}

/* ----- Hero ----- */
.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  overflow: hidden;
}

.page-hero--home {
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(250, 248, 245, 0.97) 0%, rgba(250, 248, 245, 0.88) 38%, rgba(250, 248, 245, 0.35) 62%, rgba(26, 43, 60, 0.25) 100%),
    linear-gradient(to top, rgba(15, 28, 40, 0.2) 0%, transparent 40%);
}

.page-hero--solid .hero-media::after {
  background:
    linear-gradient(120deg, rgba(15, 28, 40, 0.82) 0%, rgba(26, 43, 60, 0.55) 45%, rgba(95, 122, 106, 0.4) 100%);
}

.page-hero--solid .hero-title,
.page-hero--solid .breadcrumb-item,
.page-hero--solid .breadcrumb-item a,
.page-hero--solid .breadcrumb-item.active,
.page-hero--solid .eyebrow {
  color: #fff !important;
}

.page-hero--solid .hero-lead {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--solid .gold-rule {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.page-hero--soft {
  background:
    linear-gradient(160deg, var(--cream) 0%, var(--beige-warm) 45%, var(--sage-mist) 100%);
}

.page-hero--soft .hero-media {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero-title {
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.hero-title .accent-line {
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 100% 2px;
  background-position: 0 92%;
  background-repeat: no-repeat;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Breadcrumb */
.breadcrumb-nav {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  margin-bottom: 0;
  background: transparent;
  padding: 0;
  font-size: 0.8125rem;
}

.breadcrumb-item a {
  color: var(--sage);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--beige-deep);
}

/* ----- Sections ----- */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--soft-white) 100%);
}

.section-sage {
  background: linear-gradient(160deg, var(--sage-mist) 0%, var(--cream) 100%);
}

.section-navy {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  color: rgba(255, 255, 255, 0.88);
}

.section-navy h2,
.section-navy h3,
.section-navy .section-title {
  color: #fff;
}

.section-navy .section-lead,
.section-navy .text-muted-brand {
  color: rgba(255, 255, 255, 0.72) !important;
}

.section-navy .gold-rule {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* ----- Cards ----- */
.pathway-card,
.feature-card,
.service-card,
.related-card,
.insight-card,
.testimonial-card,
.icon-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.pathway-card:hover,
.feature-card:hover,
.service-card:hover,
.related-card:hover,
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95, 122, 106, 0.25);
}

.pathway-card {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.pathway-card .icon-circle {
  margin-bottom: 1.35rem;
}

.pathway-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pathway-card p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}

/* Home — fully clickable navigation cards */
a.pathway-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.pathway-card-link:hover,
a.pathway-card-link:focus-visible {
  color: inherit;
}

a.pathway-card-link .pathway-card-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage-dark);
  transition: gap var(--transition), color var(--transition);
}

a.pathway-card-link:hover .pathway-card-hint,
a.pathway-card-link:focus-visible .pathway-card-hint {
  gap: 0.65rem;
  color: var(--navy);
}

.section-pathways {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.pathways-intro {
  max-width: 32rem;
  line-height: 1.75;
}

.pathways-grid {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.pathways-grid .pathway-card {
  min-height: 100%;
  padding: 2.25rem 2rem;
}

.pathways-grid .pathway-card h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  line-height: 1.35;
}

.reflection--home {
  background: linear-gradient(180deg, var(--soft-white) 0%, var(--cream) 55%, var(--beige-warm) 100%);
  padding: clamp(5rem, 12vw, 8.5rem) 1.5rem;
}

.reflection--home .reflection-quote {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  max-width: 28rem;
}

.reflection-link {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.reflection-link:hover,
.reflection-link:focus-visible {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.icon-circle {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-circle--sage { background: var(--sage-mist); color: var(--sage-dark); }
.icon-circle--beige { background: var(--beige); color: var(--navy); }
.icon-circle--gold { background: var(--gold-soft); color: var(--gold); }
.icon-circle--navy { background: rgba(26, 43, 60, 0.08); color: var(--navy); }
.icon-circle--mist { background: #e4eef5; color: #4a6d8c; }

.feature-card,
.service-card {
  padding: 2rem;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.25rem;
  margin: 1rem 0 0.65rem;
}

.related-card {
  padding: 1.75rem;
  text-decoration: none;
  display: block;
  color: inherit;
}

.related-card h3 {
  font-size: 1.2rem;
  margin: 0.85rem 0 0.5rem;
}

.related-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 0;
}

.insight-card {
  overflow: hidden;
}

.insight-card .card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insight-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insight-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.insight-card .card-body {
  padding: 1.5rem;
}

.insight-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

/* ----- Icon boxes ----- */
.icon-box {
  padding: 1.75rem;
  text-align: center;
}

.icon-box .icon-circle {
  margin-bottom: 1rem;
}

.icon-box h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.icon-box p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* ----- Quote / Reflection ----- */
.reflection {
  position: relative;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
  overflow: hidden;
}

.reflection::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -40px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(143, 168, 154, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reflection::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: 5%;
  top: 10%;
  background: radial-gradient(circle, rgba(184, 149, 108, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reflection-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.reflection-ornament {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: block;
}

/* ----- Testimonials ----- */
.testimonial-card {
  padding: 2.25rem;
  border: none;
  background: linear-gradient(165deg, #fff 0%, var(--cream) 100%);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  border: 0;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.carousel-control-prev { left: -0.5rem; }
.carousel-control-next { right: -0.5rem; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) brightness(0.3);
  width: 1rem;
  height: 1rem;
}

/* ----- Counters ----- */
.counter-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.section-navy .counter-value {
  color: var(--gold-light);
}

.counter-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.section-navy .counter-label {
  color: rgba(255, 255, 255, 0.7);
}

/* ----- Timeline ----- */
.timeline {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--sage-light));
}

.timeline-item {
  position: relative;
  padding-left: 3.5rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0.55rem;
  top: 0.35rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  z-index: 1;
}

.timeline-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.timeline-item .timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
  display: block;
}

.timeline-item p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Framework / process steps */
.process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 100%;
  text-align: center;
}

.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* ----- Accordion ----- */
.accordion-brand .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.accordion-brand .accordion-button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  background: #fff;
  box-shadow: none !important;
  padding: 1.15rem 1.35rem;
}

.accordion-brand .accordion-button:not(.collapsed) {
  background: var(--sage-mist);
  color: var(--navy);
}

.accordion-brand .accordion-button::after {
  background-size: 1rem;
}

.accordion-brand .accordion-body {
  color: var(--text-muted);
  padding: 0 1.35rem 1.25rem;
}

/* ----- Tabs ----- */
.nav-tabs-brand {
  border-bottom: 2px solid var(--border);
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-tabs-brand .nav-link {
  border: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.25rem;
  background: transparent;
}

.nav-tabs-brand .nav-link:hover {
  color: var(--navy);
  background: var(--sage-mist);
}

.nav-tabs-brand .nav-link.active {
  color: var(--navy);
  background: transparent;
  border-bottom: 2px solid var(--gold);
  margin-bottom: -2px;
}

.tab-pane-content {
  padding: 2rem 0 0;
}

/* ----- CTA bands ----- */
.cta-band {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  overflow: hidden;
  border-radius: 0;
}

.cta-band--sage {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--navy) 100%);
  color: #fff;
}

.cta-band--beige {
  background: linear-gradient(135deg, var(--beige-warm) 0%, var(--sage-mist) 100%);
}

.cta-band--sage h2,
.cta-band--sage .section-title {
  color: #fff;
}

.cta-band--sage p {
  color: rgba(255, 255, 255, 0.85);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

/* ----- Forms ----- */
.form-control,
.form-select {
  border: 1px solid rgba(26, 43, 60, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 0.2rem rgba(95, 122, 106, 0.18);
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-placeholder {
  background:
    linear-gradient(135deg, var(--sage-mist), var(--beige-warm)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=60") center/cover;
  background-blend-mode: soft-light;
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.55);
}

.map-placeholder-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

/* ----- About photo ----- */
.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% -8% -8%;
  height: 40%;
  background: linear-gradient(to top right, var(--sage-mist), transparent);
  z-index: -1;
  border-radius: var(--radius);
}

/* ----- Newsletter ----- */
.newsletter-form .form-control {
  border-radius: var(--radius-pill);
  padding-left: 1.35rem;
}

.newsletter-form .btn {
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ----- Footer ----- */
.site-footer {
  background: linear-gradient(160deg, #3f5a4c 0%, #2f4a3e 42%, #24382f 100%);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-tagline {
  color: #c5d4cb;
}

.site-footer .brand-mark {
  background: linear-gradient(145deg, #b8956c 0%, #5f7a6a 100%);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.925rem;
}

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

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

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

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 1040;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--sage-dark);
  color: #fff;
}

/* ----- Split layouts ----- */
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ----- Pricing-style cards (no prices) ----- */
.offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-card.is-featured {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: rgba(255, 255, 255, 0.88);
  border-color: transparent;
}

.offer-card.is-featured h3,
.offer-card.is-featured .offer-label {
  color: #fff;
}

.offer-card.is-featured .offer-list li {
  color: rgba(255, 255, 255, 0.8);
}

.offer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.65rem;
}

.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.offer-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.offer-card.is-featured > p {
  color: rgba(255, 255, 255, 0.75);
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}

.offer-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.offer-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--sage);
}

.offer-card.is-featured .offer-list li::before {
  color: var(--gold-light);
}

/* ----- Contact info cards ----- */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
}

.contact-info-item h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ----- Pagination ----- */
.pagination-brand .page-link {
  border: 1px solid var(--border);
  color: var(--navy);
  border-radius: var(--radius-sm) !important;
  margin: 0 0.2rem;
  padding: 0.55rem 0.9rem;
}

.pagination-brand .page-item.active .page-link {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.pagination-brand .page-link:hover {
  background: var(--sage-mist);
  border-color: var(--sage-light);
}

/* ----- Animations ----- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .eyebrow,
.hero-content .hero-title,
.hero-content .hero-lead,
.hero-content .hero-actions,
.hero-content .breadcrumb-nav {
  animation: fadeUp 0.8s ease both;
}

.hero-content .eyebrow { animation-delay: 0.05s; }
.hero-content .breadcrumb-nav { animation-delay: 0.05s; }
.hero-content .hero-title { animation-delay: 0.15s; }
.hero-content .hero-lead { animation-delay: 0.28s; }
.hero-content .hero-actions { animation-delay: 0.4s; }

/* Soft float for decorative elements */
@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-soft {
  animation: softFloat 5s ease-in-out infinite;
}

/* ----- Utilities ----- */
.rounded-brand { border-radius: var(--radius) !important; }
.shadow-brand { box-shadow: var(--shadow-md) !important; }
.min-vh-75 { min-height: 75vh; }

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.list-check li::before {
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--sage);
}

.badge-soft {
  display: inline-block;
  background: var(--sage-mist);
  color: var(--sage-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* ----- Responsive ----- */
@media (max-width: 1399.98px) {
  .nav-link-custom {
    font-size: 0.75rem;
    padding: 0.35rem 0.4rem !important;
  }

  .btn-nav-cta {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.72rem !important;
  }

  .brand-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 1199.98px) {
  .nav-link-custom {
    font-size: 0.72rem;
    padding: 0.3rem 0.35rem !important;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-h: 4.25rem;
  }

  .page-hero--home {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(250, 248, 245, 0.94) 0%, rgba(250, 248, 245, 0.82) 55%, rgba(250, 248, 245, 0.7) 100%);
  }

  .carousel-control-prev { left: 0; }
  .carousel-control-next { right: 0; }
}

@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .newsletter-form .btn {
    width: 100%;
    margin-top: 0.75rem;
  }

  .brand-tagline {
    display: none;
  }
}

/* =========================================================
   Capacity Approach page
   ========================================================= */
.page-hero--capacity {
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige-warm) 42%, var(--sage-mist) 100%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.page-hero--capacity .hero-content {
  max-width: none;
}

.page-hero--capacity .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.01em;
}

.hero-lead--strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.illust-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.illust-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.section-compare {
  background: linear-gradient(165deg, #eef4f0 0%, #f3ebe1 48%, #e8dfd2 100%);
}

.section-compare .compare-card {
  background: rgba(250, 248, 245, 0.96);
  border-color: rgba(95, 122, 106, 0.18);
}

.compare-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.35rem;
}

.compare-heading .icon-circle {
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.compare-heading .compare-label {
  margin-bottom: 0;
  line-height: 1.35;
}

.compare-card--featured,
.section-compare .compare-card--featured {
  background: linear-gradient(165deg, #ffffff 0%, #eef4f0 55%, #e4efe8 100%);
  border: 1px solid rgba(95, 122, 106, 0.28);
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.compare-card--featured .compare-heading .icon-circle,
.section-compare .compare-card--featured .compare-heading .icon-circle {
  background: var(--sage-mist);
  color: var(--sage-dark);
}

.compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.compare-card--featured .compare-label,
.section-compare .compare-card--featured .compare-label {
  color: var(--sage-dark);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0 0.7rem 0.35rem;
  margin-left: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.45;
}

.compare-list li:last-child {
  border-bottom: 0;
}

.compare-list li::before {
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: static;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.12em;
  border-radius: 0;
  background: none;
  font-size: 1rem;
  line-height: 1.1rem;
  color: var(--gold);
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compare-card--featured .compare-list li,
.section-compare .compare-card--featured .compare-list li {
  border-bottom-color: rgba(95, 122, 106, 0.15);
  color: var(--text);
}

.compare-card--featured .compare-list li::before,
.section-compare .compare-card--featured .compare-list li::before {
  content: "\F26A";
  background: none;
  color: var(--sage-dark);
}

.compare-vs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  flex-shrink: 0;
}

.compare-row .col-lg-auto {
  min-height: 3.25rem;
}

@media (max-width: 991.98px) {
  .compare-row .col-lg-auto {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.compare-closing {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.compare-highlight {
  background: linear-gradient(145deg, #fff8ef 0%, #f3ebe1 48%, #e8f0eb 100%);
  border: 1px solid rgba(184, 149, 108, 0.35);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.compare-highlight p {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--navy);
  line-height: 1.45;
}

.compare-highlight p:last-child {
  margin-bottom: 0;
  line-height: 1.45;
}

.compare-highlight-emphasis {
  font-family: var(--font-display) !important;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  font-weight: 700 !important;
  color: var(--sage-dark) !important;
  background: none;
  display: block;
  padding: 0;
  border-radius: 0;
}

.compare-quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--navy);
  line-height: 1.5;
}

.compare-quote-icon {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--gold);
}

.compare-quote p {
  margin-bottom: 0.65rem;
}

.compare-quote p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

.capacity-journey {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  counter-reset: none;
}

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: auto;
  padding: 1.5rem 1rem 1.35rem;
  background: #fff;
  border: 1px solid rgba(95, 122, 106, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 149, 108, 0.4);
}

.capacity-journey li:not(:last-child)::after {
  content: "\F138";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: -0.95rem;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.85;
  z-index: 2;
  line-height: 1;
}

.capacity-journey li:nth-child(4)::after,
.capacity-journey li:nth-child(8)::after {
  display: none;
}

.journey-step-num {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.journey-step-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, var(--sage-mist), #dfeae3);
  color: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(95, 122, 106, 0.08);
}

.journey-step:nth-child(even) .journey-step-icon {
  background: linear-gradient(145deg, #f3ebe1, #e8dfd2);
  color: #8a6b4a;
  box-shadow: 0 0 0 4px rgba(184, 149, 108, 0.12);
}

.journey-step:last-child {
  background: linear-gradient(165deg, #ffffff 0%, #eef4f0 100%);
  border-color: rgba(95, 122, 106, 0.28);
}

.journey-step:last-child .journey-step-icon {
  background: linear-gradient(145deg, var(--navy), var(--sage-dark));
  color: #fff;
  box-shadow: 0 0 0 4px rgba(26, 43, 60, 0.1);
}

.journey-dot {
  display: none;
}

.journey-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}

.section-journey {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(184, 149, 108, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 0% 100%, rgba(143, 168, 154, 0.18), transparent 50%),
    linear-gradient(180deg, #f7f3ed 0%, #eef4f0 100%);
}

@media (max-width: 991.98px) {
  .capacity-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capacity-journey li:nth-child(4)::after {
    display: block;
  }

  .capacity-journey li:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .capacity-journey {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .capacity-journey li:not(:last-child)::after {
    content: "\F128";
    top: auto;
    right: auto;
    left: 50%;
    bottom: -0.85rem;
    transform: translateX(-50%);
    display: block;
  }

  .journey-step {
    flex-direction: row;
    text-align: left;
    gap: 0.9rem;
    padding: 1.1rem 1.15rem;
  }

  .journey-step-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .journey-step-num {
    position: static;
    order: -1;
    min-width: 1.5rem;
  }
}

.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.story-card-illust img {
  width: 100%;
  display: block;
}

.story-card-body {
  padding: 1.75rem;
}

.story-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.story-card-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.story-quote {
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.45;
  border-left: 0;
}

.change-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.15rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.change-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.change-tile .icon-circle {
  margin: 0 auto 1rem;
}

.change-tile h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.apps-closing {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  color: var(--navy);
  font-family: var(--font-display);
}

/* One Philosophy — circular wheel */
.section-apps {
  background: #ffffff;
  border-top: 1px solid rgba(95, 122, 106, 0.1);
  border-bottom: 1px solid rgba(95, 122, 106, 0.1);
}

.apps-wheel {
  position: relative;
  width: min(100%, 42rem);
  aspect-ratio: 1;
  margin: 1.25rem auto 0;
}

.apps-wheel-ring {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1.5px dashed rgba(95, 122, 106, 0.28);
  pointer-events: none;
}

.apps-wheel-ring--inner {
  inset: 32%;
  border-style: solid;
  border-color: rgba(184, 149, 108, 0.28);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65) 0%, rgba(238, 244, 240, 0.35) 100%);
}

.apps-wheel-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: linear-gradient(150deg, #2f4a3e 0%, #1a2b3c 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.7),
    0 0 0 10px rgba(184, 149, 108, 0.35),
    var(--shadow-lg);
  z-index: 3;
  padding: 1.1rem;
}

.apps-wheel-center-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(184, 149, 108, 0.25);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.apps-wheel-center-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.2;
}

.apps-wheel-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  z-index: 4;
  transition: transform 0.3s ease, color 0.3s ease;
}

.apps-wheel-node {
  width: 4.35rem;
  height: 4.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #fff;
  border: 2px solid rgba(95, 122, 106, 0.18);
  box-shadow: var(--shadow-md);
  color: var(--sage-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.apps-wheel-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 8.25rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(15, 28, 40, 0.06);
}

.apps-wheel-item:hover,
.apps-wheel-item:focus-visible {
  color: var(--sage-dark);
}

.apps-wheel-item:hover .apps-wheel-node,
.apps-wheel-item:focus-visible .apps-wheel-node {
  transform: scale(1.08);
  border-color: var(--gold);
  background: var(--sage-mist);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

/* 5 nodes evenly around the circle (starting at top) */
.apps-wheel-item--1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-14.75rem) rotate(0deg); }
.apps-wheel-item--2 { transform: translate(-50%, -50%) rotate(72deg) translateY(-14.75rem) rotate(-72deg); }
.apps-wheel-item--3 { transform: translate(-50%, -50%) rotate(144deg) translateY(-14.75rem) rotate(-144deg); }
.apps-wheel-item--4 { transform: translate(-50%, -50%) rotate(216deg) translateY(-14.75rem) rotate(-216deg); }
.apps-wheel-item--5 { transform: translate(-50%, -50%) rotate(288deg) translateY(-14.75rem) rotate(-288deg); }

.apps-wheel-item--1:hover { transform: translate(-50%, -50%) rotate(0deg) translateY(-15rem) rotate(0deg); }
.apps-wheel-item--2:hover { transform: translate(-50%, -50%) rotate(72deg) translateY(-15rem) rotate(-72deg); }
.apps-wheel-item--3:hover { transform: translate(-50%, -50%) rotate(144deg) translateY(-15rem) rotate(-144deg); }
.apps-wheel-item--4:hover { transform: translate(-50%, -50%) rotate(216deg) translateY(-15rem) rotate(-216deg); }
.apps-wheel-item--5:hover { transform: translate(-50%, -50%) rotate(288deg) translateY(-15rem) rotate(-288deg); }

.apps-wheel-item--1 .apps-wheel-node { color: var(--sage-dark); }
.apps-wheel-item--2 .apps-wheel-node { color: #4a6d8c; }
.apps-wheel-item--3 .apps-wheel-node { color: #8a6b4a; }
.apps-wheel-item--4 .apps-wheel-node { color: var(--gold); }
.apps-wheel-item--5 .apps-wheel-node { color: var(--navy); }

@media (max-width: 767.98px) {
  .apps-wheel {
    width: 100%;
    max-width: 22rem;
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
  }

  .apps-wheel-ring,
  .apps-wheel-ring--inner {
    display: none;
  }

  .apps-wheel-center {
    position: static;
    transform: none;
    width: 100%;
    max-width: 16rem;
    height: auto;
    min-height: 7.5rem;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    flex-direction: row;
    gap: 0.75rem;
    padding: 1.15rem 1.35rem;
    text-align: left;
  }

  .apps-wheel-center-text {
    font-size: 1.1rem;
  }

  .apps-wheel-item,
  .apps-wheel-item:hover,
  .apps-wheel-item--1,
  .apps-wheel-item--2,
  .apps-wheel-item--3,
  .apps-wheel-item--4,
  .apps-wheel-item--5,
  .apps-wheel-item--1:hover,
  .apps-wheel-item--2:hover,
  .apps-wheel-item--3:hover,
  .apps-wheel-item--4:hover,
  .apps-wheel-item--5:hover {
    position: static;
    transform: none;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 0.9rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    box-shadow: var(--shadow-sm);
  }

  .apps-wheel-label {
    max-width: none;
    background: none;
    box-shadow: none;
    padding: 0;
    font-size: 0.95rem;
  }

  .apps-wheel-node {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
}

/* =========================================================
   Leadership page
   ========================================================= */
.photo-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.scan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.scan-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.scan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

.service-card--photo {
  padding-top: 0;
  overflow: hidden;
}

.service-card--photo .service-card-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card--photo .service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card--photo:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card--compact {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card--compact .service-card-body {
  padding: 1.15rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card--compact .icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.15rem;
  margin-top: -2rem;
  margin-bottom: 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.service-card--compact h3 {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  line-height: 1.3;
}

.service-card--compact p {
  font-size: 0.875rem;
  line-height: 1.55;
}

.work-together-row {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.programme-chips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.programme-chips li {
  background: var(--sage-mist);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}

.section-relational {
  background: #fff;
  color: var(--text);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.relational-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.section-relational .eyebrow {
  color: var(--sage);
}

.section-relational .section-title {
  color: var(--navy);
}

.section-relational .gold-rule {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.relational-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.relational-words {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}

.section-signature {
  background: linear-gradient(165deg, var(--sage-mist) 0%, #e4efe8 55%, #dfeae3 100%);
}

.signature-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--navy);
  line-height: 1.4;
  margin-top: 1.5rem;
}

/* =========================================================
   Speaking page
   ========================================================= */
.section-signature-talks {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 149, 108, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #eef4f0 100%);
}

.topic-theme-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.topic-theme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95, 122, 106, 0.25);
}

.topic-theme-card--featured {
  background: linear-gradient(165deg, #fff 0%, #eef4f0 100%);
  border-color: rgba(95, 122, 106, 0.22);
}

.topic-theme-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.topic-theme-head .icon-circle {
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.topic-theme-head h3 {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.3;
}

.topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.55rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.topic-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.topic-list li::before {
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.55rem;
  color: var(--sage-dark);
  font-size: 0.95rem;
}

.speaking-close {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  overflow: hidden;
  color: #fff;
}

.speaking-close-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.speaking-close-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaking-close-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 28, 40, 0.82) 0%, rgba(47, 74, 62, 0.78) 55%, rgba(26, 43, 60, 0.75) 100%);
}

.speaking-close-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.speaking-close .eyebrow {
  color: var(--gold-light);
}

.speaking-close .section-title {
  color: #fff;
}

.speaking-close-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.speaking-close-emphasis {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

/* =========================================================
   Women in Transition page
   ========================================================= */
.page-hero--wit {
  position: relative;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.page-hero--wit .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--wit .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero--wit .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(250, 248, 245, 0.94) 0%, rgba(250, 248, 245, 0.82) 42%, rgba(250, 248, 245, 0.35) 68%, rgba(232, 223, 210, 0.25) 100%);
}

.page-hero--wit .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 10vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.page-hero--wit .hero-content {
  max-width: 34rem;
}

.wit-soft-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.wit-soft-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.wit-soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.wit-soft-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.wit-soft-list--inline li {
  padding-left: 1rem;
}

.wit-questions {
  border-left: 2px solid var(--gold);
  padding-left: 1.15rem;
}

.wit-questions p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.wit-emphasis {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 1.25rem 0;
  line-height: 1.4;
}

.section-becoming {
  background: linear-gradient(165deg, #f4f7f5 0%, var(--sage-mist) 45%, #eef3f0 100%);
}

.becoming-intro {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.becoming-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 0.65rem;
}

.becoming-lead--soft {
  color: var(--text-muted);
  margin-bottom: 0;
}

.becoming-media {
  max-width: 42rem;
  max-height: 28rem;
  margin: 0 auto 2.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.35);
}

.becoming-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 28rem;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.becoming-body {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.becoming-body .wit-emphasis {
  font-size: clamp(1.35rem, 2.6vw, 1.55rem);
}

.becoming-roles {
  justify-content: center;
  margin: 1rem auto 1.25rem;
}

.becoming-body .wit-soft-list--inline li {
  text-align: left;
}

/* Recognition prompts — not navigation cards */
.section-reflection-prompts {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige-warm) 50%, #efe6da 100%);
}

.section-wit-journey {
  background: #fff;
}

.reflection-prompt-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  height: 100%;
  padding: 1.5rem 1.4rem 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(212, 196, 176, 0.45);
  border-radius: 1.5rem;
  box-shadow: none;
  cursor: default;
  user-select: text;
  transition: none;
}

.reflection-prompt-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  background: transparent;
  border: 1px solid rgba(95, 122, 106, 0.28);
  color: var(--sage-dark);
  font-size: 1.05rem;
  line-height: 1;
}

.reflection-prompt-card p {
  margin: 0;
  padding-top: 0.2rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.wit-close {
  position: relative;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0;
  overflow: hidden;
  color: #fff;
}

.wit-close-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wit-close-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wit-close-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(36, 56, 47, 0.78) 0%, rgba(26, 43, 60, 0.72) 55%, rgba(74, 99, 86, 0.7) 100%);
}

.wit-close-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0 auto;
}

.wit-close .section-title {
  color: #fff;
}

.wit-close-lead {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--gold-light);
  margin: 1rem 0 1.5rem;
}

.wit-close-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.wit-close-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
  line-height: 1.5;
}

.wit-close-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.wit-close-link:hover {
  color: var(--gold-light);
}

@media (max-width: 991.98px) {
  .page-hero--wit {
    min-height: auto;
  }

  .page-hero--wit .hero-media::after {
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.94) 0%, rgba(250, 248, 245, 0.85) 100%);
  }
}

/* =========================================================
   Introduction page (standalone one-pager)
   ========================================================= */
body.intro-page {
  background: var(--soft-white);
}

body.intro-page .site-header,
body.intro-page .site-footer,
body.intro-page .back-to-top {
  display: none !important;
}

.intro-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.intro-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.intro-hero-copy .hero-title {
  margin-bottom: 0.75rem;
}

.intro-hero-lead {
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.intro-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--navy);
  line-height: 1.4;
  margin: 0 0 1.25rem;
}

.intro-hero-profile {
  position: relative;
}

.intro-portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--beige-warm);
}

.intro-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.intro-profile-card {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.2rem 1.25rem;
  background: rgba(26, 43, 60, 0.88);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.intro-profile-name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: #fff;
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.intro-credentials {
  display: grid;
  gap: 0.55rem;
}

.intro-credentials li {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
  padding-left: 0.75rem;
  border-left: 2px solid var(--gold);
}

.intro-philosophy {
  background: var(--cream);
  border: 1px solid rgba(212, 196, 176, 0.55);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}

.intro-pillar-sub {
  font-size: 0.95rem;
  color: var(--sage-dark);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.65rem;
}

.intro-pillar--divider {
  padding-left: 0;
}

@media (min-width: 992px) {
  .intro-pillar--divider {
    padding-left: 1.5rem;
    border-left: 1px solid rgba(184, 149, 108, 0.35);
  }
}

.intro-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.15rem, 2.5vw, 1.65rem);
}

.intro-divider::before,
.intro-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

.intro-divider span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

.intro-services,
.intro-also {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 0.25rem;
}

.intro-service-item,
.intro-also-item {
  text-align: center;
  padding: 0.35rem clamp(0.55rem, 1.4vw, 1.1rem);
  position: relative;
}

.intro-service-item:not(:last-child)::after,
.intro-also-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(184, 149, 108, 0.35);
}

.intro-service-item .icon-circle,
.intro-also-item .icon-circle {
  margin: 0 auto 0.75rem;
}

.intro-service-item h3 {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: var(--navy);
  margin: 0 0 0.45rem;
  line-height: 1.3;
}

.intro-service-item p {
  font-size: clamp(0.78rem, 1.15vw, 0.88rem);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.intro-also {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.intro-also-item span {
  display: block;
  font-size: clamp(0.78rem, 1.15vw, 0.88rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
}

.intro-closing {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.intro-quote-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(145deg, #3a1524 0%, #4a1c2e 48%, #5a2438 100%);
  color: #fff;
  border: 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.intro-quote-mark {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  font-size: 1.15rem;
  border: 0;
}

.intro-quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.4;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.intro-quote-accent {
  color: var(--gold-light);
}

.intro-contact-block {
  background: var(--cream);
  border: 1px solid rgba(212, 196, 176, 0.55);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.intro-contact-block .section-title {
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.intro-contact-list {
  display: grid;
  gap: 0.85rem;
}

.intro-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.intro-contact-list i {
  color: var(--sage-dark);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.intro-contact-list a {
  color: var(--navy);
  text-decoration: none;
  word-break: break-word;
}

.intro-contact-list a:hover,
.intro-contact-list a:focus-visible {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 991.98px) {
  .intro-hero {
    grid-template-columns: 1fr;
  }

  .intro-profile-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    background: var(--navy);
  }

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

@media (max-width: 900px) {
  .intro-services,
  .intro-also {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro-service-item:not(:last-child)::after,
  .intro-also-item:not(:last-child)::after {
    content: none;
  }

  .intro-service-item:not(:nth-child(3n)):not(:last-child)::after,
  .intro-also-item:not(:nth-child(3n)):not(:last-child)::after {
    content: "";
  }

  .intro-service-item,
  .intro-also-item {
    padding: 1rem 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .intro-services,
  .intro-also {
    grid-template-columns: 1fr 1fr;
  }

  .intro-service-item:not(:nth-child(3n)):not(:last-child)::after,
  .intro-also-item:not(:nth-child(3n)):not(:last-child)::after {
    content: none;
  }

  .intro-service-item:nth-child(odd):not(:last-child)::after,
  .intro-also-item:nth-child(odd):not(:last-child)::after {
    content: "";
  }

  .intro-portrait {
    border-radius: 50%;
    max-width: 16rem;
    margin: 0 auto;
  }

  .intro-portrait img {
    aspect-ratio: 1;
  }
}

/* ——— Introduction v2-only (full-width + portrait tweaks) ——— */
body.intro-page-v2 .intro-wrap {
  max-width: none;
  width: 100%;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

body.intro-page-v2 .intro-hero-profile {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991.98px) {
  body.intro-page-v2 .intro-hero-profile {
    max-width: 22rem;
  }
}

body.intro-page-v2 .intro-profile-card {
  background: rgba(26, 43, 60, 0.72);
  backdrop-filter: blur(4px);
}

@media (max-width: 991.98px) {
  body.intro-page-v2 .intro-profile-card {
    background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 55%, var(--sage-dark) 100%);
    backdrop-filter: none;
    box-shadow: 0 8px 24px rgba(15, 28, 40, 0.2);
  }
}

/* Larger service / available icons (~18%) */
body.intro-page-v2 .intro-service-item .icon-circle,
body.intro-page-v2 .intro-also-item .icon-circle {
  width: 4.4rem;
  height: 4.4rem;
  font-size: 1.75rem;
}

body.intro-page-v2 .intro-service-item .icon-circle {
  margin-bottom: 0.95rem;
}

body.intro-page-v2 .intro-also-item .icon-circle {
  margin-bottom: 0.9rem;
}

/* Palette: navy / sage / cream; burgundy as accent only */
body.intro-page-v2 {
  --burgundy: #5a2438;
}

body.intro-page-v2 .intro-philosophy {
  background: var(--cream);
  border-color: rgba(95, 122, 106, 0.22);
}

body.intro-page-v2 .intro-also-wrap {
  background: linear-gradient(180deg, var(--sage-mist) 0%, var(--cream) 100%);
  border-color: rgba(95, 122, 106, 0.28);
}

body.intro-page-v2 .intro-contact-block {
  background: var(--cream);
  border-color: rgba(95, 122, 106, 0.22);
}

body.intro-page-v2 .gold-rule {
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-light) 100%);
}

body.intro-page-v2 .intro-credentials li {
  border-left-color: var(--sage-light);
}

body.intro-page-v2 .intro-profile-designation {
  border-bottom-color: rgba(143, 168, 154, 0.45);
}

/* Next steps — before Let's Connect */
body.intro-page-v2 .intro-next-steps {
  background: var(--cream);
  border: 1px solid rgba(95, 122, 106, 0.25);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  box-shadow: var(--shadow-sm);
}

/* The Way I Work */
body.intro-page-v2 .intro-way {
  max-width: none;
  width: 100%;
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(2.25rem, 4.5vw, 3.25rem);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.35rem, 3vw, 2rem);
  background: linear-gradient(165deg, var(--sage-mist) 0%, #dfeae4 55%, #d4e2da 100%);
  border: 1px solid rgba(95, 122, 106, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

body.intro-page-v2 .intro-way .section-title {
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  margin-bottom: 0.65rem;
}

body.intro-page-v2 .intro-way-lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--navy);
  line-height: 1.45;
  margin: 0 0 1.1rem;
}

body.intro-page-v2 .intro-way .text-muted-brand {
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

body.intro-page-v2 .intro-closing--quote-only {
  display: flex;
  justify-content: center;
  grid-template-columns: none;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

body.intro-page-v2 .intro-closing--quote-only .intro-quote-block {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}

body.intro-page-v2 .intro-next-steps .section-title {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin-bottom: 0.65rem;
}

body.intro-page-v2 .intro-next-lead {
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
}

body.intro-page-v2 .intro-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.intro-page-v2 .intro-next-card {
  background: #fff;
  border: 1px solid rgba(95, 122, 106, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.2rem;
}

body.intro-page-v2 .intro-next-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 0.65rem;
}

body.intro-page-v2 .intro-next-link,
body.intro-page-v2 .intro-next-actions a {
  color: var(--sage-dark);
  font-weight: 600;
  text-decoration: none;
}

body.intro-page-v2 .intro-next-link:hover,
body.intro-page-v2 .intro-next-link:focus-visible,
body.intro-page-v2 .intro-next-actions a:hover,
body.intro-page-v2 .intro-next-actions a:focus-visible {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

body.intro-page-v2 .intro-next-actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

body.intro-page-v2 .intro-next-sep {
  color: var(--sage-light);
}

@media (max-width: 767.98px) {
  body.intro-page-v2 .intro-next-grid {
    grid-template-columns: 1fr;
  }
}

/* ——— Introduction feedback refinements (shared) ——— */

/* 1. Name & credentials — clearer hierarchy */
body.intro-page .intro-profile-name {
  margin-bottom: 0.35rem;
}

body.intro-page .intro-profile-designation {
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 108, 0.35);
}

body.intro-page .intro-credentials {
  gap: 0.7rem;
}

body.intro-page .intro-credentials li {
  font-size: clamp(0.72rem, 1.15vw, 0.82rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* 3. Hero — more editorial spacing */
body.intro-page .intro-hero-copy .hero-title {
  margin-bottom: 1rem;
}

body.intro-page .intro-hero-copy .gold-rule {
  margin-bottom: 1.35rem;
}

body.intro-page .intro-hero-lead {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

body.intro-page .intro-pullquote {
  margin-bottom: 1.75rem;
}

body.intro-page .intro-hero-body {
  line-height: 1.75;
}

/* 2. Capacity Approach — mobile breathing room */
body.intro-page .intro-pillar-body {
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  body.intro-page .intro-philosophy {
    padding: 1.75rem 1.35rem;
  }

  body.intro-page .intro-pillar-sub {
    margin-bottom: 0.85rem;
  }

  body.intro-page .intro-pillar-body {
    line-height: 1.8;
  }

  body.intro-page .intro-pillar + .intro-pillar,
  body.intro-page .col-lg-6 + .col-lg-6 .intro-pillar {
    margin-top: 0.35rem;
  }
}

/* 4. Service cards — fully clickable + hover/tap */
body.intro-page .intro-service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  padding: 0.85rem clamp(0.55rem, 1.4vw, 1.1rem);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

body.intro-page .intro-service-link:hover,
body.intro-page .intro-service-link:focus-visible {
  background: rgba(247, 243, 237, 0.9);
  box-shadow: 0 4px 18px rgba(26, 43, 60, 0.08);
  transform: translateY(-2px);
  outline: none;
}

body.intro-page .intro-service-link:active {
  transform: translateY(0);
  background: var(--cream);
}

body.intro-page .intro-service-link h3 {
  transition: color 0.25s ease;
}

body.intro-page .intro-service-link:hover h3,
body.intro-page .intro-service-link:focus-visible h3 {
  color: var(--sage-dark);
}

body.intro-page .intro-service-link .icon-circle {
  transition: transform 0.25s ease;
}

body.intro-page .intro-service-link:hover .icon-circle,
body.intro-page .intro-service-link:focus-visible .icon-circle {
  transform: scale(1.06);
}

/* 5. Also Available As — distinct section treatment */
body.intro-page .intro-also-wrap {
  background: linear-gradient(180deg, var(--sage-mist) 0%, rgba(232, 240, 235, 0.45) 100%);
  border: 1px solid rgba(143, 168, 154, 0.35);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(0.75rem, 2vw, 1.25rem) clamp(1.35rem, 3vw, 1.85rem);
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0;
}

body.intro-page .intro-also-wrap .intro-divider {
  margin-top: 0.25rem;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

body.intro-page .intro-also-wrap .intro-also {
  margin-bottom: 0;
}

/* 6. Quote panel — stronger prominence */
body.intro-page .intro-closing {
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

body.intro-page .intro-quote-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2rem, 4vw, 2.85rem) clamp(1.65rem, 3.5vw, 2.5rem);
  gap: 1.15rem;
  box-shadow: 0 12px 36px rgba(58, 21, 36, 0.28);
}

body.intro-page .intro-quote-mark {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.85;
}

body.intro-page .intro-quote-block p {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.42;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body.intro-page .intro-quote-accent {
  color: var(--gold-light);
  font-style: italic;
}

@media (max-width: 991.98px) {
  body.intro-page .intro-closing {
    grid-template-columns: 1fr;
  }
}

/* 7. Contact — warm lead-in */
body.intro-page .intro-contact-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

@media (max-width: 900px) {
  body.intro-page .intro-service-link {
    padding: 1.1rem 0.85rem;
  }
}

/* v2 quote — navy/sage with burgundy accent */
body.intro-page.intro-page-v2 .intro-quote-block {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 48%, var(--sage-dark) 100%);
  color: #fff;
  border: 1px solid rgba(95, 122, 106, 0.35);
  box-shadow: 0 12px 32px rgba(15, 28, 40, 0.22);
}

body.intro-page.intro-page-v2 .intro-quote-mark {
  background: rgba(90, 36, 56, 0.35);
  color: #e8c4ce;
  opacity: 1;
}

body.intro-page.intro-page-v2 .intro-quote-block p {
  color: #fff;
}

body.intro-page.intro-page-v2 .intro-quote-accent {
  color: #e8c4ce;
  font-style: italic;
}

/* Print */
@media print {
  .site-header,
  .back-to-top,
  .btn-nav-cta,
  .offcanvas {
    display: none !important;
  }
}
