/* EXTENSION: Replace color values with Diva brand tokens */

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

html {
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  /* `clip` instead of `hidden`: hidden would make body a second scroll
     container on top of the viewport's, showing a duplicate scrollbar. */
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
p, a, button, .btn,
.nav-link, .navbar-brand, .navbar-nav {
  font-family: Arial, Helvetica, sans-serif;
}

section {
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
}

/* Responsive visibility helpers */
.show-desktop {
  display: block;
}

.show-mobile {
  display: none;
}

@media (max-width: 767px) {
  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}

.bg-dark {
  background-color: #1e2124;
}

.bg-pink {
  background-color: #e5e1e7;
}

/* ── Home section layout ── */

.home-section {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: visible;
}

.home-stage {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem 1rem;
}

.hero-logo {
  width: min(420px, 78vw);
  height: auto;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* ── Header: docked at bottom of home ── */

.header-slot {
  flex-shrink: 0;
  width: 100%;
}

.site-header {
  width: 100%;
  padding: 0.75rem 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header .navbar {
  align-items: center;
}

.site-header .nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  padding: 0.5rem 0.7rem;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  opacity: 0.75;
}

.site-header .dropdown-menu {
  --bs-dropdown-bg: rgba(30, 33, 36, 0.98);
  --bs-dropdown-link-color: #f8fafc;
  --bs-dropdown-link-hover-bg: rgba(248, 250, 252, 0.1);
  --bs-dropdown-link-hover-color: #f8fafc;
  --bs-dropdown-link-active-bg: rgba(248, 250, 252, 0.16);
  --bs-dropdown-link-active-color: #f8fafc;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 0.5rem;
  padding: 0.35rem 0;
  margin-top: 0.35rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.site-header .dropdown-item {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 0.55rem 1.15rem;
}

.site-header .dropdown-toggle::after {
  margin-left: 0.4em;
  vertical-align: 0.15em;
}

.header-logo-wrap {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.header-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.header-logo--brand {
  height: 56px;
}

/* Stuck state: fixed to viewport top */
.site-header.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(30, 33, 36, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.site-header.is-stuck .header-logo-wrap {
  opacity: 1;
  pointer-events: auto;
}

.site-header.is-stuck .nav-link {
  color: #f8fafc;
}

.site-header .navbar-toggler {
  border-color: rgba(248, 250, 252, 0.45);
  padding: 0.35rem 0.55rem;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 250, 252, 0.25);
}

.site-header.is-stuck .navbar-collapse {
  //background-color: rgba(30, 33, 36, 0.98);
}

@media (max-width: 991px) {
  .site-header.is-stuck .navbar-collapse {
    margin-top: 0.75rem;
  }

  .site-header .navbar-collapse {
    background-color: rgba(30, 33, 36, 0.95);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
  }

  .site-header .navbar-nav {
    padding: 0.25rem 0;
  }

  .site-header .nav-link {
    padding: 0.65rem 1rem;
    text-align: center;
  }

  .site-header .dropdown-menu {
    text-align: center;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 0.35rem;
  }

  .site-header .dropdown-item {
    padding: 0.55rem 1rem;
    opacity: 0.85;
  }
}

/* ── About section ── */

#about {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-bg {
  position: relative;
  background-color: #e5e1e7;
  overflow: hidden;
  min-height: 0;
  --parallax-offset: 0px;
}

.logo-bg::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  background: url('../images/logo-big.png') no-repeat center center;
  background-size: 55%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, var(--parallax-offset), 0);
}

.about-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
  will-change: transform;
}

.about-quote-img {
  max-width: min(520px, 90vw);
  height: auto;
}

.qoute-text {
  font-size: clamp(1.25rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #1e2124;
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  line-height: 1.5;
}

/* ── Dipika Trehan section ── */

.dipika-trehan-section {
  background-color: #333333;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0 0;
  overflow: hidden;
}

.dipika-trehan-content {
  width: 100%;
}

.dipika-trehan-row {
  min-height: 0;
  align-items: center;
}

.dipika-trehan-text {
  padding: 2rem 1.5rem 3rem 0;
}

.dipika-trehan-name {
  font-size: clamp(2.25rem, 5.2vw, 4.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ddb8ae;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.dipika-trehan-roles {
  font-size: clamp(0.9rem, 1.75vw, 1.4rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.dipika-trehan-bio {
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.dipika-trehan-bio:last-child {
  margin-bottom: 0;
}

.dipika-trehan-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  padding: 0;
}

.dipika-trehan-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 5rem);
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.the-spectrum-within-section {
  background-color: #f0e9e1;
  background-image: url('../images/rainbow-bg.jpg');
  background-repeat: no-repeat;
  background-position: left center;
  /* background-size: min(52%, 720px) 100%; */
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.the-spectrum-within-content {
  width: 100%;
}

.the-spectrum-within-row {
  align-items: center;
}

.the-spectrum-within-visual {
  min-height: 1px;
}

.the-spectrum-within-text {
  padding: 2rem 0.5rem 2rem 2rem;
}

.the-spectrum-within-name {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 400;
  color: #6b4c3b;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.spectrum-accent {
  font-size: 1.3em;
  font-weight: 700;
  color: #b5593c;
}

.the-spectrum-within-description {
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b6b55;
  margin-bottom: 2.25rem;
}

.the-spectrum-within-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.35rem;
}

.the-spectrum-within-item:last-child {
  margin-bottom: 0;
}

.the-spectrum-within-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #b5593c;
  border-radius: 50%;
}

.the-spectrum-within-item-text {
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.65;
  padding-top: 0.35rem;
}

.the-spectrum-within-item-text strong {
  color: #b5593c;
  font-weight: 700;
}

.spectrum-signature {
  font-size: 1.55em;
  font-weight: 400;
  font-style: italic;
  color: #b5593c;
  line-height: 1;
  white-space: nowrap;
}


@media (max-width: 991px) {
  .the-spectrum-within-section {
    background-image: none;
    background-color: #f0e9e1;
    padding: 5rem 0 2.5rem;
  }

  .the-spectrum-within-visual {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(220px, 52vw, 340px);
    margin-bottom: 1.25rem;
    background: url('../images/rainbow-bg.jpg') no-repeat center center;
    background-size: cover;
  }

  .the-spectrum-within-text {
    padding: 0 0.25rem 1.5rem;
    background: none;
  }

  .spectrum-signature {
    white-space: normal;
  }
}

@media (max-width: 575px) {
  /* Phones get the portrait crop of the artwork instead of the wide desktop one */
  .the-spectrum-within-visual {
    background-image: url('../images/spec-bg-mobile.jpg');
    min-height: 0;
    aspect-ratio: 413 / 745;
    max-height: 78vh;
    margin-bottom: 1rem;
  }

  .the-spectrum-within-icon {
    width: 44px;
    height: 44px;
  }

  .the-spectrum-within-item {
    gap: 0.85rem;
  }
}

@media (max-width: 991px) {
  .dipika-trehan-section {
    padding: 6rem 0 0;
  }

  .dipika-trehan-row {
    min-height: auto;
  }

  .dipika-trehan-text {
    padding: 2rem 0 1rem;
    text-align: left;
  }

  .dipika-trehan-visual {
    justify-content: center;
    align-self: center;
  }

  .dipika-trehan-img {
    max-height: 65vh;
    margin: 0 auto;
    object-position: bottom center;
  }
}

/* ── The Kintsugi Life section ── */

.the-kintsugi-life-section {
  background-color: #040404;
  background-image: url('../images/liffe.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.the-kintsugi-life-section::before {
  content: none;
}

.the-kintsugi-life-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.the-kintsugi-life-row {
  min-height: 0;
  align-items: stretch;
}

.the-kintsugi-life-text {
  padding: 2rem 2rem 2rem 0;
}

.kintsugi-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
}

.kintsugi-title {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.kintsugi-quote {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: #d4af37;
  line-height: 1.35;
  margin-bottom: 2rem;
}

.kintsugi-bio {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.kintsugi-bio em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.kintsugi-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.85rem 1.5rem 0.85rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.kintsugi-btn:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: linear-gradient(180deg, rgba(40, 40, 40, 0.95) 0%, rgba(15, 15, 15, 1) 100%);
  color: #ffffff;
}

.kintsugi-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.the-kintsugi-life-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
}

.kintsugi-book-cover {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: auto;
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.kintsugi-book-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 15rem;
  margin-top: auto;
  margin-bottom: auto;
  color: #f2efe9;
}

.kintsugi-book-logo-the {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.kintsugi-book-logo-main,
.kintsugi-book-logo-life {
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.kintsugi-book-logo-life {
  letter-spacing: 0.24em;
  margin-top: 0.2rem;
}

.kintsugi-book-divider {
  width: 8.75rem;
  height: 1px;
  margin: 0.85rem auto 0.8rem;
  background: rgba(197, 160, 89, 0.55);
  position: relative;
}

.kintsugi-book-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border: 1px solid rgba(197, 160, 89, 0.75);
  background: #070606;
}

.kintsugi-book-logo-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #c5a059;
  text-align: center;
}

.kintsugi-author {
  flex-shrink: 0;
  width: 100%;
  max-width: 15rem;
  margin: auto 0 0;
  padding-top: 3.5rem;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-align: center;
  color: #f2efe9;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .the-kintsugi-life-section {
    padding: 6rem 0 3rem;
    background-size: cover;
    background-position: center top;
  }

  .the-kintsugi-life-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 4, 0.78);
    z-index: 0;
    pointer-events: none;
  }

  .the-kintsugi-life-row {
    min-height: auto;
  }

  .the-kintsugi-life-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .the-kintsugi-life-text {
    padding: 1rem 0 2.5rem;
    max-width: none;
  }

  .the-kintsugi-life-branding {
    min-height: auto;
    padding: 1.5rem 0 2rem;
  }

  .kintsugi-book-cover {
    max-width: 12rem;
  }

  .kintsugi-book-logo {
    max-width: 13rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .kintsugi-author {
    padding-top: 1.5rem;
    max-width: 13rem;
    white-space: normal;
    letter-spacing: 0.28em;
  }
}

/* ── Speaking section ── */

.speaking-section {
  background-color: #fdf7f0;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.speaking-content {
  width: 100%;
}

.speaking-text {
  padding: 2rem 2.5rem 2rem 0;
  position: relative;
  z-index: 2;
}

.speaking-title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.08;
  margin-bottom: 2rem;
}

.speaking-body {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.speaking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.75rem 1rem 2rem;
  border: none;
  border-radius: 999px;
  background-color: #2a2a2a;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.speaking-btn:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.speaking-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ffffff;
  color: #2a2a2a;
  font-size: 1.25rem;
  line-height: 1;
}

.speaking-visual {
  padding: 0;
}

.speaking-image-wrap {
  position: relative;
  width: 100%;
  height: min(82vh, 680px);
  overflow: hidden;
}

.speaking-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  filter: grayscale(100%);
}

.ideas-worth-continuing-section {
  background-color: #f8ece8;
  background-image: url('../images/section-9-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.ideas-worth-continuing-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.ideas-worth-continuing-text {
  padding: 2rem 2rem 2rem 0;
}

.ideas-worth-continuing-title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.08;
  margin-bottom: 2rem;
}

.ideas-worth-continuing-body {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.ideas-worth-continuing-body:last-of-type {
  margin-bottom: 2.5rem;
}

.ideas-worth-continuing-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.5rem 0.85rem 1.75rem;
  border: 1px solid rgba(232, 196, 188, 0.85);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ideas-worth-continuing-btn:hover {
  border-color: rgba(232, 196, 188, 1);
  background: linear-gradient(180deg, rgba(48, 48, 48, 0.98) 0%, rgba(22, 22, 22, 1) 100%);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.ideas-worth-continuing-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0d4cc 0%, #e8b8ad 100%);
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1;
}

.ideas-worth-continuing-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2.75rem;
}

