:root {
  --brand-blue: #2f86a6;
  --brand-blue-dark: #1f5f79;
  --brand-green: #4f9155;
  --brand-sand: #f4ecdf;
  --brand-bg: #f8f6f2;
  --white: #ffffff;
  --text: #22252a;
  --muted: #5f6670;
  --line: #dbe5ea;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", sans-serif;
  color: #1f2933;
  background: var(--brand-bg);
  padding-top: 74px;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: clip;
}

.site-main {
  display: block;
}

.footer-nap {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.footer-nap a {
  color: #2f86a6;
  font-weight: 700;
}

.location-snippet {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #d8e8ef;
  line-height: 1.55;
}

.location-snippet a {
  color: #9fd4e8;
  font-weight: 800;
  text-decoration: none;
}

.location-snippet a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-nap-extra {
  margin-top: 8px;
  font-size: 0.88rem;
}

.footer-nap-extra a {
  color: #9fd4e8;
  font-weight: 700;
  text-decoration: none;
}

.footer-nap-extra a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-inner {
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1160px, 94%);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a,
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-social .social-icon-link {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
}

.header-social .social-icon-link:hover {
  transform: scale(1.08);
  opacity: 0.88;
}

.social-icon-img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(47, 134, 166, 0.25);
}

.logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(130deg, var(--brand-blue), var(--brand-green));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #425262;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a.active,
.nav-links a:hover { color: var(--brand-blue-dark); }

.nav-cta {
  color: var(--white) !important;
  background: var(--brand-blue);
  padding: 9px 16px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--brand-blue-dark); }

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  background: linear-gradient(160deg, #eaf4f8 0%, #f4f9f2 65%, var(--brand-sand) 100%);
  padding: 72px 0 64px;
}

.top-banner {
  width: min(1180px, 96%);
  max-width: 100%;
  margin: 14px auto 10px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d8e5eb;
  box-shadow: 0 10px 24px rgba(31, 95, 121, 0.12);
}

.top-banner picture,
.top-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  max-height: min(430px, 52vw);
  object-fit: cover;
}

.profile-photo-card picture,
.profile-photo-card img,
.service-media picture,
.service-media img,
.blog-card-image,
.blog-post-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue-dark);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 14px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d9e8ef;
  border-radius: 999px;
  padding: 8px 14px;
  margin-top: 10px;
  color: var(--brand-blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
}

.btn-primary:hover { background: var(--brand-blue-dark); }

.btn-secondary {
  border-color: var(--brand-blue);
  color: var(--brand-blue-dark);
  background: transparent;
}

.btn-secondary:hover { background: #e9f3f7; }

.btn-catalog {
  background: linear-gradient(135deg, #2f86a6, #4f9155);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 134, 166, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.btn-catalog:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
}

.btn-wa:hover { background: #1ea857; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 22px rgba(36, 82, 102, 0.08);
}

.profile-photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(36, 82, 102, 0.08);
}

.profile-photo-card img {
  width: 100%;
  display: block;
  max-height: 430px;
  object-fit: cover;
}

.press-feature-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(36, 82, 102, 0.1);
  min-height: 260px;
}

.press-feature-card-inner {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(145deg, #142a38, #2f86a6 42%, #1f5f79);
  color: #fff;
}

.press-feature-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 10px;
}

.press-feature-outlet {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.press-feature-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
  opacity: 0.88;
}