.ideas-worth-continuing-topic {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(72, 48, 36, 0.45);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 228, 210, 0.72) 0%,
    rgba(240, 196, 168, 0.58) 100%
  );
  color: #1a1a1a;
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(72, 48, 36, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.ideas-worth-continuing-topic:hover {
  border-color: rgba(72, 48, 36, 0.65);
  background: linear-gradient(
    180deg,
    rgba(255, 236, 222, 0.88) 0%,
    rgba(245, 208, 182, 0.75) 100%
  );
  color: #000000;
  box-shadow: 0 4px 16px rgba(72, 48, 36, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .ideas-worth-continuing-section {
    padding: 6rem 0 3rem;
    background-position: center top;
  }

  .ideas-worth-continuing-text {
    padding: 1.25rem 1rem 2rem;
    max-width: none;
    background: rgba(248, 236, 232, 0.88);
    border-radius: 0.25rem;
  }

  .ideas-worth-continuing-title {
    max-width: none;
  }

  .ideas-worth-continuing-body {
    max-width: none;
  }

  .ideas-worth-continuing-topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

/* ── Connect / Contact section ── */

.connect-section {
  background-color: #232123;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.connect-content {
  width: 100%;
}

.connect-text {
  padding: 2rem 2rem 2rem 0;
  max-width: 38rem;
}

.connect-title {
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 700;
  color: #f9c784;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.connect-body {
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 400;
  color: #f9c784;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.connect-body:last-of-type {
  margin-bottom: 2.25rem;
}

.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.5rem 0.85rem 1.75rem;
  border: 1px solid rgba(249, 199, 132, 0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(45, 42, 44, 0.95) 0%, rgba(28, 26, 28, 0.98) 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.connect-btn:hover {
  border-color: rgba(249, 199, 132, 0.9);
  background: linear-gradient(180deg, rgba(55, 52, 54, 0.98) 0%, rgba(35, 33, 35, 1) 100%);
  color: #ffffff;
}

.connect-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0d4cc 0%, #e8b8ad 100%);
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1;
}

.connect-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 28rem;
  padding: 2rem 0;
}

.connect-visual-img {
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 520px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.connect-brands {
  padding: 2rem 0;
}

.connect-brands-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 199, 132, 0.75);
  margin-bottom: 1.25rem;
}

.connect-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 17rem;
}

.connect-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(249, 199, 132, 0.22);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.connect-brand:hover {
  border-color: rgba(249, 199, 132, 0.6);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.connect-brand img {
  width: 100%;
  max-width: 6.5rem;
  height: auto;
  object-fit: contain;
  display: block;
}

.connect-pillars {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  width: min(100%, 14rem);
  height: min(72vh, 520px);
}

.connect-pillar {
  display: block;
  width: 1.15rem;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(
    90deg,
    #8b6914 0%,
    #d4af37 22%,
    #f5e6a8 45%,
    #c9a227 68%,
    #8b6914 100%
  );
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.15);
}

.connect-pillar--1 {
  height: 42%;
  background: linear-gradient(90deg, #6b4a2e 0%, #a67c52 50%, #6b4a2e 100%);
}

.connect-pillar--2 {
  height: 58%;
  width: 1.25rem;
  background: linear-gradient(90deg, #8b5a3c 0%, #d4a574 40%, #f0c9a0 55%, #a67c52 100%);
}

.connect-pillar--3 {
  height: 72%;
  width: 1.35rem;
}

.connect-pillar--4 {
  height: 88%;
  width: 1.5rem;
  background: linear-gradient(90deg, #7a5520 0%, #d4af37 35%, #fff3c4 50%, #c9a227 70%, #7a5520 100%);
}

.connect-pillar--5 {
  height: 72%;
  width: 1.35rem;
}

.connect-pillar--6 {
  height: 58%;
  width: 1.25rem;
  background: linear-gradient(90deg, #8b5a3c 0%, #d4a574 40%, #f0c9a0 55%, #a67c52 100%);
}

.connect-pillar--7 {
  height: 42%;
  background: linear-gradient(90deg, #6b4a2e 0%, #a67c52 50%, #6b4a2e 100%);
}

.connect-pillar-line {
  position: absolute;
  left: 50%;
  bottom: 88%;
  transform: translateX(-50%);
  width: 2px;
  height: 28%;
  background: linear-gradient(to top, #d4af37 0%, rgba(212, 175, 55, 0.35) 100%);
}

@media (max-width: 991px) {
  .connect-section {
    padding: 6rem 0 3rem;
  }

  .connect-text {
    padding: 1rem 0 2rem;
    max-width: none;
  }

  .connect-visual {
    display: none;
  }

  .connect-brands {
    padding: 0 0 1rem;
  }

  .connect-brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 575px) {
  .connect-brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 18rem;
  }
}

@media (max-width: 991px) {
  .speaking-section {
    padding: 6rem 0 3rem;
  }

  .speaking-text {
    padding: 1rem 0 1.5rem;
  }

  .speaking-visual {
    margin-top: 0.5rem;
  }

  .speaking-image-wrap {
    height: auto;
    overflow: visible;
  }

  .speaking-img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%);
  }
}

/* ── Creator / Footer banner section ── */

.creator-section {
  background-color: #d7c4b1;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  overflow: hidden;
}

.creator-logo-box {
  position: relative;
  width: min(13.5rem, 32vw);
  height: min(13.5rem, 32vw);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
}

.creator-logo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.creator-logo-img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: auto;
  object-fit: contain;
}

.creator-content {
  width: 100%;
  position: relative;
}

.creator-row {
  min-height: auto;
  align-items: center;
}

.creator-text {
  padding: 2rem 2rem 2rem 0;
  max-width: 40rem;
}

.creator-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.creator-quote {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: #000000;
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}

.creator-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  padding: 0;
}

.creator-portrait {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.creator-roles {
  font-size: clamp(0.85rem, 1.05vw, 1rem);
  font-weight: 400;
  color: #000000;
  text-align: right;
  margin: 0;
  padding: 1.25rem 0 0;
}

@media (max-width: 991px) {
  .creator-section {
    padding: 5rem 0 2.5rem;
  }

  .creator-logo-box {
    margin-bottom: 1.5rem;
  }

  .creator-text {
    padding: 1.5rem 0 1rem;
    max-width: none;
  }

  .creator-visual {
    justify-content: center;
    align-self: center;
  }

  .creator-portrait {
    max-height: 55vh;
    margin: 0 auto;
    object-position: bottom center;
  }

  .creator-roles {
    text-align: center;
    padding-top: 1.5rem;
  }
}

/* ── Global mobile responsiveness ── */

@media (max-width: 767px) {
  section:not(.home-section) {
    min-height: auto;
    padding-top: clamp(3rem, 8vw, 4.5rem);
    padding-bottom: clamp(2rem, 6vw, 3.5rem);
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-stage {
    padding: 1.5rem 1rem 0.75rem;
  }

  .hero-logo {
    width: min(320px, 72vw);
  }

  .header-logo {
    height: 32px;
  }

  .logo-bg::before {
    background-size: 90%;
  }

  .about-content {
    padding: 2.5rem 1rem;
  }

  .qoute-text br {
    display: none;
  }

  .scroll-banner {
    width: 100%;
    height: auto;
    max-height: 55vh;
    object-fit: cover;
  }

  .dipika-trehan-section {
    padding-top: 4rem;
  }

  .dipika-trehan-text {
    padding: 1.5rem 0 1rem;
  }

  .dipika-trehan-name {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .dipika-trehan-img {
    max-height: 55vh;
  }

  .the-spectrum-within-section {
    padding-top: 4rem;
  }

  .the-kintsugi-life-section {
    padding-top: 4rem;
  }

  .the-kintsugi-life-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .kintsugi-title {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .kintsugi-quote {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  }

  .speaking-section,
  .ideas-worth-continuing-section,
  .connect-section,
  .creator-section {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .speaking-title,
  .connect-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .speaking-body {
    font-size: clamp(1rem, 3.4vw, 1.2rem);
    line-height: 1.7;
  }

  .ideas-worth-continuing-title {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  .ideas-worth-continuing-body {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }

  .creator-logo-box {
    width: min(10rem, 40vw);
    height: min(10rem, 40vw);
  }

  .creator-portrait {
    max-height: 50vh;
  }

  .creator-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .creator-quote {
    font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  }

  .kintsugi-btn,
  .speaking-btn,
  .connect-btn,
  .ideas-worth-continuing-btn {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 44px;
  }
}

@media (max-width: 575px) {
  .dipika-trehan-roles {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .the-spectrum-within-name {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .kintsugi-author {
    letter-spacing: 0.18em;
    font-size: 0.58rem;
  }

  .creator-roles {
    font-size: 0.8rem;
    line-height: 1.6;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .scroll-banner {
    max-height: 50vh;
  }

  .kintsugi-btn,
  .speaking-btn,
  .connect-btn,
  .ideas-worth-continuing-btn {
    font-size: 0.88rem;
    padding: 0.75rem 1.25rem;
    gap: 0.65rem;
  }

  .ideas-worth-continuing-topics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ideas-worth-continuing-topic {
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ── Scroll reveal & parallax ── */

.parallax-section {
  --section-parallax: 0px;
}

.parallax-section .parallax-content {
  will-change: transform;
  transform: translate3d(0, calc(var(--section-parallax) * 0.18), 0);
}

.parallax-section .parallax-bg-layer {
  will-change: transform;
}

.logo-bg.parallax-section::before {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) + var(--section-parallax) * 0.45), 0);
}

.the-spectrum-within-section.parallax-section {
  background-position: left calc(50% + var(--section-parallax) * 0.1);
}

.the-spectrum-within-section.parallax-section .the-spectrum-within-content {
  transform: none;
}

.the-spectrum-within-section .the-spectrum-within-item.scroll-reveal {
  transition-duration: 0.65s;
  transition-delay: calc(var(--reveal-index, 0) * 0.12s);
}

.the-spectrum-within-section .the-spectrum-within-name.scroll-reveal,
.the-spectrum-within-section .the-spectrum-within-description.scroll-reveal {
  transition-duration: 0.7s;
}

.the-kintsugi-life-section.parallax-section {
  background-position: center calc(50% + var(--section-parallax) * 0.2);
}

.ideas-worth-continuing-section.parallax-section {
  background-position: center calc(50% + var(--section-parallax) * 0.3);
}

.scroll-banner {
  display: block;
  will-change: transform;
}

/* Split gold topic banners — side-by-side on desktop, stacked on mobile */
.home-gold-section {
  background-color: #2a2a2a;
}

.home-gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.home-gold-img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .home-gold-grid {
    grid-template-columns: 1fr;
  }

  .home-gold-section .home-gold-img.scroll-banner {
    max-height: none;
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal {
    opacity: 0;
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--reveal-index, 0) * 0.1s);
  }

  .scroll-reveal--up {
    transform: translate3d(0, 28px, 0);
  }

  .scroll-reveal--down {
    transform: translate3d(0, -30px, 0);
  }

  .scroll-reveal--left {
    transform: translate3d(-44px, 0, 0);
  }

  .scroll-reveal--right {
    transform: translate3d(44px, 0, 0);
  }

  .scroll-reveal--scale {
    transform: translate3d(0, 24px, 0) scale(0.96);
  }

  .parallax-section.is-in-view .scroll-reveal,
  .scroll-banner.is-in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .parallax-section.is-in-view .scroll-reveal.parallax-media {
    transform: translate3d(0, var(--media-parallax, 0px), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-banner {
    opacity: 1;
    transform: none;
  }

  .parallax-section .parallax-content,
  .parallax-section .parallax-media,
  .scroll-banner {
    transform: none !important;
  }

  .parallax-section .parallax-media {
    --media-parallax: 0px;
  }
}

/* ── About Us page ── */
.about-us-page {
  min-height: 100vh;
  background-color: #ebdcd5 !important;
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
}

.about-us-main {
  padding-top: 4.5rem; /* offset for the fixed/stuck header */
}

.about-us-titlebar {
  background-color: #2b2829 !important;
  color: #f2efe9 !important;
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  letter-spacing: 0.02em;
}

/* Background colors for alternating sections */
.about-us-block {
  min-height: auto !important;
  padding: 3.5rem 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.about-us-block-pink {
  background-color: #ebdcd5 !important; /* Dusty rose / blush beige */
}

.about-us-block-cream {
  background-color: #fffdfa !important; /* Off-white / warm cream */
}

.about-us-block-lavender {
  background-color: #e5dfe4 !important; /* Muted lilac / lavender grey */
}

.about-us-block .container {
  max-width: 860px;
}

.about-us-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111111;
  line-height: 1.28;
}

.about-us-paragraph {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1.35rem;
  font-weight: 400;
}

.about-us-paragraph:last-child {
  margin-bottom: 0;
}

.about-us-paragraph.italic-text {
  font-style: italic;
}

.about-us-quote {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.65;
  color: #111111;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-us-callout {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-weight: 700;
  color: #111111;
  margin: 1.5rem 0;
  line-height: 1.4;
}

.about-us-callout-italic {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-style: italic;
  font-weight: 700;
  color: #111111;
  margin: 1.5rem 0;
  line-height: 1.6;
}

.about-us-belief-item {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.about-us-beliefs-summary {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.about-us-speaker {
  min-height: 100vh !important;
  background-color: #000000 !important;
  /* Photo is zoomed and pinned right so the subject sits closer to the copy;
     the gradient only blends the seam and clears the face entirely. */
  background-image: linear-gradient(90deg, #000000 0%, #000000 46%, rgba(0, 0, 0, 0.4) 54%, rgba(0, 0, 0, 0.0) 62%), url('../images/about-fot-bg.jpg') !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: left center, right 20% !important;
  background-size: cover, auto 112% !important;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 0 !important;
}

.about-us-speaker-row {
  width: 100%;
  margin: 0;
}

.about-us-speaker-text-col {
  background: #000000;
  padding: 3.5rem 2rem 3.5rem 4.5rem;
  z-index: 2;
}

.about-us-speaker-text-inner {
  max-width: 640px;
  margin-left: auto;
}

.about-us-speaker-logo-wrap {
  margin-bottom: 1.75rem;
}

.about-us-speaker-logo-img {
  height: 128px;
  width: auto;
  object-fit: contain;
}

.about-us-speaker-paragraph {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #cfc7bd !important;
  font-size: clamp(1.1rem, 1.35vw, 1.35rem) !important;
  line-height: 1.65 !important;
  margin-bottom: 1.25rem !important;
  font-weight: 400 !important;
}

.about-us-speaker-paragraph strong {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.about-us-speaker-quote-box {
  margin-top: 1.75rem;
}

.about-us-speaker-quote {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(1.2rem, 1.55vw, 1.5rem) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.55 !important;
  margin-bottom: 0 !important;
}

.about-us-speaker-visual-col {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
}

.about-us-speaker-img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 3.5rem);
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

@media (min-width: 992px) {
  /* Widen the black panel so the copy sits nearer the portrait. */
  .about-us-speaker-text-col {
    width: 54%;
  }
}

@media (max-width: 1200px) {
  .about-us-speaker-text-col {
    padding: 3rem 1.75rem 3rem 3rem;
  }
}

@media (max-width: 991px) {
  .about-us-main {
    padding-top: 4.25rem;
  }

  .about-us-block {
    padding: 2.75rem 1.25rem;
  }

  .about-us-speaker {
    padding: 0 !important;
    min-height: auto !important;
    background-image: url('../images/about-fot-bg.jpg') !important;
    background-color: #000000 !important;
    background-position: right top !important;
    background-size: cover !important;
  }

  /* Dark translucent scrim — keeps text readable, portrait still visible */
  .about-us-speaker::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
  }

  .about-us-speaker-row {
    position: relative;
    z-index: 2;
  }

  .about-us-speaker-text-col {
    padding: 2.75rem 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.6);
  }

  .about-us-speaker-text-inner {
    max-width: 100%;
    margin-left: 0;
  }

  .about-us-speaker-visual-col {
    justify-content: center;
  }

  .about-us-speaker-img {
    max-height: 60vh;
    margin-top: 1.5rem;
  }
}

/* ── Spectrum page ── */
.spectrum-page {
  background-color: #f0e9e1 !important;
}

.seven-dimensions-section,
.living-philosophy-section,
.spectrum-closing-section {
  min-height: 100vh;
  height: 100vh;
}

.spectrum-philosophy-section {
  background-color: #f8ece8;
  background-image: url('../images/section-9-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  overflow: hidden;
  height: auto;
  min-height: 0;
}

.spectrum-philosophy-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.spectrum-philosophy-text {
  padding: 2rem 2rem 2rem 0;
}

.spectrum-philosophy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 1.75rem;
  max-width: 28em;
}

.spectrum-philosophy-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.spectrum-philosophy-body:last-child {
  margin-bottom: 0;
}

.spectrum-philosophy-body strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .spectrum-philosophy-section {
    padding: 4rem 0 3rem;
    background-position: center top;
  }

  .spectrum-philosophy-text {
    padding: 1.25rem 0.5rem 1.5rem;
  }

  .spectrum-philosophy-title {
    max-width: none;
  }

  .spectrum-philosophy-body {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .spectrum-philosophy-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    margin-bottom: 1.35rem;
  }

  .spectrum-philosophy-body {
    font-size: clamp(0.98rem, 3.8vw, 1.1rem);
  }
}

/* ── Why This Philosophy Exists ── */
.why-philosophy-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5ebe3 45%, #e9d7c7 100%);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  height: auto;
  min-height: 0;
}

.why-philosophy-content {
  width: 100%;
}

.why-philosophy-text {
  width: 100%;
  padding: 1.5rem 0;
}

.why-philosophy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 1.75rem;
}

.why-philosophy-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: none;
}

.why-philosophy-body:last-child {
  margin-bottom: 0;
}

.why-philosophy-body strong {
  font-weight: 700;
}

/* ── The Prism ── */
.the-prism-section {
  background-color: #fef9f6;
  background-image: url('../images/prism-bg-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  overflow: hidden;
  height: auto;
  min-height: 0;
}

.the-prism-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.the-prism-row {
  align-items: center;
}

.the-prism-visual {
  min-height: 1px;
}

.the-prism-text {
  padding: 1.5rem 1rem 1.5rem 2rem;
}

.the-prism-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.the-prism-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1.15rem;
  max-width: 34em;
}

.the-prism-body:last-child {
  margin-bottom: 0;
}

.the-prism-body strong {
  font-weight: 700;
}

@media (max-width: 991px) {
  .why-philosophy-section {
    padding: 3.5rem 0;
  }

  .why-philosophy-text {
    padding: 0.5rem 0.25rem;
  }

  .why-philosophy-body {
    max-width: none;
  }

  .the-prism-section {
    background-image: none;
    background-color: #fef9f6;
    padding: 3rem 0 3.5rem;
  }

  .the-prism-visual {
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(220px, 52vw, 340px);
    margin-bottom: 1.25rem;
    background: url('../images/prism-bg-2.jpg') no-repeat center center;
    background-size: cover;
  }

  .the-prism-text {
    padding: 0.5rem 0.25rem 1rem;
  }

  .the-prism-body {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .why-philosophy-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    margin-bottom: 1.35rem;
  }

  .why-philosophy-body {
    font-size: clamp(0.98rem, 3.8vw, 1.1rem);
  }

  .the-prism-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .the-prism-body {
    font-size: clamp(0.98rem, 3.8vw, 1.1rem);
  }

  .the-prism-visual {
    min-height: clamp(200px, 48vw, 280px);
    margin-bottom: 1rem;
  }
}

/* ── The Philosophy in Practice ── */
.philosophy-practice-section {
  background: radial-gradient(ellipse at center, #ffffff 0%, #f7f0ea 55%, #e8d5c8 100%);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  height: auto;
  min-height: 0;
}

.philosophy-practice-content {
  width: 100%;
}

.philosophy-practice-text {
  padding: 1.5rem 1rem 1.5rem 0;
}

.philosophy-practice-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.philosophy-practice-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 38em;
}

.philosophy-practice-lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.philosophy-practice-lead strong {
  font-weight: 700;
}

.philosophy-practice-list {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin: 0;
  padding-left: 1.35rem;
  max-width: 38em;
}

.philosophy-practice-list li {
  margin-bottom: 0.65rem;
}

.philosophy-practice-list li:last-child {
  margin-bottom: 0;
}

.philosophy-practice-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

/* Capped on both axes so the tall bulb art can never outgrow its column. */
.philosophy-practice-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(280px, 32vw, 440px);
  object-fit: contain;
}

/* ── The Seven Dimensions ── */
.seven-dimensions-section {
  background-color: #f2e8db;
  background-image: url('../images/seven--bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  overflow: hidden;
}

.seven-dimensions-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.seven-dimensions-row {
  align-items: center;
}

.seven-dimensions-text {
  padding: 1.5rem 2rem 1.5rem 0;
}

.seven-dimensions-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.seven-dimensions-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 1.35rem;
  max-width: 34em;
}

.seven-dimensions-body:last-child {
  margin-bottom: 0;
}

.seven-dimensions-body strong {
  font-weight: 700;
}

.seven-dimensions-visual {
  min-height: 1px;
}

@media (max-width: 991px) {
  .philosophy-practice-section {
    padding: 3.5rem 0;
  }

  .philosophy-practice-text {
    padding: 0.5rem 0.25rem;
  }

  .philosophy-practice-body,
  .philosophy-practice-list {
    max-width: none;
  }

  .philosophy-practice-visual {
    padding: 1.75rem 0 0;
  }

  .philosophy-practice-img {
    max-height: clamp(220px, 44vw, 320px);
  }

  .seven-dimensions-section {
    background-image: none;
    background-color: #f2e8db;
    padding: 3rem 0 3.5rem;
  }

  .seven-dimensions-text {
    padding: 0.5rem 0.25rem 1.5rem;
    order: 1;
  }

  .seven-dimensions-visual {
    order: 2;
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(240px, 55vw, 360px);
    margin-top: 0.5rem;
    background: url('../images/seven--bg.jpg') no-repeat right center;
    background-size: cover;
  }

  .seven-dimensions-body {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .philosophy-practice-title,
  .seven-dimensions-title {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    margin-bottom: 1.25rem;
  }

  .philosophy-practice-body,
  .philosophy-practice-lead,
  .philosophy-practice-list,
  .seven-dimensions-body {
    font-size: clamp(0.98rem, 3.8vw, 1.1rem);
  }

  .seven-dimensions-visual {
    min-height: clamp(200px, 52vw, 280px);
  }
}

/* ── A Living Philosophy ── */
.living-philosophy-section {
  background: linear-gradient(135deg, #f7efe8 0%, #f0e4da 50%, #e8d5c8 100%);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  height: auto;
  min-height: 100vh;
}

.living-philosophy-content {
  width: 100%;
}

.living-philosophy-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.living-philosophy-logos {
  display: flex;
  justify-content: flex-start;
  padding: 0;
  order: -1;
}

/* Single top-to-bottom column: logo width is capped by viewport height
   so all five logos plus gaps stay inside the 100vh section */
.living-philosophy-logo-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.4rem, 0.9vh, 0.75rem);
  width: clamp(88px, 12vh, 150px);
  max-width: 100%;
  margin: 0;
}

.living-philosophy-logo {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #000000;
  padding: 0.35rem;
}

.living-philosophy-text {
  padding: 0;
  max-width: none;
}

.living-philosophy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 4.3vw, 3.4rem);
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin-bottom: 1.85rem;
}

.living-philosophy-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.living-philosophy-body:last-child,
.living-philosophy-summary {
  margin-bottom: 0;
  margin-top: 0.75rem;
}

.living-philosophy-body strong {
  font-weight: 700;
}

.living-philosophy-body em {
  font-style: italic;
}

/* ── Spectrum Closing ── */
.spectrum-closing-section {
  background-color: #f5f0ea;
  background-image: url('../images/spectrum-fot-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  /* Grow past the viewport rather than clip the copy on short screens. */
  height: auto;
  min-height: 100vh;
  overflow: hidden;
}

.spectrum-closing-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.spectrum-closing-row {
  align-items: center;
}

.spectrum-closing-text {
  padding: 1.5rem 2rem 1.5rem 0;
}

.spectrum-closing-quote {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 2.45vw, 2.15rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.spectrum-closing-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 1.05rem;
}

.spectrum-closing-quote strong,
.spectrum-closing-body strong {
  font-weight: 700;
}

.spectrum-closing-signature {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 4.3vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  color: #000000;
  line-height: 1.2;
  margin: 2.25rem 0 0;
}

.spectrum-closing-visual {
  min-height: 1px;
}

@media (max-width: 991px) {
  .living-philosophy-section {
    padding: 3rem 0;
  }

  .living-philosophy-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .living-philosophy-text {
    padding: 0.5rem 0.25rem 0;
  }

  .living-philosophy-logos {
    justify-content: center;
    margin-top: 0.5rem;
    order: 0;
  }

  .living-philosophy-logo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    max-width: min(100%, 320px);
    margin: 0 auto;
    gap: 0.5rem;
  }

  .spectrum-closing-section {
    background-image: none;
    background-color: #f5f0ea;
    padding: 3rem 0 3.5rem;
  }

  .spectrum-closing-text {
    padding: 0.5rem 0.25rem 1.5rem;
    order: 1;
  }

  .spectrum-closing-visual {
    order: 2;
    display: block;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(240px, 55vw, 360px);
    background: url('../images/spectrum-fot-bg.jpg') no-repeat right center;
    background-size: cover;
  }
}

@media (max-width: 575px) {
  .living-philosophy-title {
    font-size: clamp(1.6rem, 6.8vw, 2.05rem);
  }

  .living-philosophy-body,
  .spectrum-closing-body {
    font-size: clamp(1.05rem, 4vw, 1.2rem);
  }

  .spectrum-closing-quote {
    font-size: clamp(1.15rem, 4.3vw, 1.35rem);
  }

  .spectrum-closing-signature {
    font-size: clamp(1.8rem, 7.4vw, 2.35rem);
    margin-top: 1.5rem;
  }

  .living-philosophy-logo-stack {
    width: min(100%, 280px);
    max-width: min(100%, 280px);
  }

  .spectrum-closing-visual {
    min-height: clamp(200px, 52vw, 280px);
  }
}

/*
  Spectrum page (tablet/mobile): full-bleed photo + dark semi-transparent overlay
  Same approach as About footer & Speaking & Advisory
*/
@media (max-width: 991px) {
  .spectrum-page .spectrum-philosophy-section,
  .spectrum-page .the-prism-section,
  .spectrum-page .seven-dimensions-section,
  .spectrum-page .spectrum-closing-section {
    position: relative;
    height: auto;
    min-height: clamp(420px, 90vw, 640px);
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    display: flex;
    align-items: center;
  }

  .spectrum-page .spectrum-philosophy-section {
    background-image: url('../images/section-9-bg.jpg') !important;
    background-color: #1a1512 !important;
    background-position: center top !important;
    padding: 3rem 0 !important;
  }

  .spectrum-page .the-prism-section {
    background-image: url('../images/prism-bg-2.jpg') !important;
    background-color: #1a1512 !important;
    background-position: center center !important;
    padding: 3rem 0 !important;
  }

  .spectrum-page .seven-dimensions-section {
    background-image: url('../images/seven--bg.jpg') !important;
    background-color: #1a1512 !important;
    background-position: right center !important;
    padding: 3rem 0 !important;
  }

  .spectrum-page .spectrum-closing-section {
    background-image: url('../images/spectrum-fot-bg.jpg') !important;
    background-color: #1a1512 !important;
    background-position: right center !important;
    padding: 3rem 0 !important;
  }

  /* Dark translucent scrim — full section edge-to-edge */
  .spectrum-page .spectrum-philosophy-section::before,
  .spectrum-page .the-prism-section::before,
  .spectrum-page .seven-dimensions-section::before,
  .spectrum-page .spectrum-closing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
    pointer-events: none;
  }

  .spectrum-page .spectrum-philosophy-content,
  .spectrum-page .the-prism-content,
  .spectrum-page .seven-dimensions-content,
  .spectrum-page .spectrum-closing-content {
    position: relative;
    z-index: 2;
  }

  /* Hide split visual strips — photo is the section background */
  .spectrum-page .the-prism-visual,
  .spectrum-page .seven-dimensions-visual,
  .spectrum-page .spectrum-closing-visual {
    display: none !important;
  }

  /* Text sits directly on the full-section scrim (no boxed card) */
  .spectrum-page .spectrum-philosophy-text,
  .spectrum-page .the-prism-text,
  .spectrum-page .seven-dimensions-text,
  .spectrum-page .spectrum-closing-text {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.5rem 20px !important;
    background: transparent;
    border-radius: 0;
    order: unset !important;
  }

  .spectrum-page .why-philosophy-text,
  .spectrum-page .philosophy-practice-text,
  .spectrum-page .living-philosophy-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Light text for contrast over dark scrim */
  .spectrum-page .spectrum-philosophy-title,
  .spectrum-page .spectrum-philosophy-body,
  .spectrum-page .the-prism-title,
  .spectrum-page .the-prism-body,
  .spectrum-page .seven-dimensions-title,
  .spectrum-page .seven-dimensions-body,
  .spectrum-page .spectrum-closing-quote,
  .spectrum-page .spectrum-closing-body,
  .spectrum-page .spectrum-closing-signature {
    color: #f4efe8 !important;
  }

  .spectrum-page .spectrum-philosophy-body strong,
  .spectrum-page .the-prism-body strong,
  .spectrum-page .seven-dimensions-body strong,
  .spectrum-page .spectrum-closing-quote strong,
  .spectrum-page .spectrum-closing-body strong {
    color: #ffffff !important;
  }

  /* Text-only sections: keep cream look, tighten for mobile */
  .spectrum-page .why-philosophy-section,
  .spectrum-page .philosophy-practice-section,
  .spectrum-page .living-philosophy-section {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .spectrum-page section.spectrum-philosophy-section,
  .spectrum-page section.the-prism-section,
  .spectrum-page section.seven-dimensions-section,
  .spectrum-page section.spectrum-closing-section,
  .spectrum-page section.why-philosophy-section,
  .spectrum-page section.philosophy-practice-section,
  .spectrum-page section.living-philosophy-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 575px) {
  .spectrum-page .spectrum-philosophy-text,
  .spectrum-page .the-prism-text,
  .spectrum-page .seven-dimensions-text,
  .spectrum-page .spectrum-closing-text {
    padding: 0.35rem 20px !important;
  }
}

/* ── Speaking & Advisory page ── */
.speaking-advisory-page {
  min-height: 100vh;
  background: #ece7df;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
}

.speaking-advisory-main {
  padding-top: 4.5rem;
}

.sa-block {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sa-block-bg {
  position: absolute;
  inset: 0;
  background-color: #d9d2c8;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  /* Photo layer is static — no reveal fade and no scroll drift. */
  transform: none;
  transition: none;
  animation: none;
  will-change: auto;
}

.sa-block-hero .sa-block-bg {
  background-position: left center;
}

.sa-block-intro .sa-block-bg {
  background-position: right center;
}

.sa-block-narrative .sa-block-bg {
  background-position: left center;
}

.sa-block-why .sa-block-bg {
  background-position: right center;
}

.sa-block-signature .sa-block-bg,
.sa-block-advisory .sa-block-bg {
  background-position: left center;
}

.sa-block-workwith .sa-block-bg {
  background-position: left center;
}

.sa-block-invitation .sa-block-bg {
  background-position: right center;
}

.sa-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 4.5rem);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Text columns sit in each image's negative space */
.sa-copy {
  width: min(100%, 34rem);
  text-align: left;
  background: transparent;
  padding: 0;
}

.sa-copy-left {
  margin-right: auto;
}

.sa-copy-right {
  margin-left: auto;
}

.sa-copy-quote {
  width: min(100%, 28rem);
  padding-top: 0;
}

/* Hero quote — large, dense block that fills the right column */
.sa-quote {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 5.2vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #111111;
  margin: 0 0 1.5rem;
  text-align: left;
}

.sa-quote strong {
  font-weight: 700;
}

.sa-quote-attr {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  color: #111111;
  margin: 0;
  text-align: left;
}

/* Titles */
.sa-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #111111;
  margin: 0 0 1.35rem;
  text-align: left;
}

.sa-block-intro .sa-title {
  text-transform: uppercase;
  font-size: clamp(2.5rem, 5.8vw, 5rem);
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin-bottom: 1.75rem;
}

.sa-title-accent {
  color: #e8722a;
}

.sa-block-signature .sa-title-accent {
  color: #f07828;
}

.sa-title-gold {
  color: #c4a06a;
}

.sa-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.45;
  color: #222222;
  margin: 0 0 1.35rem;
  text-align: left;
}

.sa-body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
  margin: 0 0 1.15rem;
  text-align: left;
}