.press-feature-card--karo .press-feature-card-inner {
  background: linear-gradient(145deg, #1e2d2a, #3d6b5c 45%, #2a4a42);
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  min-height: 380px;
  background: linear-gradient(160deg, #dceef5, #e8f5ef);
  box-shadow:
    0 2px 4px rgba(22, 61, 79, 0.06),
    0 20px 40px rgba(22, 61, 79, 0.12);
  border: 1px solid rgba(47, 134, 166, 0.14);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 15%;
}

.badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.badge-item {
  background: #f3f8fa;
  border: 1px solid #ddebf1;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.86rem;
  color: var(--brand-blue-dark);
  font-weight: 700;
}

.section {
  padding: 40px 0;
}

.section--compact {
  padding: 32px 0;
}

.section:last-of-type {
  padding-bottom: 44px;
}

.section-title {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section-subtitle {
  color: #455462;
  margin-bottom: 18px;
  max-width: 900px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card p {
  color: #3e4d5c;
  font-size: 0.96rem;
}

.card .academic-list {
  margin-top: 12px;
  padding-left: 1.15rem;
  color: #3e4d5c;
  font-size: 0.96rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card .academic-list li::marker {
  color: var(--brand-blue);
}

.icf-pcc-callout {
  color: var(--brand-blue-dark);
  font-weight: 800;
}

/* Home — Professional Profile / Credentials */
.credentials-profile-section {
  position: relative;
  overflow: hidden;
  padding: 56px 0 60px;
  background: #f5f9f8;
}

.credentials-profile-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.credentials-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.credentials-bg-orb--teal {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: -18%;
  left: -8%;
  background: rgba(47, 134, 166, 0.22);
}

.credentials-bg-orb--sage {
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  right: -10%;
  top: 28%;
  background: rgba(79, 145, 85, 0.18);
}

.credentials-bg-orb--sand {
  width: min(360px, 42vw);
  height: min(360px, 42vw);
  bottom: -12%;
  left: 32%;
  background: rgba(244, 236, 223, 0.55);
}

.credentials-bg-ring {
  position: absolute;
  right: 6%;
  top: 8%;
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  border-radius: 50%;
  border: 1px solid rgba(47, 134, 166, 0.12);
  box-shadow:
    0 0 0 28px rgba(47, 134, 166, 0.04),
    0 0 0 56px rgba(79, 145, 85, 0.03),
    0 0 0 84px rgba(47, 134, 166, 0.02);
  opacity: 0.85;
}

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

.credentials-profile-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.credentials-profile-head .eyebrow {
  color: #1f5f79;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(47, 134, 166, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.credentials-profile-head .section-title {
  color: #1a4d63;
  margin-top: 4px;
}

.credentials-profile-trust {
  margin: 10px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #3d6b7a;
  letter-spacing: 0.02em;
}

.credentials-profile-lede {
  margin: 10px auto 0;
  color: #5a6d7a;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
}

.credentials-profile-about-link {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.credentials-profile-about-link a {
  font-weight: 800;
  color: #1f6b87;
  text-decoration: none;
}

.credentials-profile-about-link a:hover {
  text-decoration: underline;
}

.credentials-academic-panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(31, 95, 121, 0.07);
  position: relative;
}

.credentials-academic-panel__intro {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(47, 134, 166, 0.1);
}

.credentials-panel-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2f86a6;
  margin-bottom: 8px;
}

.credentials-academic-panel__name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  color: #1a4d63;
  margin-bottom: 4px;
  font-weight: 600;
}

.credentials-academic-panel__institute {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #5f7280;
}

.credentials-credential-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.credentials-credential-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  border: 1px solid rgba(47, 134, 166, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  color: #2f4a56;
  line-height: 1.5;
}

.credentials-credential-item--featured {
  grid-column: 1 / -1;
  background: rgba(232, 246, 250, 0.75);
  border-color: rgba(47, 134, 166, 0.2);
  font-weight: 700;
}

.credentials-credential-item--wide {
  grid-column: 1 / -1;
}

.credentials-impact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.credentials-impact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 24px rgba(31, 95, 121, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.credentials-impact-card:hover {
  border-color: rgba(47, 134, 166, 0.22);
  box-shadow: 0 10px 32px rgba(31, 95, 121, 0.09);
}

.credentials-impact-card--highlight {
  grid-column: 1 / -1;
  background: rgba(240, 248, 251, 0.82);
  border-color: rgba(47, 134, 166, 0.18);
}

.credentials-impact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a4d63;
  margin: 0;
  line-height: 1.35;
  padding: 0 0 0 14px;
  border-left: 3px solid #4f9155;
}

.credentials-impact-card p {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a6d7a;
  line-height: 1.55;
  padding-left: 14px;
}
/* Legacy class hooks (about page career grid) */
.card--credentials-lead {
  width: 100%;
}

.credentials-impact .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.credentials-impact .card p {
  flex: 1;
  margin: 0;
}

.credentials-impact .card h3 {
  min-height: 2.6em;
}

.card--with-thumb {
  padding: 0;
  overflow: hidden;
}

.card--with-thumb .card-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef2;
}

.card--with-thumb .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.card--with-thumb .card-inner {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card--with-thumb .card-inner .btn {
  margin-top: 12px;
}

.media-section-actions {
  margin-bottom: 16px;
}

.journey-spotlight .profile-photo-card img {
  max-height: 520px;
  object-position: center 15%;
}

.profile-photo-card--embed {
  padding: 0;
  background: #0f1419;
  overflow: hidden;
}

.profile-photo-card--embed .gallery-embed {
  border-radius: 0;
}

.youtube-spotlight .profile-photo-card--embed .gallery-embed {
  border-radius: 16px;
}

.card-thumb--video {
  aspect-ratio: auto;
  min-height: 0;
  padding: 0;
  background: #0f1419;
}

.card--with-thumb .card-thumb--video {
  aspect-ratio: unset;
}

.price-pill {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f4f8;
  color: #1f5f79;
  font-size: 0.82rem !important;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 8px 0 14px;
}

.service-points li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-cta {
  width: 100%;
}

.service-stack {
  display: grid;
  gap: 22px;
}

.service-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.service-row.reverse {
  grid-template-columns: 1fr 320px;
}

.service-row.reverse .service-media {
  order: 2;
}

.service-row.reverse .service-content {
  order: 1;
}

.service-media {
  background: linear-gradient(135deg, #e8f3f8, #f2f8ec);
  border: 1px solid #d9e8ef;
  border-radius: 14px;
  min-height: 240px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.service-media img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.service-media span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
}

.service-content .btn {
  margin-top: 8px;
}

.light {
  background: var(--brand-sand);
  border-top: 1px solid #e9dcc5;
  border-bottom: 1px solid #e9dcc5;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--brand-blue-dark);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.contact-box p { color: var(--muted); }

.section--contact {
  position: relative;
}

.two-col--contact {
  align-items: start;
}

.contact-shell {
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f5fbfd 55%, #eef8f4 100%);
  border: 1px solid rgba(47, 134, 166, 0.22);
  box-shadow:
    0 4px 0 rgba(255, 255, 255, 0.75) inset,
    0 18px 40px rgba(31, 95, 121, 0.1);
  overflow: hidden;
}

.contact-shell__aurora {
  position: absolute;
  inset: -40% -30%;
  background: conic-gradient(from 200deg at 50% 50%, rgba(47, 134, 166, 0.09), rgba(79, 145, 85, 0.12), rgba(47, 134, 166, 0.08), rgba(37, 211, 102, 0.06), rgba(47, 134, 166, 0.09));
  animation: contactAuroraSpin 22s linear infinite;
  pointer-events: none;
  opacity: 0.85;
}

.contact-shell__head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.contact-shell__head .eyebrow {
  color: var(--brand-blue);
}

.contact-shell__head h3 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin: 4px 0 8px;
  color: var(--brand-blue-dark);
}

.contact-shell__lede {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}

.contact-qr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-channel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px 12px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(31, 95, 121, 0.1);
}

.contact-channel--wa {
  border-top: 3px solid #25d366;
}

.contact-channel--call {
  border-top: 3px solid var(--brand-blue);
}

.contact-channel__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-channel__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-channel--wa .contact-channel__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128c3a;
}

.contact-channel--call .contact-channel__icon {
  background: rgba(47, 134, 166, 0.12);
  color: var(--brand-blue-dark);
}

.contact-channel__meta h4 {
  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 2px;
}

.contact-channel__meta a {
  font-weight: 800;
  color: var(--brand-blue-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-channel__meta a:hover {
  text-decoration: underline;
}

.contact-qr-frame {
  display: block;
  margin: 0 auto;
  width: fit-content;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f0f7fa);
  border: 1px solid #d0e6ee;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-qr-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(31, 95, 121, 0.12);
}

.contact-qr-frame:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.contact-qr-img {
  display: block;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-qr-caption {
  font-size: 0.8rem;
  margin: 8px 0 0 !important;
  text-align: center;
  color: var(--muted);
}

.contact-tile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-tile:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(31, 95, 121, 0.08);
  border-color: #c5dce8;
}

.contact-tile:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.contact-tile__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-dark);
}

.contact-tile--mail .contact-tile__icon {
  background: linear-gradient(135deg, #e8f4fb, #eef6ff);
}

.contact-tile--map .contact-tile__icon {
  background: linear-gradient(135deg, #e8f6ee, #eefaf0);
  color: #2d6b3a;
}

.contact-tile__body {
  flex: 1;
  min-width: 0;
}

.contact-tile__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-tile__value {
  display: block;
  font-weight: 800;
  color: var(--brand-blue-dark);
  word-break: break-word;
}

.contact-tile__sub {
  display: block;
  font-size: 0.82rem;
  color: var(--brand-green);
  font-weight: 800;
  margin-top: 4px;
}

.contact-tile__chev {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--brand-blue);
  opacity: 0.65;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-tile:hover .contact-tile__chev {
  transform: translateX(3px);
  opacity: 1;
}

.contact-shell__actions {
  position: relative;
  z-index: 1;
  margin-top: 16px;
}

.contact-shell__actions .btn-wa {
  width: 100%;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-shell__actions .btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
}

form.contact-form {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafdfe 100%);
  border-color: #cfe7ef;
  box-shadow: 0 14px 36px rgba(31, 95, 121, 0.09);
}

.contact-form__title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--brand-blue-dark);
}