.sa-body:last-child {
  margin-bottom: 0;
}

.sa-accent {
  color: #c45a28;
  font-weight: 700;
}

.sa-plain-list,
.sa-dash-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  text-align: left;
}

.sa-plain-list li,
.sa-dash-list li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  font-weight: 400;
  line-height: 1.75;
  color: #222222;
  text-align: left;
}

/* Intro: space blocks so the column feels full like the reference */
.sa-block-intro .sa-copy {
  width: min(100%, 38rem);
}

.sa-block-intro .sa-plain-list {
  margin-bottom: 2rem;
}

.sa-block-intro .sa-body {
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
}

.sa-dash-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.55rem;
  color: #f2ebe3;
}

.sa-dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  background: #f07828;
}

/* Dark-section text */
.sa-copy-on-dark .sa-body,
.sa-copy-on-dark .sa-plain-list li {
  color: #f2ebe3;
}

.sa-copy-on-dark .sa-accent {
  color: #e07a3d;
}

/* CTA */
.sa-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  text-decoration: none;
  text-align: left;
  background: linear-gradient(180deg, #f4f2ef 0%, #d8d4cf 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.sa-cta strong {
  font-weight: 700;
}

.sa-cta:hover {
  background: linear-gradient(180deg, #faf8f6 0%, #cfcac3 100%);
  color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.sa-body strong {
  font-weight: 700;
}

/* Wider copy columns so text fills the negative space */
.sa-block-why .sa-copy,
.sa-block-signature .sa-copy,
.sa-block-advisory .sa-copy {
  width: min(100%, 32rem);
}

.sa-block-narrative .sa-copy {
  width: min(100%, 34rem);
}

.sa-block-workwith .sa-copy {
  width: min(100%, 32rem);
}

.sa-block-invitation .sa-copy {
  width: min(100%, 50rem);
}

/*
  Desktop type scale for the intro, narrative and invitation blocks —
  wider columns + larger copy so the text meets the portrait instead of
  leaving a wide empty band in the middle of the section.
*/
@media (min-width: 992px) {
  .sa-block-intro .sa-copy {
    width: min(100%, 44rem);
  }

  .sa-block-intro .sa-title {
    font-size: clamp(2.75rem, 6.2vw, 5.5rem);
  }

  .sa-block-intro .sa-sub {
    font-size: clamp(1.3rem, 1.95vw, 1.8rem);
  }

  .sa-block-intro .sa-body,
  .sa-block-intro .sa-plain-list li {
    font-size: clamp(1.25rem, 1.85vw, 1.65rem);
  }

  .sa-block-narrative .sa-copy {
    width: min(100%, 38rem);
  }

  .sa-block-narrative .sa-body {
    font-size: clamp(1.3rem, 1.95vw, 1.75rem);
    line-height: 1.55;
  }

  .sa-block-invitation .sa-copy {
    width: min(100%, 50rem);
  }

  .sa-block-invitation .sa-title {
    font-size: clamp(2.4rem, 4.6vw, 4rem);
  }

  .sa-block-invitation .sa-body {
    font-size: clamp(1.3rem, 1.95vw, 1.75rem);
  }

  .sa-block-invitation .sa-cta {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    padding: 1rem 1.9rem;
  }

  /* Invitation photo: slightly wider frame, anchored right */
  .sa-block-invitation .sa-block-bg {
    left: auto;
    right: 0;
    width: 106%;
  }

  /*
    Wash from the page background into the photo. Many closely spaced stops
    give a smooth ramp instead of visible banding, and it clears early so the
    portrait's own soft edge — not a flat cream band — does the hand-off.
  */
  .sa-block-invitation .sa-block-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      #ece7df 0%,
      rgba(236, 231, 223, 0.98) 10%,
      rgba(236, 231, 223, 0.94) 18%,
      rgba(236, 231, 223, 0.86) 26%,
      rgba(236, 231, 223, 0.72) 34%,
      rgba(236, 231, 223, 0.54) 42%,
      rgba(236, 231, 223, 0.34) 50%,
      rgba(236, 231, 223, 0.16) 57%,
      rgba(236, 231, 223, 0.05) 62%,
      rgba(236, 231, 223, 0) 66%
    );
    pointer-events: none;
  }
}

/* Invitation block sits still — no scroll drift or fade-in over the photo */
.speaking-advisory-page .sa-block-invitation .parallax-content {
  transform: none;
  will-change: auto;
}

.speaking-advisory-page .sa-block-invitation .scroll-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/*
  Tablet / mobile: full-bleed photo + dark semi-transparent overlay
  (same approach as About footer — portrait visible, text readable)
*/
@media (max-width: 991px) {
  .speaking-advisory-main {
    padding-top: 4.25rem;
  }

  .sa-block {
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  /* Photo stays full-bleed behind content */
  .sa-block-bg {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    order: unset;
    background-position: center center;
    background-size: cover;
    z-index: 0;
  }

  /* Dark translucent scrim — full section edge-to-edge */
  .sa-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
    pointer-events: none;
  }

  .sa-inner {
    position: relative;
    z-index: 2;
    order: unset;
    min-height: clamp(420px, 85vw, 640px);
    width: 100%;
    max-width: none;
    padding: 2.5rem 0;
    align-items: center;
    background: transparent;
  }

  .sa-block-why .sa-inner,
  .sa-block-signature .sa-inner,
  .sa-block-advisory .sa-inner,
  .sa-block-hero .sa-inner {
    background: transparent;
  }

  .sa-copy,
  .sa-copy-quote,
  .sa-block-why .sa-copy,
  .sa-block-signature .sa-copy,
  .sa-block-advisory .sa-copy,
  .sa-block-narrative .sa-copy,
  .sa-block-intro .sa-copy,
  .sa-block-workwith .sa-copy,
  .sa-block-invitation .sa-copy {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.25rem 20px;
    background: transparent;
    border-radius: 0;
  }

  /* Hero quote + Who We Work With: keep copy on the right over negative space */
  .sa-block-hero .sa-inner,
  .sa-block-workwith .sa-inner {
    justify-content: flex-end;
  }

  .sa-block-hero .sa-copy,
  .sa-block-hero .sa-copy-quote,
  .sa-block-workwith .sa-copy {
    width: min(100%, 18.5rem);
    max-width: 72%;
    margin-left: auto;
    margin-right: 0;
    padding: 0.25rem 1.25rem 0.25rem 0.75rem;
    text-align: right;
  }

  .sa-block-hero .sa-quote,
  .sa-block-hero .sa-quote-attr,
  .sa-block-workwith .sa-title,
  .sa-block-workwith .sa-plain-list,
  .sa-block-workwith .sa-plain-list li {
    text-align: right;
  }

  .sa-block-workwith .sa-plain-list {
    padding-left: 0;
  }

  .sa-copy-on-dark {
    background: transparent;
  }

  /* Light text over dark scrim for readability */
  .sa-title,
  .sa-quote,
  .sa-quote-attr,
  .sa-sub,
  .sa-body,
  .sa-plain-list li,
  .sa-dash-list li {
    color: #f4efe8;
  }

  .sa-title-accent,
  .sa-block-signature .sa-title-accent,
  .sa-accent {
    color: #f07828;
  }

  .sa-title-gold {
    color: #e0c08a;
  }

  .sa-title {
    font-size: clamp(1.65rem, 6vw, 2.35rem);
    margin-bottom: 1rem;
  }

  .sa-block-intro .sa-title {
    font-size: clamp(1.85rem, 7vw, 2.75rem);
    margin-bottom: 1.1rem;
  }

  .sa-quote {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    margin-bottom: 1rem;
  }

  .sa-quote-attr {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
  }

  .sa-sub,
  .sa-body,
  .sa-plain-list li,
  .sa-dash-list li {
    font-size: clamp(1rem, 3.4vw, 1.15rem);
  }

  .sa-cta {
    color: #1a1a1a;
  }

  /* Focus crop toward the portrait in each asset */
  .sa-block-hero .sa-block-bg {
    background-position: 12% center;
  }

  .sa-block-intro .sa-block-bg {
    background-position: 82% center;
  }

  .sa-block-narrative .sa-block-bg {
    background-position: 12% center;
  }

  .sa-block-why .sa-block-bg {
    background-position: 88% center;
  }

  .sa-block-signature .sa-block-bg,
  .sa-block-advisory .sa-block-bg {
    background-position: 15% center;
  }

  .sa-block-workwith .sa-block-bg {
    background-position: 18% center;
  }

  .sa-block-invitation .sa-block-bg {
    background-position: 85% center;
  }
}