.contact-form__submit {
  width: 100%;
}

@keyframes contactAuroraSpin {
  to { transform: rotate(360deg); }
}

@keyframes contactStagger {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section--contact .contact-shell__head,
.section--contact .contact-channel,
.section--contact .contact-tile,
.section--contact .contact-shell__actions {
  opacity: 0;
}

.section--contact.reveal.visible .contact-shell__head {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section--contact.reveal.visible .contact-channel:nth-child(1) {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.section--contact.reveal.visible .contact-channel:nth-child(2) {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.section--contact.reveal.visible .contact-tile--mail {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.section--contact.reveal.visible .contact-tile--map {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
}

.section--contact.reveal.visible .contact-shell__actions {
  animation: contactStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero--contact::before,
  .contact-shell__aurora {
    animation: none;
  }

  .section--contact .contact-shell__head,
  .section--contact .contact-channel,
  .section--contact .contact-tile,
  .section--contact .contact-shell__actions {
    opacity: 1;
    animation: none !important;
  }

  .contact-channel:hover,
  .contact-tile:hover,
  .contact-shell__actions .btn-wa:hover {
    transform: none;
  }
}

@media (max-width: 520px) {
  .contact-qr-grid {
    grid-template-columns: 1fr;
  }
}

form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.appointment-box {
  background: linear-gradient(145deg, #ffffff, #f4fbff);
  border: 1px solid #cfe1ea;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(31, 95, 121, 0.08);
}

.appointment-box h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.appointment-box p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #ccdce3;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font: inherit;
}

textarea { min-height: 100px; resize: vertical; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.gallery-thumb {
  background: linear-gradient(120deg, #e7f2f7, #edf6ea);
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.gallery-thumb--video {
  min-height: 0;
  padding: 0;
  display: block;
  background: #0f1419;
}

.gallery-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.gallery-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-meta {
  padding: 12px;
}

.gallery-meta p {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-meta .btn {
  margin-top: 10px;
}

footer {
  background: #1f2830;
  color: #d2d8dd;
  padding: 42px 0 20px;
  margin-top: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-icons .social-icon-link {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
}

.footer-social-icons .social-icon-link:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.footer-social-icons .social-icon-img {
  width: 30px;
  height: 30px;
}

footer a { color: #cfe8f2; text-decoration: none; }
footer a:hover { text-decoration: underline; }

.copy {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  font-size: 0.85rem;
  color: #afbac4;
}

.page-hero {
  background: linear-gradient(140deg, var(--brand-blue-dark), var(--brand-blue), var(--brand-green));
  color: var(--white);
  padding: 56px 0 48px;
}

.page-hero p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--contact {
  position: relative;
  overflow: hidden;
}

.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: -35% -20%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(255, 255, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 30%, rgba(37, 211, 102, 0.2), transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(47, 134, 166, 0.35), transparent 55%);
  animation: contactHeroDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero--contact-inner {
  position: relative;
  z-index: 1;
}

.contact-hero-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
}

@keyframes contactHeroDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1.5%) scale(1.03); }
}

/* About page */
.about-page {
  position: relative;
  overflow-x: clip;
  background: #f5f9f8;
}

.about-page-bg {
  position: absolute;
  inset: 0;
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.about-bg-orb--teal {
  width: min(520px, 60vw);
  height: min(520px, 60vw);
  top: 8%;
  left: -12%;
  background: rgba(47, 134, 166, 0.2);
}

.about-bg-orb--sage {
  width: min(460px, 52vw);
  height: min(460px, 52vw);
  right: -14%;
  top: 32%;
  background: rgba(79, 145, 85, 0.16);
}

.about-bg-orb--sand {
  width: min(400px, 46vw);
  height: min(400px, 46vw);
  bottom: 18%;
  left: 20%;
  background: rgba(244, 236, 223, 0.5);
}

.about-bg-orb--calm {
  width: min(340px, 40vw);
  height: min(340px, 40vw);
  top: 55%;
  right: 18%;
  background: rgba(47, 134, 166, 0.12);
}

.about-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 134, 166, 0.1);
  opacity: 0.75;
}

.about-bg-ring--balance {
  left: 4%;
  top: 22%;
  width: clamp(140px, 18vw, 220px);
  height: clamp(140px, 18vw, 220px);
  box-shadow:
    0 0 0 24px rgba(47, 134, 166, 0.035),
    0 0 0 48px rgba(79, 145, 85, 0.025);
}

.about-bg-ring--growth {
  right: 5%;
  bottom: 28%;
  width: clamp(120px, 16vw, 200px);
  height: clamp(120px, 16vw, 200px);
  box-shadow:
    0 0 0 20px rgba(79, 145, 85, 0.03),
    0 0 0 40px rgba(47, 134, 166, 0.02);
}

.about-bg-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(47, 134, 166, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(79, 145, 85, 0.06), transparent 65%);
  opacity: 0.9;
}

.about-page .page-hero--about,
.about-page .section {
  position: relative;
  z-index: 1;
}

.about-page .section {
  padding: 52px 0;
}

.about-page .container {
  position: relative;
  z-index: 1;
}

.about-surface {
  background: linear-gradient(180deg, rgba(246, 250, 252, 0.88) 0%, rgba(251, 252, 253, 0.72) 100%);
  border: none;
}

.about-page #intro {
  background: transparent;
}

.about-intro__content {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: 0 10px 36px rgba(31, 95, 121, 0.06);
}

.about-page .about-pull-quote {
  background: rgba(240, 248, 251, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(47, 134, 166, 0.2);
}

.about-page .about-credential {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(47, 134, 166, 0.12);
}

.about-page .about-credential--featured {
  background: rgba(232, 246, 250, 0.78);
}

.about-page .about-career-grid .card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(31, 95, 121, 0.06);
}

.about-page .about-timeline-item {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(47, 134, 166, 0.12);
}

.about-page .about-book-card {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(47, 134, 166, 0.1);
}

.about-page .about-photo-frame {
  box-shadow:
    0 4px 6px rgba(22, 61, 79, 0.06),
    0 20px 40px rgba(22, 61, 79, 0.1);
}

.about-page .eyebrow {
  color: #1a7a94;
  background: rgba(47, 134, 166, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

.page-hero--about {
  position: relative;
  overflow: hidden;
  padding: 36px 0 30px;
  background: linear-gradient(128deg, #123948 0%, #1d6d88 42%, #2d9d78 100%);
}

.page-hero--about::before {
  content: "";
  position: absolute;
  inset: -45% -30%;
  background:
    radial-gradient(ellipse 55% 48% at 8% 15%, rgba(255, 255, 255, 0.22), transparent 58%),
    radial-gradient(ellipse 50% 42% at 92% 28%, rgba(120, 220, 180, 0.25), transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 105%, rgba(80, 180, 220, 0.2), transparent 60%);
  animation: contactHeroDrift 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero--about-inner {
  position: relative;
  z-index: 1;
}

.page-hero--about h1 {
  color: #fff;
  max-width: 18ch;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 6px;
}

.page-hero--about > .container > p,
.page-hero--about-inner > p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48ch;
  margin-top: 0;
}

.about-hero-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.about-hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-hero-stats li {
  flex: 1 1 120px;
  max-width: 160px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 8px 12px;
}

.about-hero-stats strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

.about-hero-stats span {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.3;
}

.about-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.about-jump-nav a {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-jump-nav a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.about-intro {
  grid-template-columns: minmax(260px, 0.92fr) 1.08fr;
  align-items: stretch;
  gap: 40px;
}

.about-page .about-photo-frame {
  height: 100%;
  min-height: 440px;
}

.about-pull-quote {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(47, 134, 166, 0.16);
  background: linear-gradient(135deg, #f0f8fb 0%, #f4fbf7 100%);
  box-shadow: 0 8px 24px rgba(31, 95, 121, 0.06);
}

.about-pull-quote p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a4d63;
  line-height: 1.6;
  font-family: "Playfair Display", serif;
}

.about-section-lede {
  max-width: 620px;
  margin-bottom: 22px;
  color: #4a5a68;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(47, 134, 166, 0.1);
  box-shadow: 0 10px 30px rgba(22, 61, 79, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2f86a6, #4f9155);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(22, 61, 79, 0.12);
}

.about-stat-card--accent {
  background: linear-gradient(145deg, #fff 0%, #edf7fa 100%);
  border-color: rgba(47, 134, 166, 0.22);
}

.about-stat-card--accent::before {
  height: 5px;
  background: linear-gradient(90deg, #1f6b87, #3cb88a);
}

.about-stat-card h3 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7c8a;
  margin-bottom: 6px;
  font-family: "Nunito", sans-serif;
}

.about-stat-card p {
  font-size: 1rem;
  color: #1a4d63;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
}

.about-stat-card a {
  color: #2f86a6;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-stat-highlight {
  color: #1d7a9a;
  font-size: 1.12rem;
}

.about-credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-credential {
  padding: 14px 16px 14px 20px;
  background: #fff;
  border: 1px solid rgba(47, 134, 166, 0.12);
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #2a4a58;
  line-height: 1.5;
  box-shadow: 0 4px 14px rgba(22, 61, 79, 0.04);
  border-left: 4px solid #4f9155;
}

.about-credential--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #e8f6fa 0%, #f0faf5 100%);
  border-left-color: #2f86a6;
  font-size: 1rem;
  padding: 18px 20px;
}

.about-page .about-career-grid .card {
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 20px;
}

.about-page .about-career-grid .card h3 {
  font-size: 1.05rem;
  color: #1a4d63;
  margin-bottom: 10px;
}

.about-page .about-career-grid .card p {
  color: #4a5a68;
  font-weight: 600;
  line-height: 1.55;
}

.about-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(47, 134, 166, 0.1);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(22, 61, 79, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-timeline-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 61, 79, 0.1);
}

.about-timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2f86a6, #3cb88a);
  flex-shrink: 0;
}

.about-timeline-item p {
  margin: 0;
  color: #3d4f5c;
  font-size: 0.97rem;
  line-height: 1.55;
  font-weight: 600;
}

.about-timeline-item strong {
  color: #1a4d63;
  font-weight: 800;
}

.about-book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-book-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(47, 134, 166, 0.1);
  border-radius: 18px;
  padding: 20px;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(22, 61, 79, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-book-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(22, 61, 79, 0.11);
}

.about-book-card__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d7a9a;
  background: rgba(47, 134, 166, 0.12);
  border-radius: 999px;
  padding: 5px 11px;
}

.about-book-card h3 {
  font-size: 1.1rem;
  color: #1a4d63;
  margin: 0;
  line-height: 1.35;
}

.about-book-card p {
  margin: 0;
  flex: 1;
  font-size: 0.93rem;
  color: #4a5a68;
  line-height: 1.5;
  font-weight: 600;
}

.about-book-card--upcoming {
  border: 2px dashed rgba(47, 134, 166, 0.35);
  background: linear-gradient(160deg, #fafdfe, #fff);
}

.about-book-card__link {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: #2f86a6;
  text-decoration: none;
}

.about-book-card__link:hover {
  color: #1d6d88;
}

.about-philosophy-wrap {
  padding-top: 24px;
  padding-bottom: 56px;
  background: #fff;
}

.about-philosophy {
  text-align: center;
  padding: 48px 32px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(125deg, #123948 0%, #1d6d88 50%, #2d9d78 100%);
  box-shadow: 0 24px 48px rgba(18, 57, 72, 0.25);
  position: relative;
  overflow: hidden;
}

.about-philosophy::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(ellipse 50% 40% at 20% 20%, rgba(255, 255, 255, 0.15), transparent 55%);
  pointer-events: none;
}

.about-philosophy > * {
  position: relative;
  z-index: 1;
}

.about-philosophy__eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.about-philosophy .section-title {
  color: #fff;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-philosophy .section-subtitle {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 12px auto 24px;
  font-weight: 600;
}

.about-philosophy__actions {
  justify-content: center;
  flex-wrap: wrap;
}

.about-philosophy__btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.about-philosophy__btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
[id="intro"],
[id="details"],
[id="education"],
[id="career"],
[id="achievements"],
[id="books"],
[id="philosophy"] {
  scroll-margin-top: 88px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}


.lead-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 34, 0.62);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.lead-popup-overlay.open { display: flex; }

.lead-popup {
  width: min(560px, 100%);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #cfe1ea;
  box-shadow: 0 18px 44px rgba(22, 63, 82, 0.24);
  padding: 18px;
}

.lead-popup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.lead-popup-head h3 {
  font-size: 1.3rem;
}

.lead-popup-close {
  border: 0;
  background: #edf5f9;
  color: #1f5f79;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
}

.lead-popup p {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: #1f5f79;
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-group-title {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1f5f79;
}

.faq-cta-box {
  margin-top: 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f4fafc 0%, #e8f4f8 100%);
  border: 1px solid #cddde6;
  border-radius: 14px;
}

.faq-cta-box h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #1f5f79;
}

.faq-cta-box p {
  margin: 0 0 14px;
  color: var(--muted);
}

.faq-cta-box .btn {
  margin-top: 4px;
}

.section-subtitle--tight {
  margin-bottom: 12px;
}

.faq-list--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.faq-topic-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #cddde6;
  background: #fff;
  color: #35586b;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-topic-chip:hover,
.faq-topic-chip:focus-visible {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.faq-topic-block {
  scroll-margin-top: 92px;
  margin-bottom: 22px;
}

.faq-topic-block:last-of-type {
  margin-bottom: 10px;
}

.faq-topic-heading {
  font-size: 1.12rem;
  color: #1f5f79;
  margin: 0 0 10px;
}

.faq-hub-more {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-hub-more a {
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.section-faq-hub {
  border-top: 0;
}

.section-faq-hub--tabs {
  padding-bottom: 48px;
}

.faq-hub-intro {
  max-width: 720px;
  margin-bottom: 22px;
}

.faq-hub-shell {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.faq-hub-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid #d4e3ea;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(31, 95, 121, 0.08);
  position: sticky;
  top: 88px;
}

.faq-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2edf2;
  border-radius: 12px;
  background: #f8fbfc;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-tab-btn:hover {
  border-color: #b8d4e0;
  background: #fff;
}

.faq-tab-btn.is-active {
  border-color: var(--brand-blue);
  background: linear-gradient(135deg, #eaf4f8 0%, #f4faf6 100%);
  box-shadow: 0 8px 18px rgba(47, 134, 166, 0.14);
  transform: translateX(4px);
}

.faq-tab-btn__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--brand-blue), var(--brand-green));
  opacity: 0.9;
}

.faq-tab-btn__icon--img {
  object-fit: contain;
  background: #fff;
  padding: 3px;
  border: 1px solid #ecd8de;
}

.faq-tab-btn--relationship .faq-tab-btn__icon--img {
  background: linear-gradient(145deg, #fff8fa 0%, #f4fafc 100%);
  border-color: #e8c4cf;
}

.faq-tab-btn--relationship .faq-tab-btn__icon:not(.faq-tab-btn__icon--img) {
  background: linear-gradient(145deg, #c45c7a, #2f86a6);
}

.faq-tab-btn--teen .faq-tab-btn__icon--img {
  background: linear-gradient(145deg, #fffdf5 0%, #f4faf6 100%);
  border-color: #e8dcc4;
}

.faq-tab-btn--teen .faq-tab-btn__icon:not(.faq-tab-btn__icon--img) {
  background: linear-gradient(145deg, #4f9155, #2f86a6);
}

.faq-panel-head--teen .faq-panel-head__icon {
  border-color: #e8dcc4;
  background: #fffdf8;
}

.faq-tab-btn--sleep .faq-tab-btn__icon--img {
  background: linear-gradient(145deg, #f0f6fc 0%, #eef4f8 100%);
  border-color: #c4d8ea;
}

.faq-tab-btn--sleep .faq-tab-btn__icon:not(.faq-tab-btn__icon--img) {
  background: linear-gradient(145deg, #3d5a80, #2f86a6);
}

.faq-panel-head--sleep .faq-panel-head__icon {
  border-color: #c4d8ea;
  background: #f4f9fd;
}

.faq-tab-btn--booking .faq-tab-btn__icon--img {
  background: linear-gradient(145deg, #f4fafc 0%, #eef8f4 100%);
  border-color: #cddde6;
}

.faq-tab-btn--booking .faq-tab-btn__icon:not(.faq-tab-btn__icon--img) {
  background: linear-gradient(145deg, #2f86a6, #1f5f79);
}

.faq-panel-head--booking .faq-panel-head__icon {
  border-color: #cddde6;
  background: #f8fbfd;
}

.faq-tab-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-tab-btn__text strong {
  font-size: 0.95rem;
  color: #1f5f79;
}

.faq-tab-btn__text small {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.faq-hub-main {
  min-height: 320px;
}

.faq-hub-panel {
  display: none;
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid #d4e3ea;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(31, 95, 121, 0.1);
  animation: faqPanelIn 0.35s ease;
}

.faq-hub-panel.is-active {
  display: block;
}

@keyframes faqPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-panel-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8f0f4;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-panel-head__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  border: 1px solid #ecd8de;
}

.faq-panel-head__copy {
  min-width: 0;
}

.faq-panel-head__copy h3,
.faq-panel-head__copy p {
  margin: 0;
}

.faq-panel-head__copy h3 {
  margin-bottom: 6px;
}

.faq-panel-head h3,
.faq-panel-head__copy h3 {
  font-size: 1.35rem;
  color: #1f5f79;
}

.faq-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-panel-head--relationship {
  border-bottom-color: #e8d4da;
}

.faq-panel-head--teen {
  border-bottom-color: #dceee0;
}

.faq-panel-head--sleep {
  border-bottom-color: #d4e0ee;
}

.faq-panel-head--booking {
  border-bottom-color: #cddde6;
}

.section-faq-hub--tabs .faq-item {
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.section-faq-hub--tabs .faq-item:hover {
  border-color: #b8d4e0;
}

.section-faq-hub--tabs .faq-item[open] {
  border-color: var(--brand-blue);
  box-shadow: 0 6px 16px rgba(47, 134, 166, 0.1);
}

.section-faq-hub--tabs .faq-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.section-faq-hub--tabs .faq-item summary::-webkit-details-marker {
  display: none;
}

.section-faq-hub--tabs .faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf4f8;
  color: var(--brand-blue-dark);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.section-faq-hub--tabs .faq-item[open] summary::after {
  content: "−";
  background: var(--brand-blue);
  color: #fff;
}

.faq-hub-cta {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf4f8 0%, #eef8f2 100%);
  border: 1px solid #cddde6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-hub-cta p {
  margin: 0;
  font-weight: 800;
  color: #1f5f79;
  font-size: 1.05rem;
}

.service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 4px;
}

.service-jump-nav a {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.service-jump-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.page-hero-actions {
  margin-top: 14px;
}

.service-row {
  scroll-margin-top: 88px;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 95, 121, 0.1);
  border-color: #b8d4e0;
}

.card-link__more {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.section-cta-inline {
  margin-top: 14px;
}

#navbar.scrolled {
  box-shadow: 0 8px 24px rgba(31, 95, 121, 0.1);
}

.footer-grid a {
  color: #d8e8ef;
  text-decoration: none;
  line-height: 1.9;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #cddde6;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.84rem;
  font-weight: 800;
  color: #35586b;
  background: #fff;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.pagination {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #cddde6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #35586b;
  background: #fff;
}

.page-link.active,
.page-link:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.blog-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.blog-post-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}

.status-msg {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  font-weight: 700;
}

.status-msg.ok {
  background: #eaf8ef;
  border: 1px solid #b9e7c6;
  color: #1f7a3d;
}

.status-msg.err {
  background: #fff0f0;
  border: 1px solid #f1bcbc;
  color: #9a2e2e;
}

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

.faq-item.reveal,
.faq-list.reveal {
  opacity: 1;
  transform: none;
}

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

.card,
.service-row,
.gallery-item,
.faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.service-row:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 95, 121, 0.1);
}

@media (max-width: 900px) {
  .credentials-impact {
    grid-template-columns: 1fr;
  }

  .credentials-impact-card--highlight {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .cards,
  .about-stat-grid,
  .about-book-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card .academic-list.academic-list--cols {
    grid-template-columns: 1fr;
  }

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

  .credentials-profile-section {
    padding: 40px 0 48px;
  }

  .credentials-bg-ring {
    display: none;
  }

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

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

  .about-page .about-photo-frame {
    min-height: 360px;
    max-height: 520px;
  }

  .about-bg-ring {
    display: none;
  }

  .about-bg-orb {
    filter: blur(56px);
    opacity: 0.8;
  }
}

@media (max-width: 760px) {
  body { padding-top: 74px; }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  .hero .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--brand-bg);
    border-bottom: 1px solid var(--line);
    padding: 14px 5%;
  }
  .header-social { display: flex; }
  .nav-links.open { display: flex; }
  .hero-grid,
  .two-col,
  .cards,
  .about-stat-grid,
  .about-book-grid,
  .gallery-grid,
  .footer-grid,
  .badge-grid {
    grid-template-columns: 1fr;
  }

  .credentials-profile-section {
    padding: 36px 0 40px;
  }

  .credentials-profile-head {
    margin-bottom: 24px;
  }

  .credentials-profile-head .section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .credentials-profile-trust {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .credentials-bg-orb {
    filter: blur(56px);
    opacity: 0.85;
  }

  .credentials-impact-card {
    padding: 16px 18px;
  }

  .credentials-impact-card h3 {
    font-size: 1rem;
    padding-left: 12px;
  }

  .credentials-impact-card p {
    font-size: 0.88rem;
    padding-left: 12px;
  }

  .top-banner {
    width: 94%;
    margin-top: 10px;
    border-radius: 12px;
  }

  .top-banner img {
    max-height: 220px;
  }

  .about-hero-stats li {
    max-width: none;
    flex: 1 1 calc(50% - 4px);
  }

  .about-page .about-photo-frame {
    min-height: 300px;
    aspect-ratio: 4 / 5;
  }

  .about-intro__content {
    padding: 20px 18px;
  }

  .about-bg-orb--calm {
    display: none;
  }

  .about-philosophy {
    padding: 32px 20px;
  }

  .page-hero--about {
    padding: 28px 0 24px;
  }

  .page-hero--about h1 {
    font-size: 1.55rem;
  }

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

  .form-grid-2 { grid-template-columns: 1fr; }
  .faq-list--grid { grid-template-columns: 1fr; }
  .faq-hub-shell { grid-template-columns: 1fr; }
  .faq-hub-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .faq-tab-btn {
    flex: 1 1 calc(50% - 8px);
    min-width: 140px;
  }
  .faq-tab-btn.is-active { transform: none; }
  .faq-hub-cta { flex-direction: column; align-items: flex-start; }
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }
  .service-row.reverse .service-media,
  .service-row.reverse .service-content {
    order: initial;
  }
}