@media (max-width: 767px) {
  .speaking-advisory-page section.sa-block {
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .sa-inner {
    min-height: clamp(380px, 95vw, 560px);
    padding: 1.75rem 0;
  }

  .sa-copy,
  .sa-copy-quote {
    padding: 0.15rem 20px;
  }

  .sa-block-hero .sa-copy,
  .sa-block-hero .sa-copy-quote,
  .sa-block-workwith .sa-copy {
    width: min(100%, 16.5rem);
    max-width: 78%;
    padding: 0.15rem 1.15rem 0.15rem 0.5rem;
  }

  .sa-quote {
    font-size: clamp(1.55rem, 7.5vw, 2rem);
  }

  .sa-title {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  .sa-block-intro .sa-title {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
  }

  .sa-body,
  .sa-plain-list li,
  .sa-dash-list li,
  .sa-sub {
    font-size: clamp(0.98rem, 3.8vw, 1.08rem);
  }
}

/* ── H.O.W. — The Health Of Women Forum page ── */
.how-page {
  min-height: 100vh;
  background: #ffffff;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
}

.how-page section.how-section {
  min-height: auto;
  scroll-snap-align: none;
}

.how-main {
  padding-top: 4.5rem;
}

/* Logo */
.how-logo {
  --how-logo-size: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* flex-start keeps the venus stem hanging below the H.W. baseline. */
.how-logo-mark {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.02em;
  font-size: var(--how-logo-size);
  line-height: 1;
}

.how-logo-letter {
  font-weight: 700;
  color: #e31b23;
  letter-spacing: 0.02em;
}

/* The venus mark stands in for the "O"; drawn as SVG so the ring is a true circle. */
.how-logo-o {
  flex: 0 0 auto;
  width: 0.74em;
  height: 1.32em;
  color: #e31b23;
}

.how-venus-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.how-logo-tagline {
  margin: 0.35rem 0 0;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.how-logo-footer .how-logo-tagline {
  color: #111111;
}

/* Section 1: Hero */
.how-hero {
  background: #2b2b2b;
  color: #ffffff;
  padding: 3.5rem 0 4.5rem;
  text-align: left;
}

.how-hero-inner {
  max-width: 960px;
}

.how-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.75rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.how-hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 2.75rem;
  max-width: 680px;
  color: #b5b5b5;
}

.how-hero-motto {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #e31b23;
}

.how-hero-motto-label,
.how-hero-motto-quote {
  display: block;
}

.how-hero-motto-label {
  margin-bottom: 0.15rem;
}

.how-hero-motto-emphasis {
  font-style: italic;
  text-transform: uppercase;
}

/* Section 2: Statement */
.how-statement {
  background: #f2f2f2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) 1.5rem;
  text-align: center;
}

.how-statement-inner {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vh, 5rem);
}

.how-statement-lead {
  margin: 0;
  width: 100%;
}

.how-statement-line {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
  margin: 0;
}

.how-statement-divider {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 1.25rem auto 1.25rem;
}

.how-statement-big {
  font-size: clamp(5.5rem, 16vw, 10.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: #111111;
  margin: 0;
  letter-spacing: -0.03em;
}

.how-red-dot {
  display: inline-block;
  width: 0.12em;
  height: 0.12em;
  background: #e31b23;
  margin-left: 0.05em;
  vertical-align: baseline;
  transform: translateY(-0.06em);
}

/* Section 3: Diagram */
.how-diagram {
  background: #ffffff;
  padding: 3.5rem 0 0;
  text-align: center;
}

.how-diagram-img {
  width: min(100%, 760px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.how-diagram-banner-wrap {
  display: flex;
  justify-content: center;
  padding: 2.25rem 1.5rem 3.5rem;
}

.how-red-banner {
  background: #e31b23;
  color: #ffffff;
  text-align: center;
}

.how-red-banner-pill {
  border-radius: 999px;
  max-width: 980px;
  padding: 1.5rem 2.75rem;
}

.how-red-banner p {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.5;
}

/* Section 4: Context */
.how-context {
  padding: 0;
}

.how-context-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1322;
  background-image: url('../images/how-bg01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: clamp(1.75rem, 4.5vw, 3.25rem) clamp(1rem, 3vw, 2rem);
  overflow: hidden;
}

.how-context-visual::before,
.how-context-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.how-context-visual::before {
  top: 0;
  height: 30%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.how-context-visual::after {
  bottom: 0;
  height: 30%;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.how-context-intro,
.how-context-outro {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  max-width: 820px;
  line-height: 1.5;
  color: #111111;
  margin: 0;
  font-weight: 700;
}

.how-context-intro {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.3;
}

.how-context-outro {
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 400;
  line-height: 1.35;
}

.how-context-overlay {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(92%, 920px);
  margin: 0;
  background: rgba(227, 27, 35, 0.78);
  color: #ffffff;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.how-context-overlay p {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Section 5: Comparison */
.how-comparison {
  background: #f5f0f1;
  padding: 3.5rem 0 4rem;
}

.how-comparison-inner {
  max-width: 980px;
}

.how-comparison-col {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.how-comparison-row .col-md-6 + .col-md-6 .how-comparison-col {
  border-left: 0;
}

.how-comparison-header {
  padding: 1rem 1.25rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.how-comparison-header-red {
  background: #e31b23;
}

.how-comparison-header-dark {
  background: #111111;
}

.how-comparison-list {
  list-style: none;
  margin: 0;
  padding: 1.75rem 2rem 2.25rem;
}

.how-comparison-list-old {
  background: #faf5f5;
}

.how-comparison-list-new {
  background: #ececec;
}

.how-comparison-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.5;
  color: #111111;
}

.how-comparison-list li:last-child {
  margin-bottom: 0;
}

.how-comparison-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111111;
}

.how-comparison-list strong {
  color: #e31b23;
  font-weight: 700;
}

/* Section 6: Symbol */
.how-symbol {
  background: #ffffff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}

.how-symbol-inner {
  max-width: 1100px;
}

.how-symbol-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.how-symbol-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-symbol-img {
  width: min(280px, 36vw);
  height: auto;
  display: block;
}

.how-symbol-copy {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.how-symbol-copy-left {
  flex-direction: row-reverse;
  text-align: right;
  justify-content: flex-start;
}

.how-symbol-copy-right {
  flex-direction: row;
  text-align: left;
  justify-content: flex-start;
}

.how-symbol-line {
  flex: 0 0 auto;
  width: clamp(28px, 4vw, 56px);
  height: 2px;
  display: block;
}

.how-symbol-line-black {
  background: #111111;
}

.how-symbol-line-red {
  background: #e31b23;
}

.how-symbol-copy-text {
  flex: 1 1 auto;
  min-width: 0;
}

.how-symbol-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
}

.how-symbol-body {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
  color: #222222;
}

.how-black-pill {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  padding: 1.1rem 2.25rem;
  max-width: min(100%, 760px);
}

.how-black-pill p {
  margin: 0;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

/* Section 7: Performance */
.how-performance {
  background: #d9d9d9;
  padding: 0;
}

.how-performance-split {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: clamp(320px, 42vw, 480px);
}

.how-performance-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #d9d9d9;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem);
}

.how-performance-lead,
.how-performance-accent {
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  max-width: 14ch;
}

.how-performance-lead {
  color: #111111;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.how-performance-accent {
  color: #e31b23;
}

.how-performance-img-col {
  min-height: 100%;
}

.how-performance-img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
}

.how-performance-banner {
  background: #e31b23;
  color: #ffffff;
  text-align: center;
  padding: 1.35rem 1.5rem;
}

.how-performance-banner p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

/* Section 8: Workshop */
.how-workshop {
  padding: 0;
}

.how-workshop-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  min-height: clamp(560px, 56.25vw, 780px);
  overflow: hidden;
}

.how-workshop-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/how-bg03.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}

.how-workshop-columns {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  width: min(100%, 1280px);
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.how-workshop-column {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding: 0 clamp(0.25rem, 0.8vw, 0.65rem);
}

.how-workshop-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 268px);
  height: 54%;
  max-height: 54%;
  min-height: 0;
}

.how-workshop-stack-center {
  height: 44%;
  max-height: 44%;
}

.how-workshop-stack-right {
  height: 52%;
  max-height: 52%;
}

.how-workshop-box {
  flex: 0 0 auto;
  width: 100%;
  background: #e31b23;
  color: #ffffff;
  padding: clamp(0.9rem, 1.5vw, 1.25rem) clamp(0.7rem, 1.1vw, 0.95rem);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(76px, 11vw, 108px);
}

.how-workshop-ribbon {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  background: linear-gradient(
    to bottom,
    rgba(227, 27, 35, 0.92) 0%,
    rgba(227, 27, 35, 0.55) 55%,
    rgba(227, 27, 35, 0.12) 100%
  );
}

/* Section 9: Quote */
.how-quote-section {
  background: #f2f2f2;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  padding-bottom: 0;
}

.how-quote-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.how-quote-block {
  position: relative;
  color: #ffffff;
  aspect-ratio: 860 / 540;
  width: 100%;
  padding: 0;
  text-align: left;
  margin: 0;
}

.how-quote-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.how-quote-mark {
  position: absolute;
  top: -0.12em;
  left: 0.15em;
  z-index: 2;
  display: block;
  font-size: clamp(18rem, 11vw, 20rem);
  font-weight: 900;
  line-height: 0.7;
  margin: 0;
  color: #111111;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  letter-spacing: -0.1em;
}

.how-quote-content {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 10%;
  top: 14%;
  bottom: 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-quote-lead {
  margin: 0 0 clamp(0.75rem, 1.8vw, 1.35rem);
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.how-quote-emphasis {
  margin: 0;
  font-size: clamp(1.85rem, 4.6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.015em;
}

.how-formula-part {
  color: #ffffff;
}

.how-formula-op {
  color: #e31b23;
  font-weight: 700;
}

/* Section 10: Desk */
.how-desk {
  padding: 0;
}

.how-desk-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 1080;
  background-image: url('../images/how-bg04.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-rows: 46% 54%;
}

.how-desk-formula {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2.5rem) 1.5rem 0;
  position: relative;
  z-index: 1;
}

.how-desk-formula-line {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.how-desk-banner {
  background: #e31b23;
  color: #ffffff;
  text-align: center;
  padding: 1.35rem 1.5rem;
}

.how-desk-banner p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

/* Section 11: Final CTA */
.how-final {
  background: #f2f2f2;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}

.how-final-inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-speech-bubble {
  position: relative;
  background: #ffffff;
  border: 6px solid #ffffff;
  border-radius: 1.75rem;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(2rem, 4.5vw, 3.5rem);
  max-width: 720px;
  width: 100%;
  margin: 0 auto 2.75rem;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.1);
}

.how-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 18%;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 24px solid #ffffff;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.08));
}

.how-speech-quote-icon {
  position: absolute;
  top: -1.35rem;
  left: 1.5rem;
  z-index: 2;
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e31b23;
  color: #ffffff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  box-shadow: 0 4px 12px rgba(227, 27, 35, 0.35);
}

.how-speech-bubble p {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.45;
  color: #111111;
}

.how-cta-btn {
  display: inline-block;
  background: #e31b23;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  margin-bottom: 2.75rem;
  box-shadow: 0 8px 20px rgba(227, 27, 35, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.how-cta-btn:hover {
  background: #c4181f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(227, 27, 35, 0.38);
}

.how-logo-footer {
  margin: 2rem 0 0;
}

.how-logo-footer-img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
}

/* Section 12: Gallery */
.how-gallery {
  background: #e31b23;
  padding: 3rem 0 4rem;
}

.how-gallery-inner {
  max-width: 1100px;
}

.how-gallery-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 1.75rem;
}

/* Mosaic locked to images/gallery/how/*-thumb.jpg pixel sizes (gap 8) */
.how-gallery-grid {
  display: grid;
  grid-template-columns: 360fr 498fr 215fr;
  gap: 8px;
  width: 100%;
  aspect-ratio: 1088 / 583;
}

.how-gallery-col {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}

.how-gallery-col--left {
  grid-template-rows: 200fr 161fr 209fr;
}

.how-gallery-col--center {
  grid-template-rows: 139fr 280fr 148fr;
}

.how-gallery-col--right {
  grid-template-rows: 321fr 254fr;
}

.how-gallery-row {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}

.how-gallery-row--a,
.how-gallery-row--c {
  grid-template-columns: 228fr 123fr;
}

.how-gallery-row--b {
  grid-template-columns: 136fr 216fr;
}

.how-gallery-row--top,
.how-gallery-row--bot {
  grid-template-columns: 243fr 247fr;
}

.how-gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #c41820;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  position: relative;
}

.how-gallery-item:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  z-index: 1;
}

.how-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-gallery-item:hover img {
  transform: scale(1.04);
}

.how-gallery-video {
  position: relative;
}

.how-gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(40px, 5.5vw, 64px);
  height: clamp(40px, 5.5vw, 64px);
  background: #e31b23;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
}

.how-gallery-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55em 0 0.55em 0.9em;
  border-color: transparent transparent transparent #ffffff;
  font-size: clamp(10px, 1.2vw, 14px);
}

/* Gallery image lightbox */
.how-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.how-lightbox[hidden] {
  display: none;
}

.how-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.how-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.how-lightbox__box {
  background: #fff;
  border-radius: 4px;
  padding: clamp(0.75rem, 2.5vw, 1.35rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.how-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  margin: 0 auto;
}

.how-lightbox__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translate(40%, -40%);
}

.how-lightbox__close:hover,
.how-video-modal__close:hover {
  background: #e31b23;
  color: #fff;
}

/* Gallery video modal */
.how-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.how-video-modal[hidden] {
  display: none;
}

.how-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.how-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.how-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.how-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.how-video-modal__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}

.how-video-modal__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-video-modal__poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: #e31b23;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.how-video-modal__poster-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
}

.how-video-modal__poster:hover .how-video-modal__poster-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.how-video-modal__fallback {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  text-align: center;
}

.how-video-modal__fallback a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.how-video-modal__fallback a:hover {
  text-decoration: underline;
}

.how-video-modal__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translate(40%, -40%);
}

@media (max-width: 575px) {
  .how-lightbox__close,
  .how-video-modal__close {
    top: 0.35rem;
    right: 0.35rem;
    transform: none;
  }
}

/* HOW page — responsive */
@media (max-width: 991px) {
  .how-main {
    padding-top: 4.25rem;
  }

  .how-symbol-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .how-symbol-img {
    width: min(220px, 55vw);
    order: -1;
  }

  .how-symbol-center {
    order: -1;
  }

  .how-symbol-copy-left,
  .how-symbol-copy-right,
  .how-symbol-copy {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .how-symbol-line {
    width: 40px;
  }

  .how-performance-split {
    grid-template-columns: 1fr;
  }

  .how-performance-img-col {
    order: -1;
    overflow: hidden;
    padding: 1rem 1rem 0;
    background: #d9d9d9;
  }

  .how-performance-img {
    min-height: clamp(220px, 55vw, 320px);
    border-radius: 1rem;
  }

  .how-performance-text-col {
    padding: 1.75rem 1.35rem 2rem;
  }

  .how-performance-lead,
  .how-performance-accent {
    font-size: clamp(1.45rem, 6vw, 2rem);
    max-width: none;
  }

  .how-performance-banner {
    padding: 1.15rem 1.25rem;
  }

  .how-performance-banner p {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  }

  .how-workshop-visual {
    aspect-ratio: auto;
    min-height: clamp(640px, 95vw, 820px);
    display: flex;
    flex-direction: column;
  }

  .how-workshop-columns {
    position: relative;
    inset: auto;
    flex: 1;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 2.5rem 1.25rem 1.75rem;
    gap: 1.25rem;
    align-items: stretch;
  }

  .how-workshop-column {
    height: auto;
    align-items: stretch;
    padding: 0;
  }

  .how-workshop-stack,
  .how-workshop-stack-center,
  .how-workshop-stack-right {
    width: 100%;
    max-width: 380px;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }

  .how-workshop-ribbon {
    min-height: 40px;
  }

  .how-workshop-box {
    min-height: auto;
    padding: 1rem 1.1rem;
    font-size: clamp(1rem, 4vw, 1.15rem);
  }

  .how-gallery-grid {
    gap: 6px;
  }
}

@media (max-width: 767px) {
  .how-hero {
    padding: 2rem 0 3rem;
  }

  .how-statement {
    min-height: 85vh;
    padding: 3.5rem 1.25rem;
  }

  .how-statement-inner {
    gap: 2.5rem;
  }

  .how-statement-line {
    font-size: clamp(1.55rem, 6.5vw, 2.15rem);
  }

  .how-statement-divider {
    width: min(100%, 340px);
    margin: 1rem auto;
  }

  .how-statement-big {
    font-size: clamp(4.25rem, 18vw, 6.5rem);
  }

  .how-diagram-banner-wrap {
    padding: 1.75rem 1rem 2.5rem;
  }

  .how-red-banner-pill {
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
  }

  .how-context-visual {
    aspect-ratio: auto;
    min-height: clamp(460px, 120vw, 620px);
    padding: 1.5rem 1rem 1.75rem;
    gap: 1rem;
    justify-content: space-between;
  }

  .how-context-intro {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
    line-height: 1.4;
  }

  .how-context-outro {
    font-size: clamp(0.95rem, 3.8vw, 1.1rem);
    line-height: 1.4;
  }

  .how-context-overlay {
    width: calc(100% - 0.25rem);
    padding: 1rem 1rem;
  }

  .how-context-overlay p {
    font-size: clamp(1rem, 4.4vw, 1.25rem);
  }

  .how-comparison {
    padding: 2.5rem 1rem 3rem;
  }

  .how-comparison-inner {
    max-width: 520px;
  }

  .how-comparison-row {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .how-comparison-row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .how-comparison-col {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  }

  .how-comparison-row .col-md-6 + .col-md-6 .how-comparison-col {
    border-left: none;
    margin-top: 0;
  }

  .how-comparison-header {
    border-radius: 0;
  }

  .how-comparison-list {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .how-quote-block {
    aspect-ratio: 860 / 580;
  }

  .how-quote-mark {
    top: -0.08em;
    left: 0.1em;
    font-size: clamp(3.5rem, 14vw, 5rem);
  }

  .how-quote-content {
    left: 7%;
    right: 8%;
    top: 16%;
    bottom: 32%;
  }

  .how-quote-lead {
    font-size: clamp(0.95rem, 3.8vw, 1.15rem);
    margin-bottom: 0.75rem;
  }

  .how-quote-emphasis {
    font-size: clamp(1.45rem, 6.5vw, 2.1rem);
  }

  .how-desk-visual {
    grid-template-rows: 44% 56%;
  }

  .how-desk-formula {
    padding: 1rem 1rem 0;
  }

  .how-desk-formula-line {
    font-size: clamp(0.9rem, 3.8vw, 1.15rem);
    line-height: 1.28;
  }

  .how-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
    height: auto;
    gap: 6px;
  }

  .how-gallery-col--left,
  .how-gallery-col--center,
  .how-gallery-col--right {
    display: contents;
  }

  .how-gallery-row {
    display: contents;
  }

  .how-gallery-item {
    aspect-ratio: 4 / 3;
  }

  .how-gallery-video {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .how-gallery-col--right .how-gallery-item {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 575px) {
  .how-gallery {
    padding: 2.25rem 0 3rem;
  }

  .how-gallery-grid {
    gap: 5px;
  }

  .how-gallery-item {
    aspect-ratio: 1 / 1;
  }

  .how-gallery-video {
    aspect-ratio: 16 / 9;
  }
}

/* ═══════════════════════════════════════════
   The Kintsugi Life — king.php
   ═══════════════════════════════════════════ */

.king-page {
  --king-bg: #0a0a0a;
  --king-bg-soft: #141414;
  --king-gold: #d4af37;
  --king-gold-soft: #c9a227;
  --king-gold-dim: #a8892e;
  --king-text: #f5f2eb;
  --king-muted: #b8b3a8;
  --king-font: Arial, Helvetica, sans-serif;

  min-height: 100vh;
  background: var(--king-bg);
  color: var(--king-text);
  font-family: var(--king-font);
  font-weight: 400;
  overflow-x: hidden;
}

.king-page .site-header.is-stuck {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.king-page .site-header .nav-link {
  color: rgba(245, 242, 235, 0.88);
}

.king-page .site-header .nav-link:hover,
.king-page .site-header .nav-link:focus {
  color: var(--king-gold);
  opacity: 1;
}

.king-main {
  padding-top: 4.25rem;
}

.king-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: none;
}

.king-bg {
  position: absolute;
  inset: 0;
  background-color: var(--king-bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

.king-bg-dim {
  opacity: 0.35;
  filter: saturate(0.85);
}

.king-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(3.5rem, 8vh, 6rem);
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
}

/* Reveal motion */
.king-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.king-anatomy-item.king-reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.king-anatomy-item.king-reveal:nth-child(3) {
  transition-delay: 0.24s;
}

/* Typography */
.king-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c9a86a;
  margin: 0 0 1.25rem;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.king-tagline {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: #c9a86a;
  margin: 0 0 1.5rem;
  max-width: 28em;
}

.king-lead,
.king-body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.75;
  color: #c9a86a;
  margin: 0 0 1.1rem;
  max-width: 36em;
}

.king-body:last-child {
  margin-bottom: 0;
}

.king-body em {
  color: var(--king-text);
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
}

.king-section-title {
  font-family: var(--king-font);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  color: var(--king-gold);
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

.king-section-title-center {
  text-align: center;
}

/* Hero */
.king-hero {
  min-height: calc(100vh - 4.25rem);
}

.king-hero-inner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 4.25rem - 2rem);
}

.king-hero-content {
  max-width: 38rem;
  padding-right: 1rem;
}

.king-hero .king-bg {
  background-position: 70% center;
  animation: king-hero-drift 28s ease-in-out infinite alternate;
}

@keyframes king-hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.king-mark {
  width: 3.25rem;
  height: 3.25rem;
  color: var(--king-gold);
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.king-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Philosophy */
.king-philosophy .king-bg {
  background-position: center center;
}

.king-philosophy-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: min(70vh, 560px);
  justify-content: center;
}

.king-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.king-philosophy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: #f1eed0;
  margin: 0 0 1.15rem;
}

.king-philosophy-body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
  color: #f1eed0;
  margin: 0;
  max-width: 28em;
}

.king-philosophy-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  padding-top: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  color: #f1eed0;
  text-align: center;
}

.king-philosophy-sep {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50% 40% 55% 45%;
  background: linear-gradient(135deg, #a8892e, #d4af37);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Paradigm table */
.king-paradigm .king-bg {
  background-position: right center;
}

.king-paradigm-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  color: #f1eed0;
  margin: 0 0 1.75rem;
  letter-spacing: 0.01em;
  text-align: left;
}

.king-paradigm-table {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(4px);
}

.king-paradigm-table::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58.5%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--king-gold) 12%,
    var(--king-gold-soft) 50%,
    var(--king-gold) 88%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
  pointer-events: none;
  z-index: 1;
}

.king-paradigm-head,
.king-paradigm-row {
  display: grid;
  grid-template-columns: minmax(7rem, 0.9fr) 1.15fr 1.15fr;
}

.king-paradigm-head {
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.king-paradigm-row + .king-paradigm-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.king-paradigm-cell {
  padding: 1.05rem 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.45;
  color: #ffffff;
}

.king-paradigm-label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.55);
  align-self: center;
}

.king-paradigm-conventional {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #c8c8c8;
  text-align: center;
}

.king-paradigm-kintsugi {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: #f1eed0;
  text-align: center;
}

.king-paradigm-row .king-paradigm-cell:not(.king-paradigm-label) {
  text-align: center;
}

.king-paradigm-gold {
  color: #ffffff !important;
  font-weight: 400;
}

.king-paradigm-footer {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: #e6d28a;
  text-align: center;
  max-width: 40rem;
  margin: 1.75rem auto 0;
}

/* Anatomy */
.king-anatomy {
  background: #121212;
  min-height: auto;
  padding: clamp(4rem, 10vh, 7rem) 0;
}

.king-anatomy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  color: #f1eed0;
  margin: 0 0 2.5rem;
  text-align: left;
}

.king-anatomy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1000px;
  margin: 0 auto;
}

.king-anatomy-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 120px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--king-gold) 8%,
    #e0c36a 50%,
    var(--king-gold) 92%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  z-index: 0;
  pointer-events: none;
}

.king-anatomy-item {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
}

.king-anatomy-photo {
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto 1.35rem;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.king-anatomy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.king-anatomy-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  color: #ffffff;
  margin: 0 0 0.45rem;
}

.king-anatomy-gold-word {
  color: var(--king-gold);
}

.king-anatomy-caption {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #a8a8a8;
  margin: 0 auto;
  max-width: 18em;
}

/* Stages I & II */
.king-stage-copy {
  max-width: 34rem;
}

.king-stage-fracture .king-bg {
  background-position: right center;
}

.king-stage-alchemy .king-bg {
  background-position: right center;
}

.king-stage-banner {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  margin: 0 0 1.75rem;
  padding: 0.7rem 3.5rem 0.7rem 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #c9a227 0%, #d4af37 42%, rgba(212, 175, 55, 0) 100%);
}

.king-stage-headline {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: #f1eed0;
  margin: 0 0 1.5rem;
}

.king-stage-body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.95vw, 1.6rem);
  line-height: 1.65;
  color: #ffffff;
  margin: 0;
  max-width: 32em;
}

.king-stage-quote {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 0.75rem 1.75rem 0.5rem;
  border: 0;
}

.king-stage-quote-text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.25;
  color: #e6d28a;
  margin: 0;
}

.king-stage-quote-mark {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 5rem);
  line-height: 1;
  color: var(--king-gold);
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
}

.king-stage-quote-mark-open {
  top: -0.35rem;
  left: -0.15rem;
}

/* Trails the last word, so it stays attached however the quote wraps */
.king-stage-quote-mark-close {
  position: static;
  margin-left: 0.1em;
  font-size: 1.75em;
  line-height: 0;
  vertical-align: -0.42em;
}

.king-stage-label {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #e0c36a, var(--king-gold-soft));
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.king-stage-label-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

/* Masterpiece + callouts */
.king-masterpiece {
  background: #0a0a0a;
}

.king-masterpiece-inner {
  padding-top: clamp(2.5rem, 6vh, 4rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.king-masterpiece-layout {
  max-width: 980px;
  margin: 0 auto;
}

.king-masterpiece-banner {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #ffffff;
  margin: 0 0 clamp(1.25rem, 3vh, 2rem);
  padding: 0.7rem 3.5rem 0.7rem 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #c9a227 0%, #d4af37 42%, rgba(212, 175, 55, 0) 100%);
}

.king-masterpiece-diagram {
  display: flex;
  justify-content: center;
}

.king-masterpiece-compose {
  width: min(100%, 520px);
  position: relative;
}

.king-masterpiece-visual {
  position: relative;
  width: 100%;
  padding-bottom: clamp(2.75rem, 5.5vh, 3.75rem);
}

.king-masterpiece-bowl {
  position: relative;
  width: 100%;
  z-index: 1;
}

.king-masterpiece-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

/* Flat composite diagram: never wider than its column, never upscaled */
.king-masterpiece-pot {
  display: block;
  width: 100%;
  max-width: 899px;
  height: auto;
  margin: 0 auto;
}

/* Safety net so the flat diagram images can never overflow the viewport */
.king-masterpiece-pot,
.king-venn-img,
.king-mindmap-img,
.king-collective-img {
  max-width: 100%;
  height: auto;
}

.king-masterpiece-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}

.king-masterpiece-path {
  fill: none;
  stroke: #d4af37;
  stroke-width: 1.75;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-dasharray: 1.25 4.75;
  vector-effect: non-scaling-stroke;
}

.king-hotspot {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  background: #ffffff;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.king-hotspot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0a0a0a;
  transform: translate(-50%, -50%);
}

/* Hotspots sit on the gold seams of king-cup.png */
.king-hotspot--left {
  left: 32.5%;
  top: 58%;
}

.king-hotspot--center {
  left: 50%;
  top: 72%;
}

.king-hotspot--right {
  left: 67.5%;
  top: 58%;
}

.king-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.king-callout-text {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(0.88rem, 1.15vw, 1.02rem);
  line-height: 1.38;
  color: #ffffff;
  margin: 0;
  text-align: center;
  font-style: normal;
}

/* Venn — Broken does not mean diminished */
.king-venn {
  text-align: left;
}

.king-venn .king-bg {
  background-position: center center;
}

.king-venn-layout {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: min(78vh, 700px);
}

.king-venn-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.15;
  color: #f1eed0;
  margin: 0 0 clamp(1rem, 3vh, 1.75rem);
  text-align: left;
  letter-spacing: 0.01em;
}

.king-venn-diagram {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.king-venn-labels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 560px);
  min-height: clamp(220px, 36vh, 320px);
  margin: 0 auto;
  pointer-events: none;
}

.king-venn-label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.king-venn-left {
  text-align: center;
  padding-right: 10%;
  align-self: center;
}

.king-venn-center {
  text-align: center;
  color: #ffffff;
  align-self: center;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.55), 0 2px 16px rgba(0, 0, 0, 0.85);
}

.king-venn-right {
  text-align: center;
  padding-left: 10%;
  align-self: center;
}

.king-venn-caption {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
  max-width: 40rem;
  margin: clamp(1.5rem, 4vh, 2.5rem) auto 0;
}

/* Invitation */
.king-invite {
  min-height: 0;
}

.king-invite .king-bg {
  background-position: left center;
}

.king-invite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.king-invite-book {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1px;
}

/* Spotlight pool of light behind the book */
.king-invite-book::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 125%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 248, 232, 0.3) 0%,
    rgba(255, 242, 214, 0.17) 30%,
    rgba(214, 202, 178, 0.08) 52%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(22px);
  pointer-events: none;
}

.king-invite-book-img {
  position: relative;
  width: min(100%, 27rem);
  height: auto;
  filter: drop-shadow(0 1.75rem 2.5rem rgba(0, 0, 0, 0.55));
}

.king-invite-copy {
  max-width: 30rem;
  margin-left: auto;
  padding: 1.5rem 0;
}

.king-invite-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #fdfbe4;
  margin: 0 0 1.35rem;
  letter-spacing: 0.01em;
}

.king-invite-body {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  max-width: 28em;
}

/* Purchase links — store-badge buttons, grouped by region */
.king-buy {
  margin-top: 2rem;
}

.king-buy-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: #fdfbe4;
  margin: 0 0 1.25rem;
}

.king-buy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.king-buy-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.king-buy-region {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: var(--king-gold);
  margin: 0 0 0.15rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.king-store {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1rem;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(180deg, #2a4a6f 0%, #12263d 100%);
  border: 1.5px solid var(--king-gold);
  border-radius: 999px;
  box-shadow:
    0 8px 22px rgba(26, 51, 79, 0.4),
    0 0 14px rgba(212, 175, 55, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.king-store:hover,
.king-store:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  background: linear-gradient(180deg, #33587f 0%, #16304c 100%);
  box-shadow:
    0 12px 30px rgba(26, 51, 79, 0.55),
    0 0 22px rgba(212, 175, 55, 0.32);
}

.king-store-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  font-size: 1.6rem;
  line-height: 1;
}

.king-store-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.king-store-icon--amazon {
  color: #ff9900;
}

.king-store-icon--publisher {
  color: var(--king-gold);
  font-size: 1.3rem;
}

.king-store-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.king-store-kicker {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.king-store-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.king-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--king-font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.king-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.king-btn-join {
  margin-top: 2rem;
  padding: 1.05rem 2.25rem;
  color: var(--king-gold);
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--king-gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.king-btn-join:hover {
  color: #0a0a0a;
  background: var(--king-gold);
}

.king-btn-story {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.95rem 2.4rem;
  min-width: min(100%, 22rem);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  letter-spacing: 0.01em;
  text-transform: none;
  background: linear-gradient(180deg, #2a2a2a 0%, #0d0d0d 100%);
  border: 1.5px solid var(--king-gold);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.king-btn-story:hover {
  color: #ffffff;
  background: linear-gradient(180deg, #333 0%, #151515 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 18px rgba(212, 175, 55, 0.18);
}

/* More than a book — mind map */
.king-more {
  position: relative;
  background: #0a0a0a;
  min-height: auto;
  padding: clamp(4rem, 10vh, 7rem) 0;
  overflow: hidden;
}

.king-more .king-bg {
  background-position: center center;
  background-size: cover;
}

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

.king-more-header {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) minmax(14rem, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 920px;
  margin: 0 auto 2.5rem;
}

.king-more-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  color: #f1eed0;
  margin: 0;
  letter-spacing: 0.01em;
}

.king-more-intro {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  margin: 0.35rem 0 0;
  max-width: 28rem;
}

.king-mindmap {
  position: relative;
  width: min(100%, 680px);
  aspect-ratio: 600 / 420;
  margin: 1rem auto 0;
}

.king-mindmap-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.king-crack-path {
  fill: none;
  stroke: var(--king-gold);
  stroke-width: 2.25;
  stroke-linecap: round;
  opacity: 0.75;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.king-mindmap.is-visible .king-crack-path {
  stroke-dashoffset: 0;
}

.king-mindmap-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(7.5rem, 18vw, 10rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
}

.king-mindmap-bowl {
  width: clamp(4.5rem, 12vw, 6rem);
  color: var(--king-gold);
}

.king-mindmap-bowl svg {
  width: 100%;
  height: auto;
  display: block;
}

.king-mindmap-center-label {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.king-mindmap-node {
  position: absolute;
  z-index: 2;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
}

.king-mindmap-n1 { top: 6%; left: 8%; }
.king-mindmap-n2 { top: 8%; right: 4%; }
.king-mindmap-n3 { bottom: 8%; left: 6%; }
.king-mindmap-n4 { bottom: 6%; right: 8%; }

/* Collective — Part of Something Larger */
.king-collective {
  text-align: left;
}

.king-collective .king-bg {
  background-position: center center;
}

.king-collective-inner-wrap {
  display: flex;
  align-items: center;
}

.king-collective-layout {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: min(78vh, 720px);
}

.king-collective-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  color: #f1eed0;
  margin: 0 0 clamp(1.5rem, 4vh, 2.5rem);
  text-align: left;
  letter-spacing: 0.01em;
}

.king-collective-diagram {
  position: relative;
  flex: 1;
  width: min(100%, 420px);
  aspect-ratio: 1;
  margin: 0 auto;
  min-height: clamp(260px, 42vh, 420px);
}

.king-collective-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.king-collective-ring-outer {
  inset: 0;
}

.king-collective-ring-inner {
  left: 50%;
  top: 58%;
  width: 58%;
  height: 58%;
  transform: translate(-50%, -50%);
}

.king-collective-label {
  margin: 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25;
}

.king-collective-label strong {
  display: block;
  font-weight: 700;
}

.king-collective-label span {
  display: block;
  font-weight: 400;
  font-size: 0.85em;
  margin-top: 0.15em;
}

.king-collective-label-spectrum {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  width: 85%;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.king-collective-label-kintsugi {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  color: #0a0a0a;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
}

.king-collective-caption {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: #ffffff;
  text-align: center;
  max-width: 40rem;
  margin: clamp(1.75rem, 4vh, 2.75rem) auto 0;
}

/* Closing — Your story */
/* Gallery — mosaic locked to images/gallery/king/*-thumb.jpg */
.king-gallery {
  position: relative;
  background: #0a0a0a;
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(3.5rem, 9vh, 6rem);
  overflow: hidden;
}

.king-gallery-inner {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.king-gallery-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: #f1eed0;
  text-align: left;
  margin: 0 0 1.35rem;
  letter-spacing: 0.01em;
}

.king-gallery-grid {
  display: grid;
  grid-template-columns: 304fr 530fr 228fr;
  gap: 8px;
  width: 100%;
  aspect-ratio: 1078 / 623;
}

.king-gallery-col {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}

.king-gallery-col--left {
  grid-template-rows: 232fr 383fr;
}

.king-gallery-col--center {
  grid-template-rows: 148fr 298fr 158fr;
}

.king-gallery-col--right {
  grid-template-rows: 342fr 271fr;
}

.king-gallery-row {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}

.king-gallery-row--top {
  grid-template-columns: 259fr 263fr;
}

.king-gallery-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #111;
  border: 1.5px solid #c9a227;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
  position: relative;
}

.king-gallery-item:focus-visible {
  outline: 2px solid var(--king-gold, #d4af37);
  outline-offset: 2px;
  z-index: 1;
}

.king-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.king-gallery-item:hover img {
  transform: scale(1.04);
}

.king-gallery-video {
  position: relative;
}

.king-gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(42px, 5.5vw, 64px);
  height: clamp(42px, 5.5vw, 64px);
  background: rgba(212, 175, 55, 0.92);
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.king-gallery-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55em 0 0.55em 0.9em;
  border-color: transparent transparent transparent #ffffff;
  font-size: clamp(10px, 1.2vw, 14px);
}

/* King gallery lightbox */
.king-lightbox,
.king-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.king-lightbox[hidden],
.king-video-modal[hidden] {
  display: none;
}

.king-lightbox__backdrop,
.king-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.king-lightbox__dialog,
.king-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.king-lightbox__box {
  background: #fff;
  border-radius: 4px;
  padding: clamp(0.75rem, 2.5vw, 1.35rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.king-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  margin: 0 auto;
}

.king-lightbox__close,
.king-video-modal__close {
  position: absolute;
  top: -0.35rem;
  right: -0.15rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translate(40%, -40%);
}

.king-lightbox__close:hover,
.king-video-modal__close:hover {
  background: var(--king-gold, #d4af37);
}

.king-video-modal__dialog {
  width: min(960px, 100%);
}

.king-video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.king-video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.king-video-modal__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}

.king-video-modal__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.king-video-modal__poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  background: rgba(212, 175, 55, 0.95);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.king-video-modal__poster-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
}

.king-video-modal__poster:hover .king-video-modal__poster-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.king-video-modal__fallback {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  text-align: center;
}

.king-video-modal__fallback a {
  color: #d4af37;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.king-video-modal__fallback a:hover {
  text-decoration: underline;
}

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

.king-closing .king-bg {
  background-position: center center;
}

.king-closing-content {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.king-closing-quote {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.king-closing-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 6vh, 4rem);
}

/* King page responsive */
@media (max-width: 991px) {
  .king-philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 34rem;
  }

  .king-philosophy-wrap {
    min-height: 0;
  }

  .king-philosophy-footer {
    flex-direction: column;
    gap: 0.75rem;
  }

  .king-philosophy-sep {
    width: 8px;
    height: 8px;
  }

  /* Labels stack as full-width rows here, so a single full-height seam would
     run straight through them — draw it between the value cells instead */
  .king-paradigm-table::before {
    display: none;
  }

  .king-paradigm-head,
  .king-paradigm-row {
    grid-template-columns: 1fr 1fr;
  }

  .king-paradigm-head > .king-paradigm-cell:nth-child(2),
  .king-paradigm-row > .king-paradigm-cell:nth-child(2) {
    border-right: 2px solid var(--king-gold);
  }

  .king-paradigm-label {
    grid-column: 1 / -1;
    padding-bottom: 0.25rem;
    text-align: center;
  }

  .king-paradigm-head .king-paradigm-label {
    display: none;
  }

  .king-anatomy-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    gap: 2.5rem;
  }

  .king-anatomy-line {
    display: none;
  }

  .king-invite-grid {
    grid-template-columns: 1fr;
  }

  .king-invite-book {
    margin: 0 auto 2.5rem;
  }

  .king-invite-book-img {
    width: min(70%, 15rem);
  }

  .king-invite-copy {
    margin: 0 auto;
    text-align: left;
    background: rgba(8, 8, 8, 0.55);
    padding: 2rem 1.25rem;
    backdrop-filter: blur(6px);
  }

  .king-invite .king-bg {
    background-position: 20% center;
  }

  .king-invite-body {
    max-width: none;
  }

  .king-venn-layout {
    min-height: 0;
  }

  .king-venn-labels {
    min-height: 180px;
    width: min(100%, 340px);
  }

  .king-venn-label {
    font-size: 0.9rem;
  }

  .king-callouts {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
  }

  .king-masterpiece-svg,
  .king-hotspot {
    display: none;
  }

  .king-callout-text br {
    display: none;
  }

  .king-masterpiece-visual {
    width: min(100%, 320px);
  }

  .king-masterpiece-img {
    width: 100%;
  }

  .king-stage::before,
  .king-hero::before,
  .king-philosophy::before,
  .king-paradigm::before,
  .king-venn::before,
  .king-collective::before,
  .king-closing::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
  }

  .king-hero .king-bg {
    background-position: 60% center;
    animation: none;
  }

  .king-collective-layout {
    min-height: 0;
  }

  .king-collective-diagram {
    width: min(100%, 300px);
    min-height: 280px;
  }

  .king-btn-story {
    width: 100%;
    max-width: 22rem;
  }

  .king-more-header {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .king-gallery-grid {
    grid-template-columns: 1fr 1.4fr 0.85fr;
    aspect-ratio: 1078 / 680;
    gap: 6px;
  }

  .king-gallery-title {
    text-align: center;
  }

  .king-lightbox__close,
  .king-video-modal__close {
    top: 0.35rem;
    right: 0.35rem;
    transform: none;
  }
}

@media (max-width: 767px) {
  .king-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
    height: auto;
    gap: 6px;
  }

  .king-gallery-col--left,
  .king-gallery-col--center,
  .king-gallery-col--right {
    display: contents;
  }

  .king-gallery-row {
    display: contents;
  }

  .king-gallery-item {
    aspect-ratio: 4 / 3;
  }

  .king-gallery-video {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .king-gallery-col--left .king-gallery-item:last-child,
  .king-gallery-col--right .king-gallery-item {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 575px) {
  .king-brand {
    letter-spacing: 0.02em;
  }

  .king-paradigm-cell {
    padding: 0.85rem 0.75rem;
  }

  .king-mindmap {
    aspect-ratio: 1 / 1.05;
  }

  .king-mindmap-node {
    font-size: 0.95rem;
  }

  .king-more-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }

  .king-more-intro {
    max-width: none;
  }

  .king-mindmap-center-label {
    white-space: normal;
  }

  .king-buy-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .king-section {
    min-height: auto;
  }

  .king-hero,
  .king-hero-inner {
    min-height: calc(100svh - 4.25rem);
  }
}




