/*
 * EKBE Corporate Design System — Deploy v29
 * Original visual language for EKBE: editorial, precise and quietly premium.
 */

:root {
  --ekbe-ink: #0b2234;
  --ekbe-ink-2: #102f45;
  --ekbe-ink-3: #1e4258;
  --ekbe-gold: #c6a45d;
  --ekbe-gold-dark: #9f7b34;
  --ekbe-paper: #f5f2ea;
  --ekbe-paper-2: #ece8de;
  --ekbe-white: #ffffff;
  --ekbe-text: #18252e;
  --ekbe-muted: #5e6d77;
  --ekbe-line: #d7dde0;
  --ekbe-line-dark: rgba(255, 255, 255, .16);
  --ekbe-success: #2f6d62;
  --ekbe-shadow-sm: 0 10px 32px rgba(9, 32, 49, .08);
  --ekbe-shadow-lg: 0 28px 80px rgba(9, 32, 49, .16);
  --ekbe-radius-sm: 8px;
  --ekbe-radius: 14px;
  --ekbe-radius-lg: 24px;
  --ekbe-width: 1280px;
  --ekbe-font: "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  --ekbe-serif: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--ekbe-paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ekbe-paper);
  color: var(--ekbe-text);
  font-family: var(--ekbe-font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; }

a { color: inherit; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--ekbe-gold); color: var(--ekbe-ink); }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10050;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Corporate shell */

.corporate-utility {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: #071a29;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.corporate-utility-inner {
  width: min(calc(100% - 48px), var(--ekbe-width));
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.corporate-utility a {
  color: var(--ekbe-white);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: none;
}

.site-header,
.site-header.ekbe-shell,
body > header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 80px;
  padding: 0 max(24px, calc((100vw - var(--ekbe-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-bottom: 1px solid rgba(11, 34, 52, .1);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 28px rgba(11, 34, 52, .045);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(11, 34, 52, .1);
  border-radius: 6px;
  background: var(--ekbe-white);
  box-shadow: none;
}

.brand-lockup-copy { display: grid; gap: 3px; color: var(--ekbe-ink); line-height: 1; }
.brand-lockup-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 700; letter-spacing: .01em; }
.brand-lockup-copy small { max-width: 178px; color: var(--ekbe-muted); font-size: 7px; font-weight: 750; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  padding: 0 13px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #29404f;
  font-size: 13px;
  font-weight: 680;
  letter-spacing: .015em;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  background: var(--ekbe-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ekbe-ink); }

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 44px;
  margin-left: 8px;
  padding: 0 19px;
  border: 1px solid var(--ekbe-ink);
  border-radius: 5px;
  background: var(--ekbe-ink);
  color: var(--ekbe-white);
  font-weight: 720;
}

.site-nav .nav-cta:hover {
  border-color: var(--ekbe-gold);
  background: var(--ekbe-gold);
  color: var(--ekbe-ink);
}

.shell-actions,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--ekbe-line);
  border-radius: 999px;
  background: var(--ekbe-white);
}

.language-switch button {
  min-width: 34px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ekbe-muted);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--ekbe-ink);
  color: var(--ekbe-white);
}

.menu-button,
.shell-menu {
  width: 46px;
  height: 46px;
  padding: 0;
  display: none;
  place-items: center;
  border: 1px solid var(--ekbe-line);
  border-radius: 50%;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  font-size: 0;
  cursor: pointer;
}

.menu-button::before,
.menu-button::after,
.shell-menu::before,
.shell-menu::after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-button::before,
.shell-menu::before { transform: translateY(-4px); }
.menu-button::after,
.shell-menu::after { transform: translateY(4px); }
.menu-button[aria-expanded="true"]::before,
.shell-menu[aria-expanded="true"]::before { transform: rotate(45deg); }
.menu-button[aria-expanded="true"]::after,
.shell-menu[aria-expanded="true"]::after { transform: rotate(-45deg); }

/* Type and shared components */

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  color: var(--ekbe-ink);
  font-family: var(--ekbe-font);
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.8rem, 5vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 3.6vw, 4rem); }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.65rem); }

.eyebrow,
.eyebrow.light,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ekbe-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.pill {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, .7);
}

.pill span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ekbe-gold);
}

.button,
.buy-button,
.magazine-download,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover,
.buy-button:hover,
.magazine-download:hover { transform: translateY(-2px); }

button:disabled,
.button:disabled {
  opacity: .48;
  cursor: not-allowed;
  filter: saturate(.25);
  transform: none;
}

.button.primary,
.buy-button {
  border-color: var(--ekbe-gold);
  background: var(--ekbe-gold);
  color: var(--ekbe-ink);
}

.button.primary:hover,
.buy-button:hover { border-color: #d4b775; background: #d4b775; }

.button.ghost {
  border-color: currentColor;
  background: transparent;
  color: var(--ekbe-ink);
}

.button.ghost:hover { background: var(--ekbe-ink); color: var(--ekbe-white); }

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

/* Home hero */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 76px max(24px, calc((100vw - var(--ekbe-width)) / 2)) 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(198, 164, 93, .19), transparent 29%),
    linear-gradient(128deg, #071a29 0%, #0b2639 52%, #102f45 100%);
  color: var(--ekbe-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.hero::after {
  content: "29";
  position: absolute;
  right: -20px;
  bottom: -150px;
  z-index: -1;
  color: rgba(255, 255, 255, .025);
  font-size: 390px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.09em;
}

.hero-grid { display: none; }

.hero-copy { position: relative; z-index: 2; max-width: 760px; }

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ekbe-white);
  font-size: clamp(3.4rem, 5.6vw, 5.65rem);
  font-weight: 660;
  line-height: .98;
  letter-spacing: -.058em;
}

.hero-copy h1 span,
.hero-copy h1 em { display: block; }

.hero-copy h1 em {
  margin-top: 8px;
  color: var(--ekbe-gold);
  font-family: var(--ekbe-serif);
  font-size: .72em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, .44);
  color: var(--ekbe-white);
}

.hero .button.ghost:hover { border-color: var(--ekbe-white); background: var(--ekbe-white); color: var(--ekbe-ink); }

.hero-proof {
  margin-top: 54px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-proof div { min-width: 0; }

.hero-proof strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ekbe-white);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -.03em;
}

.hero-proof span {
  display: block;
  max-width: 150px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 0 6% 10%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  box-shadow: var(--ekbe-shadow-lg);
  transform: rotate(2deg);
}

.hero-visual::after {
  content: "YAYIN  /  01";
  position: absolute;
  right: -10px;
  top: 12%;
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.magazine-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(198, 164, 93, .27);
  filter: blur(80px);
}

.hero-magazine {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 26, 41, .64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.magazine-stage { position: relative; display: grid; place-items: center; }

.magazine-new {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: -12px;
  padding: 8px 12px;
  border-radius: 3px;
  background: var(--ekbe-gold);
  color: var(--ekbe-ink);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
}

.magazine-book {
  width: 255px;
  transform: rotate(2deg);
  filter: drop-shadow(0 24px 26px rgba(0, 0, 0, .32));
  transition: transform .35s ease;
}

.hero-magazine:hover .magazine-book { transform: rotate(0) translateY(-6px); }

.magazine-book img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.magazine-copy {
  margin: 22px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ekbe-white);
}

.magazine-copy small { color: rgba(255,255,255,.5); font-size: 9px; letter-spacing: .15em; }
.magazine-copy strong { font-size: 11px; letter-spacing: .05em; }

.magazine-download {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, .25);
  color: var(--ekbe-white);
  font-size: 11px;
}

.magazine-download:hover { border-color: var(--ekbe-gold); background: var(--ekbe-gold); color: var(--ekbe-ink); }
.magazine-download svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }

.logo-strip {
  width: 100%;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - var(--ekbe-width)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--ekbe-line);
  background: var(--ekbe-white);
  color: #536471;
}

.logo-strip span { white-space: nowrap; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.logo-strip i { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--ekbe-gold); }

/* Home sections */

.section,
.service-groups,
.packages,
.price-note,
.ready-products-section,
.process,
.expertise,
.about-grid,
.services-directory {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin-right: auto;
  margin-left: auto;
}

.section { padding: 118px 0 48px; }

.section.intro,
.section.package-intro,
.ready-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(32px, 8vw, 120px);
}

.section.intro h2,
.section.package-intro h2,
.ready-products-heading h2 { max-width: 760px; margin-bottom: 0; }

.section.intro > p,
.section.package-intro > p,
.ready-products-heading > p {
  margin-bottom: 4px;
  color: var(--ekbe-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-groups { padding-bottom: 108px; }

.service-group {
  margin: 0;
  border: 0;
  border-top: 1px solid #c7cfd3;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.service-group:last-child { border-bottom: 1px solid #c7cfd3; }
.service-group[open] { border-color: #c7cfd3; box-shadow: none; }

.group-heading {
  min-height: 138px;
  padding: 24px 6px;
  display: grid;
  grid-template-columns: 74px 1fr auto 44px;
  align-items: center;
  gap: 24px;
  list-style: none;
  cursor: pointer;
}

.group-heading::-webkit-details-marker { display: none; }

.group-heading > span {
  color: var(--ekbe-gold-dark);
  font-family: var(--ekbe-serif);
  font-size: 1.25rem;
}

.group-heading > span { border-radius: 4px; }

.group-heading h3 {
  margin-bottom: 7px;
  font-size: clamp(1.75rem, 3.1vw, 3.25rem);
  font-weight: 590;
}

.group-heading small { color: var(--ekbe-muted); font-size: 14px; }

.group-heading > b {
  color: var(--ekbe-muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.group-heading > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ekbe-line);
  border-radius: 50%;
  color: var(--ekbe-ink);
  font-style: normal;
  transition: transform .25s ease, background .25s ease;
}

.service-group[open] .group-heading > i { background: var(--ekbe-gold); transform: rotate(45deg); }

.service-grid {
  padding: 0 0 34px 98px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--ekbe-line);
  border-radius: var(--ekbe-radius-sm);
  background: var(--ekbe-white);
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover { transform: translateY(-4px); border-color: #b7c1c7; box-shadow: var(--ekbe-shadow-sm); }
.service-card::before { content: ""; display: block; width: 34px; height: 2px; margin-bottom: 28px; background: var(--ekbe-gold); }
.service-card strong { color: var(--ekbe-ink); font-size: 1.05rem; }
.service-card strong { font-family: var(--ekbe-font); font-weight: 700; }
.service-card p { margin: 12px 0 22px; color: var(--ekbe-muted); font-size: 14px; }
.service-card > b { color: var(--ekbe-gold-dark); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }

.expertise {
  padding: 94px clamp(28px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 130px);
  background: var(--ekbe-ink);
  color: rgba(255, 255, 255, .7);
}

.expertise h2 { color: var(--ekbe-white); }
.expertise .eyebrow { color: var(--ekbe-gold); }
.expertise-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.63); }
.expertise .text-link { min-height: auto; padding: 0 0 5px; border-bottom: 1px solid var(--ekbe-gold); border-radius: 0; color: var(--ekbe-white); }

.expertise-row { border-top: 1px solid var(--ekbe-line-dark); }
.expertise-row:last-child { border-bottom: 1px solid var(--ekbe-line-dark); }
.expertise-row summary { min-height: 78px; display: grid; grid-template-columns: 48px 1fr 24px; align-items: center; gap: 18px; list-style: none; cursor: pointer; }
.expertise-row summary::-webkit-details-marker { display: none; }
.expertise-row summary span { color: var(--ekbe-gold); font-family: var(--ekbe-serif); }
.expertise-row summary h3 { margin: 0; color: var(--ekbe-white); font-size: 1.35rem; font-weight: 560; }
.expertise-row summary b { color: var(--ekbe-gold); transition: transform .2s ease; }
.expertise-row[open] summary b { transform: rotate(45deg); }
.expertise-row > p { padding: 0 0 28px 66px; color: rgba(255,255,255,.6); }

.packages {
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.package-card {
  position: relative;
  min-height: 440px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ekbe-line);
  border-radius: var(--ekbe-radius-sm);
  background: var(--ekbe-white);
  box-shadow: none;
}

.package-card.featured { border: 2px solid var(--ekbe-gold); background: #fffdf7; }
.package-card .popular { position: absolute; top: 0; right: 0; padding: 7px 12px; background: var(--ekbe-gold); color: var(--ekbe-ink); font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.package-card > small { margin-bottom: 30px; color: var(--ekbe-gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.package-card h3 { margin-bottom: 12px; }
.package-card > p { color: var(--ekbe-muted); font-size: 14px; }
.package-price { margin: 16px 0; padding-top: 18px; border-top: 1px solid var(--ekbe-line); }
.package-price strong { display: block; color: var(--ekbe-ink); font-size: 1.65rem; }
.package-price span { color: var(--ekbe-muted); font-size: 11px; }
.package-details { margin-bottom: 18px; }
.package-details summary { color: var(--ekbe-ink); font-size: 12px; font-weight: 750; cursor: pointer; }
.package-details li { margin: 7px 0; color: var(--ekbe-muted); font-size: 12px; }
.package-card .buy-button { width: 100%; margin-top: auto; }
.package-card .buy-button,
.package-card.featured .buy-button { border-color: var(--ekbe-gold); background: var(--ekbe-gold); color: var(--ekbe-ink); }

.price-note { color: var(--ekbe-muted); font-size: 12px; }

.ready-products-section {
  margin-top: 110px;
  padding: 96px 0 0;
  border-top: 1px solid var(--ekbe-line);
  background: transparent;
}

.ready-products-heading { margin-bottom: 42px; }

.ready-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
  gap: 16px;
}

.ready-product-card,
.library-card,
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--ekbe-line);
  border-radius: var(--ekbe-radius-sm);
  background: var(--ekbe-white);
  box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ready-products-grid > .ready-product-card,
.ready-products-grid > .ready-product-card:nth-child(4),
.ready-products-grid > .ready-product-card:nth-child(5) {
  width: auto;
  max-width: none;
  grid-column: auto !important;
  grid-row: auto !important;
}

.ready-product-card:hover,
.library-card:hover,
.product-card:hover { transform: translateY(-5px); border-color: #b9c3c8; box-shadow: var(--ekbe-shadow-sm); }

.ready-product-card > img,
.library-card > img,
.product-card > img {
  width: calc(100% + 44px);
  max-width: none;
  height: 220px;
  margin: -22px -22px 24px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: #e7ebed;
}

#ready-products-grid .ready-product-card { padding: 0; }
#ready-products-grid .ready-product-cover { width: 100%; margin: 0; aspect-ratio: 16 / 9; background: var(--ekbe-ink); }
#ready-products-grid .ready-product-cover img { width: 100%; height: 100%; margin: 0; display: block; object-fit: cover; }
#ready-products-grid .ready-product-body { padding: 24px; }
#ready-products-grid .ready-product-body h3 { min-height: 2.4em; margin: 10px 0 8px; color: var(--ekbe-ink); font-family: var(--ekbe-font); font-size: 1.25rem; }
#ready-products-grid .ready-product-body > p { min-height: 4.8em; color: var(--ekbe-muted); font-size: 13px; }
#ready-products-grid .ready-product-body > small { color: var(--ekbe-gold-dark); font-size: 8px; letter-spacing: .12em; }
#ready-products-grid .ready-product-price strong { color: var(--ekbe-ink); font-family: var(--ekbe-serif); font-size: 1.35rem; }
#ready-products-grid .ready-product-price button { border-radius: 4px; background: var(--ekbe-ink); }

.ready-product-card .eyebrow,
.library-card .eyebrow,
.product-card .eyebrow {
  margin-bottom: 13px;
  color: var(--ekbe-gold-dark);
  font-size: 8px;
  letter-spacing: .12em;
}

.ready-product-card .eyebrow::before,
.library-card .eyebrow::before,
.product-card .eyebrow::before { display: none; }

.ready-product-card h3,
.library-card h3,
.product-card h3 { min-height: 2.3em; margin-bottom: 12px; font-size: 1.32rem; }
.ready-product-card > p:not(.eyebrow),
.library-card > p:not(.eyebrow),
.product-card > p:not(.eyebrow) { min-height: 4.8em; color: var(--ekbe-muted); font-size: 13px; }
.ready-product-card > strong { display: block; margin: 20px 0; color: var(--ekbe-ink); font-size: 1.2rem; }
.ready-product-card .hero-actions { margin-top: 18px; }
.ready-product-card .button { min-height: 43px; padding: 0 16px; font-size: 12px; }
.ready-products-note { margin: 26px 0 0; padding: 16px 20px; border-left: 3px solid var(--ekbe-gold); background: rgba(255,255,255,.65); color: var(--ekbe-muted); font-size: 12px; }

.process {
  margin-top: 110px;
  padding: 94px clamp(28px, 5vw, 70px);
  background: var(--ekbe-white);
  border: 1px solid var(--ekbe-line);
}

.process-heading { max-width: 700px; margin-bottom: 54px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { min-height: 220px; padding: 0 28px; border-left: 1px solid var(--ekbe-line); }
.process-step { border-top: 0; border-right: 0; border-bottom: 0; border-radius: 0; background: transparent; }
.process-step:first-child { padding-left: 0; border-left: 0; }
.process-step > span { display: block; margin-bottom: 50px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); font-size: 1.3rem; }
.process-step h3 { font-size: 1.25rem; }
.process-step p { color: var(--ekbe-muted); font-size: 13px; }

.cta,
.cta-panel {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 110px auto 0;
  padding: clamp(46px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  border: 0;
  border-radius: 0;
  background: var(--ekbe-ink);
  box-shadow: none;
  color: rgba(255, 255, 255, .68);
}

.cta h2,
.cta-panel h2 { max-width: 800px; margin-bottom: 14px; color: var(--ekbe-white); }
.cta .eyebrow,
.cta-panel .eyebrow { color: var(--ekbe-gold); }
.cta p,
.cta-panel p { max-width: 720px; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta .button.lime,
.cta-panel .button { border-color: var(--ekbe-gold); background: var(--ekbe-gold); color: var(--ekbe-ink); }
.cta-actions > a:not(.button) { color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }

/* Interior page heroes and services */

main { min-height: 55vh; }

.services-hero,
.page-hero,
.about-hero,
.blog-hero,
.library-hero {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  min-height: 470px;
  padding: 96px max(24px, calc((100vw - var(--ekbe-width)) / 2));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(198,164,93,.2), transparent 24%),
    linear-gradient(128deg, #071a29, #102f45);
  color: rgba(255,255,255,.7);
}

.services-hero::before,
.page-hero::before,
.about-hero::before,
.blog-hero::before,
.library-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
}

.services-hero > *,
.page-hero > *,
.about-hero > *,
.blog-hero > *,
.library-hero > * { position: relative; z-index: 1; }

.services-hero h1,
.page-hero h1,
.about-hero h1,
.blog-hero h1,
.library-hero h1 { max-width: 900px; margin-bottom: 22px; color: var(--ekbe-white); font-size: clamp(3rem, 5.8vw, 5.8rem); }

.services-hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.about-hero p:not(.eyebrow),
.blog-hero p:not(.eyebrow),
.library-hero p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.66); font-size: 1.08rem; }

.services-hero .button.ghost,
.page-hero .button.ghost,
.about-hero .button.ghost,
.blog-hero .button.ghost { color: var(--ekbe-white); }

.library-tools { background: rgba(245, 242, 234, .96); border-color: var(--ekbe-line); }
.library-tools-inner {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 2.3fr);
  align-items: start;
  gap: 14px;
}
.library-search { width: 100%; min-width: 0; border-radius: 0; border-color: var(--ekbe-line); }
.library-filter-scroll { display: flex; flex-wrap: wrap; gap: 10px; }
.library-filter { flex: 0 0 auto; border-radius: 999px; white-space: nowrap; }
.library-filter.active { border-color: var(--ekbe-ink); background: var(--ekbe-ink); color: var(--ekbe-white); }

.services-hero-inner { width: min(100%, var(--ekbe-width)); margin: 0 auto; }
.services-hero .hero-proof { max-width: 720px; }

.services-quick-nav,
.section-index {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-right: 1px solid var(--ekbe-line);
  background: var(--ekbe-white);
}

.services-quick-nav a,
.section-index a {
  min-height: 86px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--ekbe-line);
  border-bottom: 1px solid var(--ekbe-line);
  color: var(--ekbe-ink);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.services-quick-nav a:hover,
.section-index a:hover { background: var(--ekbe-gold); color: var(--ekbe-ink); }

.services-directory { padding: 86px 0 0; }

.service-section {
  margin: 0 0 32px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--ekbe-line);
  border-radius: 0;
  background: var(--ekbe-white);
  box-shadow: none;
}

.service-overview,
.service-section-head {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.2fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
}

.service-kicker { color: var(--ekbe-gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-section-head h2,
.service-overview h2 { margin-bottom: 16px; }
.service-section-head > p,
.service-overview > p { color: var(--ekbe-muted); }

.service-items,
.service-outcomes,
.service-deliverables {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ekbe-line);
  border: 1px solid var(--ekbe-line);
}

.service-item,
.service-outcomes li,
.service-deliverables li {
  min-height: 150px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: var(--ekbe-white);
  list-style: none;
}

.service-item strong { color: var(--ekbe-ink); font-size: 1.05rem; }
.service-item p { margin: 10px 0 0; color: var(--ekbe-muted); font-size: 13px; }

.related-title { margin: 54px 0 22px; padding-top: 34px; border-top: 1px solid var(--ekbe-line); font-size: 1.35rem; }
.related-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-product { min-width: 0; padding: 24px; border: 1px solid var(--ekbe-line); background: #faf9f5; }
.related-product small { color: var(--ekbe-gold-dark); font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.related-product h3 { min-height: 2.3em; margin: 18px 0 10px; font-size: 1.1rem; }
.related-product p { color: var(--ekbe-muted); font-size: 12px; }
.related-product a { color: var(--ekbe-ink); font-size: 12px; font-weight: 800; text-decoration-color: var(--ekbe-gold); text-underline-offset: 4px; }

.category-tabs {
  margin: 0 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--ekbe-line);
  border-radius: 4px;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.category-tab.active,
.category-tab:hover { border-color: var(--ekbe-ink); background: var(--ekbe-ink); color: var(--ekbe-white); }

.process-section,
.faq-section,
.principles-section,
.about-section,
.blog-feature,
.editorial-section {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 104px auto 0;
}

.process-grid,
.principles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; border: 1px solid var(--ekbe-line); background: var(--ekbe-line); }
.process-section .process-step,
.principles-grid > * { min-height: 220px; padding: 28px; border: 0; background: var(--ekbe-white); }
.process-section .process-step:first-child { padding: 28px; }

.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-grid details { padding: 0 24px; border: 1px solid var(--ekbe-line); background: var(--ekbe-white); }
.faq-grid summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ekbe-ink); font-weight: 750; cursor: pointer; }
.faq-grid details p { padding-bottom: 22px; color: var(--ekbe-muted); }

/* About, blog, library and content pages */

.about-grid { padding: 90px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.about-card { min-height: 340px; padding: 42px; border: 1px solid var(--ekbe-line); border-radius: 0; background: var(--ekbe-white); box-shadow: none; }
.about-card p:not(.eyebrow), .about-card li { color: var(--ekbe-muted); }

.blog-toolbar,
.content-filters {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 42px auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--ekbe-line);
  background: var(--ekbe-white);
}

.blog-filter,
[data-filter] {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--ekbe-line);
  border-radius: 4px;
  background: transparent;
  color: var(--ekbe-ink);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.blog-filter.active,
[data-filter].active,
.blog-filter:hover,
[data-filter]:hover { border-color: var(--ekbe-ink); background: var(--ekbe-ink); color: var(--ekbe-white); }

.blog-grid,
.articles-grid { width: min(calc(100% - 48px), var(--ekbe-width)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.blog-card,
.article-card { min-height: 310px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--ekbe-line); background: var(--ekbe-white); }
.blog-card .eyebrow,
.article-card .eyebrow { font-size: 8px; }
.blog-card p:not(.eyebrow),
.article-card p:not(.eyebrow) { color: var(--ekbe-muted); font-size: 13px; }
.blog-card .button,
.article-card .button { width: fit-content; margin-top: auto; }

.library-shell,
.library-main,
.catalog-section,
.product-page,
.product-detail,
.legal-page,
.membership-page,
.article-page {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin-right: auto;
  margin-left: auto;
}

article[class*="article"],
.blog-article,
.legal-card {
  color: var(--ekbe-text);
}

.blog-article,
.article-page,
.legal-page { max-width: 900px; padding-top: 80px; padding-bottom: 80px; }

.blog-article p,
.article-page p,
.legal-page p,
.legal-page li { color: #40525e; }

.blog-article h1,
.article-page h1,
.legal-page h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }

.store-product {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 0 auto;
  padding: 90px 0 30px;
}

.store-product .product-hero {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
  background: transparent;
}

.store-product .product-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--ekbe-radius);
  box-shadow: var(--ekbe-shadow-sm);
}

.store-product .crumb { color: var(--ekbe-gold-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.store-product .product-badge { display: inline-flex; margin: 22px 0 12px; padding: 7px 12px; border-radius: 3px; background: var(--ekbe-paper-2); color: var(--ekbe-ink); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.store-product .product-info h1 { margin: 0 0 20px; color: var(--ekbe-ink); font-size: clamp(2.7rem, 5vw, 5rem); }
.store-product .product-lead { color: var(--ekbe-muted); font-size: 1.05rem; }
.store-product .product-price { margin: 24px 0; color: var(--ekbe-ink); font-family: var(--ekbe-serif); font-size: 2.2rem; font-weight: 700; }
.store-product .buy-now { width: fit-content; min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ekbe-gold); border-radius: 5px; background: var(--ekbe-gold); color: var(--ekbe-ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.store-product .secure-note { display: block; margin-top: 16px; color: var(--ekbe-muted); }
.store-product .product-details { margin-top: 64px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.store-product .detail-card { padding: 34px; border: 1px solid var(--ekbe-line); border-radius: var(--ekbe-radius-sm); background: var(--ekbe-white); box-shadow: none; }
.store-product .detail-card h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.store-product .detail-card p,
.store-product .detail-card li { color: var(--ekbe-muted); }

.legal-main { width: min(calc(100% - 48px), 930px); margin: 0 auto; }
.legal-hero { border-radius: var(--ekbe-radius-lg); background: linear-gradient(130deg, var(--ekbe-ink), #124769); }
.legal-hero h1 { color: var(--ekbe-white); }
.legal-hero .eyebrow { color: var(--ekbe-gold); }
.legal-hero p { color: rgba(255,255,255,.68); }
.legal-card { border-radius: var(--ekbe-radius); box-shadow: none; }

/* Dialogs, notices and helper UI */

.language-modal,
.payment-modal,
.product-preview-modal,
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 17, 27, .82);
  backdrop-filter: blur(10px);
}

.language-modal[hidden],
.payment-modal[hidden],
.product-preview-modal[hidden],
.lead-popup[hidden] { display: none; }

.language-dialog,
.payment-dialog,
.product-preview-dialog,
.lead-box {
  overflow: auto;
  max-width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--ekbe-line);
  border-radius: var(--ekbe-radius);
  background: var(--ekbe-white);
  color: var(--ekbe-text);
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}

.language-dialog { width: min(540px, 100%); text-align: center; }
.language-dialog .modal-logo { width: 230px; height: 60px; object-fit: contain; }
.language-dialog > div { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.language-dialog button { min-height: 104px; border: 1px solid var(--ekbe-line); border-radius: 6px; background: var(--ekbe-paper); color: var(--ekbe-ink); cursor: pointer; }
.language-dialog button:hover { border-color: var(--ekbe-gold); background: #fffaf0; }

.cookie-consent {
  position: fixed;
  z-index: 9990;
  right: 24px;
  bottom: 24px;
  left: auto;
  width: min(560px, calc(100% - 48px));
  padding: 24px;
  border: 1px solid var(--ekbe-line);
  border-radius: var(--ekbe-radius);
  background: var(--ekbe-white);
  color: var(--ekbe-text);
  box-shadow: var(--ekbe-shadow-lg);
}

.cookie-consent h2 { margin-bottom: 8px; font-size: 1.05rem; }
.cookie-consent p { color: var(--ekbe-muted); font-size: 12px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions button,
.cookie-actions a { min-height: 40px; padding: 0 13px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ekbe-line); border-radius: 4px; background: var(--ekbe-white); color: var(--ekbe-ink); font-size: 11px; font-weight: 750; text-decoration: none; cursor: pointer; }
.cookie-actions .cookie-accept { border-color: var(--ekbe-gold); background: var(--ekbe-gold); }

.cookie-settings-link {
  position: fixed;
  z-index: 990;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--ekbe-line);
  border-radius: 999px;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  box-shadow: var(--ekbe-shadow-sm);
  font-size: 10px;
  font-weight: 750;
}

.visitor-stats { display: none; }

.ekbe-assistant,
[class*="assistant-widget"] { filter: saturate(.6); }

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 84px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: var(--ekbe-ink);
  color: var(--ekbe-white);
  box-shadow: var(--ekbe-shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }

/* Footer */

.corporate-footer,
.ekbe-legal-nav {
  width: 100%;
  margin-top: 110px;
  padding: 78px max(24px, calc((100vw - var(--ekbe-width)) / 2)) 26px;
  border: 0;
  background: #061722;
  color: rgba(255, 255, 255, .62);
}

.corporate-footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(32px, 6vw, 88px);
  padding-bottom: 58px;
}

.corporate-footer-brand img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: left;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: var(--ekbe-white);
  filter: none;
  opacity: 1;
}

.corporate-footer-brand p { max-width: 360px; margin: 24px 0; color: rgba(255,255,255,.58); }
.corporate-footer-brand a { color: var(--ekbe-white); text-decoration-color: var(--ekbe-gold); text-underline-offset: 5px; }

.corporate-footer-column strong {
  display: block;
  margin-bottom: 18px;
  color: var(--ekbe-white);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.corporate-footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  text-decoration: none;
}

.corporate-footer-column a:hover { color: var(--ekbe-gold); }

.corporate-footer-bottom {
  min-height: 66px;
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.42);
  font-size: 11px;
}

.corporate-footer-bottom p { margin: 0; }

/* v29 editorial modules and redesigned interior pages */

.corporate-intro-block,
.editorial-showcase,
.about-positioning,
.publishing-section,
.featured-editorial,
.future-tech-banner,
.editorial-library {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin-right: auto;
  margin-left: auto;
}

.corporate-intro-block {
  padding: 112px 0;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 9vw, 132px);
  align-items: start;
}

.corporate-intro-copy h2 { max-width: 590px; }
.corporate-intro-copy > p:not(.eyebrow) { max-width: 560px; color: var(--ekbe-muted); }
.corporate-intro-copy .text-link { min-height: auto; margin-top: 16px; padding: 0 0 5px; border-bottom: 1px solid var(--ekbe-gold); border-radius: 0; color: var(--ekbe-ink); }

.corporate-intro-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--ekbe-line);
  background: var(--ekbe-line);
}

.corporate-intro-cards a {
  min-height: 220px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.corporate-intro-cards a:hover { background: #fffaf0; }
.corporate-intro-cards span { margin-bottom: 50px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }
.corporate-intro-cards strong { margin-bottom: 10px; font-size: 1.18rem; }
.corporate-intro-cards small { color: var(--ekbe-muted); font-size: 12px; }

.home-programs {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 104px auto 0;
  padding: 96px 0;
  border-top: 1px solid var(--ekbe-line);
  border-bottom: 1px solid var(--ekbe-line);
}

.home-programs-head {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
}

.home-programs-head h2 { max-width: 820px; margin-bottom: 0; }
.home-programs-head > p { margin-bottom: 4px; color: var(--ekbe-muted); }
.home-programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--ekbe-line); background: var(--ekbe-line); }
.home-programs-grid a { min-height: 240px; padding: 30px; display: flex; flex-direction: column; background: var(--ekbe-white); color: var(--ekbe-ink); text-decoration: none; transition: background .22s ease, transform .22s ease; }
.home-programs-grid a:hover { background: #fffaf0; }
.home-programs-grid span { margin-bottom: 52px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); font-size: 1.05rem; }
.home-programs-grid strong { margin-bottom: 12px; font-size: 1.22rem; line-height: 1.25; }
.home-programs-grid small { margin-top: auto; color: var(--ekbe-muted); font-size: 12px; line-height: 1.55; }
.home-programs > .text-link { min-height: auto; margin-top: 26px; padding: 0 0 5px; border-bottom: 1px solid var(--ekbe-gold); border-radius: 0; color: var(--ekbe-ink); }

.editorial-showcase { margin-top: 110px; padding: 96px 0; border-top: 1px solid var(--ekbe-line); }
.editorial-showcase-heading,
.section-heading.split-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .6fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: end;
}

.editorial-showcase-heading h2,
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.editorial-showcase-heading > p,
.section-heading > p,
.split-heading > p { margin-bottom: 4px; color: var(--ekbe-muted); }

.editorial-showcase-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 14px; }
.editorial-lead { min-height: 540px; padding: 42px; display: grid; grid-template-columns: 210px 1fr; gap: 40px; align-items: center; background: var(--ekbe-ink); color: rgba(255,255,255,.68); }
.editorial-lead img { width: 210px; aspect-ratio: 3 / 4; object-fit: cover; box-shadow: 0 24px 48px rgba(0,0,0,.3); transform: rotate(-2deg); }
.editorial-lead h3 { color: var(--ekbe-white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.editorial-lead .eyebrow { color: var(--ekbe-gold); }
.editorial-lead p:not(.eyebrow) { color: rgba(255,255,255,.6); }
.editorial-list { display: grid; grid-template-rows: repeat(3, 1fr) auto; border: 1px solid var(--ekbe-line); background: var(--ekbe-white); }
.editorial-list > a { min-height: 120px; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--ekbe-line); color: var(--ekbe-ink); text-decoration: none; }
.editorial-list > a:hover { background: #fffaf0; }
.editorial-list span { color: var(--ekbe-gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.editorial-list strong { margin: 8px 0 4px; font-size: 1.12rem; }
.editorial-list small { color: var(--ekbe-muted); }
.editorial-list .editorial-all { min-height: 76px; flex-direction: row; align-items: center; justify-content: space-between; border-bottom: 0; background: var(--ekbe-paper-2); font-weight: 750; }

.services-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--ekbe-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
}

.services-hero .hero-copy { max-width: 820px; }
.hero-lead { max-width: 720px; color: rgba(255,255,255,.68); font-size: 1.06rem; }
.hero-service-line { margin: 34px 0 0; padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.hero-service-line li { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-service-line li::before { content: "·"; margin-right: 10px; color: var(--ekbe-gold); }

.services-hero .hero-proof {
  width: 100%;
  margin: 0;
  padding: 30px;
  display: block;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
}

.hero-proof-label { margin-bottom: 24px; color: var(--ekbe-gold); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.services-hero .hero-proof ol { margin: 0; padding: 0; list-style: none; }
.services-hero .hero-proof li { padding: 17px 0; display: grid; grid-template-columns: 54px 1fr; gap: 0 16px; border-top: 1px solid rgba(255,255,255,.13); }
.services-hero .hero-proof li > span { grid-row: 1 / 3; color: var(--ekbe-gold); font-family: var(--ekbe-serif); font-size: 1.15rem; }
.services-hero .hero-proof li > strong { margin: 0; color: var(--ekbe-white); font-size: 14px; }
.services-hero .hero-proof li > small { color: rgba(255,255,255,.48); font-size: 10px; }

.corporate-services-page .services-quick-nav,
.corporate-about-page .services-quick-nav {
  margin-top: 0;
  padding: 88px 0 0;
  display: block;
  border: 0;
  background: transparent;
}

.section-heading { margin-bottom: 38px; }
.section-heading:not(.split-heading) { max-width: 820px; }
.section-heading > p:not(.eyebrow) { color: var(--ekbe-muted); }

.service-area-index,
.expertise-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--ekbe-line);
  background: var(--ekbe-line);
}

.service-area-index a,
.expertise-index a {
  min-height: 185px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  border: 0;
  background: var(--ekbe-white);
  color: var(--ekbe-ink);
  text-align: left;
  text-decoration: none;
}

.service-area-index a:hover,
.expertise-index a:hover { background: #fffaf0; color: var(--ekbe-ink); }
.service-area-index span,
.expertise-index span { margin-bottom: 44px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }
.service-area-index strong,
.expertise-index strong { margin-bottom: 8px; line-height: 1.3; }
.service-area-index small,
.expertise-index small { color: var(--ekbe-muted); line-height: 1.5; }

.corporate-services-page .service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);
  gap: clamp(36px, 7vw, 90px);
}

.corporate-services-page .service-section-head { display: block; }
.corporate-services-page .service-section-head h2 { font-size: clamp(2rem, 3.2vw, 3.25rem); }
.corporate-services-page .service-outcomes { margin: 0; padding: 26px; display: block; border: 1px solid var(--ekbe-line); background: #faf9f5; }
.corporate-services-page .service-outcomes > p { color: var(--ekbe-gold-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.corporate-services-page .service-outcomes ul { margin: 0; padding: 0; list-style: none; }
.corporate-services-page .service-outcomes li { min-height: 0; padding: 13px 0; border-top: 1px solid var(--ekbe-line); background: transparent; color: var(--ekbe-ink); font-size: 13px; }
.service-capabilities { margin-top: 56px; }
.service-block-title { margin-bottom: 22px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.service-block-title h3 { max-width: 620px; margin: 0; }
.corporate-services-page .service-item > span { display: block; margin-bottom: 28px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }
.corporate-services-page .service-deliverables { margin-top: 38px; padding: 30px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; border: 0; background: var(--ekbe-ink); }
.corporate-services-page .service-deliverables h3 { color: var(--ekbe-white); }
.corporate-services-page .service-deliverables ul { margin: 0; padding: 0; list-style: none; }
.corporate-services-page .service-deliverables li { min-height: 0; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.14); background: transparent; color: rgba(255,255,255,.68); font-size: 13px; }

.expanded-services-section {
  width: min(calc(100% - 48px), var(--ekbe-width));
  margin: 112px auto 0;
  padding-top: 0;
  scroll-margin-top: 120px;
}

.expanded-services-head {
  padding: clamp(38px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: end;
  background: var(--ekbe-ink);
  color: rgba(255,255,255,.66);
}

.expanded-services-head .eyebrow { color: var(--ekbe-gold); }
.expanded-services-head h2 { max-width: 820px; margin-bottom: 0; color: var(--ekbe-white); }
.expanded-services-head > p { margin-bottom: 4px; }

.expanded-program-index { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ekbe-line); border-top: 0; background: var(--ekbe-line); gap: 1px; }
.expanded-program-index a { min-height: 82px; padding: 18px 20px; display: flex; align-items: center; gap: 12px; background: var(--ekbe-white); color: var(--ekbe-ink); font-size: 12px; font-weight: 720; line-height: 1.35; text-decoration: none; }
.expanded-program-index a:hover { background: #fffaf0; }
.expanded-program-index span { color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }

.expanded-services-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.expanded-service-card { padding: clamp(30px, 4vw, 48px); border: 1px solid var(--ekbe-line); background: var(--ekbe-white); scroll-margin-top: 120px; }
.expanded-service-card:nth-child(3n + 2) { background: #faf8f1; }
.program-number { margin-bottom: 38px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); font-size: 1.08rem; }
.expanded-service-card h3 { max-width: 620px; margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.03; }
.program-lead { color: var(--ekbe-muted); font-size: 1rem; }
.program-result { margin: 28px 0; padding: 22px; border-left: 3px solid var(--ekbe-gold); background: #fff8e8; color: var(--ekbe-ink); font-size: 13px; line-height: 1.65; }
.program-result strong { display: block; margin-bottom: 6px; color: var(--ekbe-gold-dark); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.program-result p { margin: 0; color: var(--ekbe-ink); font-size: 13px; }
.program-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.program-columns h4 { margin-bottom: 12px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.program-columns ul { margin: 0; padding: 0; list-style: none; }
.program-columns li { padding: 9px 0 9px 15px; position: relative; border-top: 1px solid var(--ekbe-line); color: var(--ekbe-muted); font-size: 12px; line-height: 1.5; }
.program-columns li::before { content: "·"; position: absolute; left: 0; color: var(--ekbe-gold-dark); }
.program-meta { margin: 28px 0 0; padding-top: 20px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 18px; border-top: 1px solid var(--ekbe-line); }
.program-meta div { margin: 0; }
.program-meta p { margin: 0; color: var(--ekbe-muted); font-size: 12px; line-height: 1.55; }
.program-meta p strong { display: block; margin-bottom: 5px; color: var(--ekbe-gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.program-meta dt { margin-bottom: 5px; color: var(--ekbe-gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.program-meta dd { margin: 0; color: var(--ekbe-ink); font-size: 12px; line-height: 1.5; }
.program-boundary { margin-top: 22px; padding: 24px; border: 1px solid #e7cf91; background: #fff6d9; color: #6b4a06; font-size: 12px; line-height: 1.65; }

.about-positioning,
.publishing-section,
.featured-editorial,
.editorial-library { margin-top: 104px; }

.positioning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--ekbe-line); background: var(--ekbe-line); }
.positioning-statement { min-height: 300px; padding: 34px; background: var(--ekbe-white); }
.statement-index,
.principle-card > span { display: block; margin-bottom: 62px; color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }
.positioning-statement p,
.principle-card p { color: var(--ekbe-muted); font-size: 13px; }
.corporate-about-page .principles-grid { grid-template-columns: repeat(4, 1fr); }
.principle-card { min-height: 290px; }

.publishing-grid { padding: clamp(34px, 6vw, 76px); display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(44px, 8vw, 110px); background: var(--ekbe-ink); color: rgba(255,255,255,.64); }
.publishing-copy h2 { color: var(--ekbe-white); }
.publishing-copy .eyebrow { color: var(--ekbe-gold); }
.publishing-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.publishing-actions .button.ghost { color: var(--ekbe-white); }
.publishing-framework { border-top: 1px solid rgba(255,255,255,.15); }
.publishing-framework article { padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 0 16px; border-bottom: 1px solid rgba(255,255,255,.15); }
.publishing-framework span { grid-row: 1 / 3; color: var(--ekbe-gold); font-family: var(--ekbe-serif); }
.publishing-framework h3 { margin-bottom: 7px; color: var(--ekbe-white); }
.publishing-framework p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; }

.proof-strip { width: min(calc(100% - 48px), var(--ekbe-width)); margin: 80px auto 0; padding: 32px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ekbe-line); border-bottom: 1px solid var(--ekbe-line); }
.proof-strip > div { padding: 0 30px; border-left: 1px solid var(--ekbe-line); }
.proof-strip > div:first-child { padding-left: 0; border-left: 0; }
.proof-strip strong { display: block; color: var(--ekbe-ink); font-size: 1.8rem; }
.proof-strip span { color: var(--ekbe-muted); font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }

.corporate-services-page .cta,
.corporate-about-page .cta {
  padding: 0;
  display: block;
  background: transparent;
}

.corporate-services-page .cta > .cta-panel,
.corporate-about-page .cta > .cta-panel { width: 100%; margin: 0; }
.cta-brief-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ekbe-line); border-top: 0; background: var(--ekbe-white); list-style: none; }
.cta-brief-list li { min-height: 78px; padding: 18px; display: flex; align-items: center; gap: 12px; border-left: 1px solid var(--ekbe-line); color: var(--ekbe-muted); font-size: 12px; }
.cta-brief-list li:first-child { border-left: 0; }
.cta-brief-list span { color: var(--ekbe-gold-dark); font-family: var(--ekbe-serif); }

.featured-story { min-height: 430px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ekbe-ink); color: rgba(255,255,255,.66); }
.featured-story-copy { padding: clamp(36px, 6vw, 76px); }
.featured-story-copy h3 { max-width: 620px; color: var(--ekbe-white); font-size: clamp(2rem, 4vw, 4rem); }
.story-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; color: var(--ekbe-gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.featured-story-outline { margin: 0; padding: clamp(34px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.05); list-style: none; }
.featured-story-outline li { padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; border-top: 1px solid rgba(255,255,255,.14); }
.featured-story-outline li > span { color: var(--ekbe-gold); font-family: var(--ekbe-serif); }
.featured-story-outline strong { display: block; color: var(--ekbe-white); }
.featured-story-outline small { color: rgba(255,255,255,.5); }

.future-tech-banner { margin-top: 18px; padding: clamp(36px, 6vw, 76px); display: grid; grid-template-columns: 240px 1fr; gap: clamp(42px, 8vw, 110px); align-items: center; background: #112f44; color: rgba(255,255,255,.65); }
.future-tech-visual img { width: 230px; aspect-ratio: 3 / 4; object-fit: cover; box-shadow: 0 24px 46px rgba(0,0,0,.3); transform: rotate(-3deg); }
.future-tech-copy h2 { color: var(--ekbe-white); }
.future-tech-copy .eyebrow { color: var(--ekbe-gold); }

.filter-bar { margin: 0 0 14px; padding: 14px; display: flex; flex-wrap: wrap; gap: 8px; border: 1px solid var(--ekbe-line); background: var(--ekbe-white); }
.filter-chip { min-height: 42px; padding: 0 14px; border: 1px solid var(--ekbe-line); border-radius: 3px; background: transparent; color: var(--ekbe-ink); font-size: 11px; font-weight: 750; cursor: pointer; }
.filter-chip span { color: var(--ekbe-gold-dark); }
.filter-chip.is-active,
.filter-chip.active,
.filter-chip:hover { border-color: var(--ekbe-ink); background: var(--ekbe-ink); color: var(--ekbe-white); }
.filter-status { margin-bottom: 24px; color: var(--ekbe-muted); font-size: 11px; }
.article-grid .article-card { min-height: 310px; display: flex; flex-direction: column; }
.article-grid .article-card .button { width: fit-content; margin-top: auto; }
.article-card[hidden] { display: none; }

.corporate-blog-page .cta > .cta-panel { width: 100%; }

/* Responsive */

@media (max-width: 1180px) {
  .site-header,
  .site-header.ekbe-shell { padding-right: 24px; padding-left: 24px; }
  .brand { min-width: 210px; gap: 9px; }
  .brand-logo { width: 56px; height: 56px; flex-basis: 56px; }
  .brand-lockup-copy strong { font-size: 21px; }
  .brand-lockup-copy small { max-width: 140px; font-size: 6px; }
  .site-nav a { padding-right: 9px; padding-left: 9px; font-size: 12px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(330px, .72fr); gap: 38px; }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .package-card { min-height: 400px; }
  .process-grid,
  .principles-grid { grid-template-columns: repeat(3, 1fr); }
  .corporate-footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; }
}

@media (max-width: 980px) {
  .corporate-utility { display: none; }
  .site-header,
  .site-header.ekbe-shell { min-height: 74px; }
  .menu-button,
  .shell-menu { position: relative; display: grid; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--ekbe-line);
    background: var(--ekbe-white);
    box-shadow: var(--ekbe-shadow-lg);
  }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 52px; padding: 0 12px; border-bottom: 1px solid var(--ekbe-line); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin: 12px 0 0; justify-content: center; border-bottom: 0; }
  .hero { min-height: auto; padding-top: 70px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 500px; }
  .hero-visual::before { inset: 8% 12%; }
  .hero-magazine { width: min(100%, 500px); }
  .section.intro,
  .section.package-intro,
  .ready-products-heading,
  .expertise,
  .service-overview,
  .service-section-head { grid-template-columns: 1fr; }
  .expertise { gap: 48px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .ready-products-grid,
  .blog-grid,
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .process-step:nth-child(3) { padding-left: 0; border-left: 0; }
  .services-quick-nav,
  .section-index { grid-template-columns: repeat(3, 1fr); }
  .related-products { grid-template-columns: repeat(2, 1fr); }
  .corporate-footer-main { grid-template-columns: repeat(2, 1fr); }
  .corporate-intro-block { grid-template-columns: 1fr; }
  .home-programs-head,
  .expanded-services-head { grid-template-columns: 1fr; }
  .home-programs-grid { grid-template-columns: repeat(2, 1fr); }
  .expanded-services-grid { grid-template-columns: 1fr; }
  .expanded-program-index { grid-template-columns: repeat(2, 1fr); }
  .editorial-showcase-grid { grid-template-columns: 1fr; }
  .services-hero-inner { grid-template-columns: 1fr; }
  .services-hero .hero-proof { max-width: 620px; }
  .service-area-index,
  .expertise-index { grid-template-columns: repeat(3, 1fr); }
  .corporate-services-page .service-overview { grid-template-columns: 1fr; }
  .positioning-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-about-page .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .publishing-grid { grid-template-columns: 1fr; }
  .featured-story { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 84px; }
  .site-header,
  .site-header.ekbe-shell { min-height: 68px; padding: 0 16px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-lockup-copy strong { font-size: 20px; }
  .brand-lockup-copy small { display: none; }
  .language-switch { display: none; }
  .hero { padding: 58px 20px 54px; gap: 42px; }
  .hero-copy h1 { font-size: clamp(2.75rem, 13.5vw, 4.15rem); }
  .hero-text { font-size: .98rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 40px; grid-template-columns: 1fr; gap: 18px; }
  .hero-proof div { display: grid; grid-template-columns: 80px 1fr; align-items: center; }
  .hero-proof span { max-width: none; }
  .hero-visual { min-height: 420px; }
  .hero-visual::before { inset: 3%; }
  .hero-magazine { padding: 20px; }
  .magazine-book { width: 210px; }
  .logo-strip { min-height: 58px; padding: 0 20px; justify-content: flex-start; overflow-x: auto; }
  .section,
  .service-groups,
  .packages,
  .price-note,
  .ready-products-section,
  .process,
  .expertise,
  .about-grid,
  .services-directory,
  .cta,
  .cta-panel,
  .services-quick-nav,
  .section-index,
  .process-section,
  .faq-section,
  .principles-section,
  .about-section,
  .blog-feature,
  .editorial-section,
  .blog-toolbar,
  .content-filters,
  .blog-grid,
  .articles-grid,
  .library-shell,
  .library-main,
  .catalog-section,
  .product-page,
  .product-detail,
  .legal-page,
  .membership-page,
  .article-page { width: min(calc(100% - 32px), var(--ekbe-width)); }
  .section { padding-top: 76px; }
  .group-heading { min-height: 110px; grid-template-columns: 40px 1fr 38px; gap: 12px; }
  .group-heading > b { display: none; }
  .group-heading h3 { font-size: 1.6rem; }
  .group-heading small { font-size: 12px; }
  .service-grid { padding-left: 0; grid-template-columns: 1fr; }
  .expertise { padding: 58px 24px; }
  .expertise-row > p { padding-left: 0; }
  .packages,
  .ready-products-grid,
  .blog-grid,
  .articles-grid,
  .about-grid,
  .faq-grid,
  .service-items,
  .service-outcomes,
  .service-deliverables,
  .related-products,
  .corporate-footer-main { grid-template-columns: 1fr; }
  .ready-product-card img,
  .library-card img,
  .product-card img { height: 190px; }
  .process { margin-top: 76px; padding: 58px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step,
  .process-step:nth-child(3) { min-height: 0; padding: 0 0 28px; border: 0; border-bottom: 1px solid var(--ekbe-line); }
  .process-step > span { margin-bottom: 18px; }
  .cta,
  .cta-panel { margin-top: 76px; padding: 48px 24px; grid-template-columns: 1fr; gap: 28px; }
  .services-hero,
  .page-hero,
  .about-hero,
  .blog-hero,
  .library-hero { min-height: 420px; padding: 68px 20px; }
  .services-hero h1,
  .page-hero h1,
  .about-hero h1,
  .blog-hero h1,
  .library-hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .library-tools { position: static; padding: 14px 16px; }
  .library-tools-inner { grid-template-columns: 1fr; }
  .library-filter-scroll {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 0 8px;
    scrollbar-width: thin;
  }
  .services-quick-nav,
  .section-index { grid-template-columns: 1fr 1fr; }
  .services-quick-nav a,
  .section-index a { min-height: 70px; }
  .services-directory { padding-top: 56px; }
  .service-section { padding: 30px 22px; }
  .process-grid,
  .principles-grid { grid-template-columns: 1fr; }
  .process-section .process-step,
  .process-section .process-step:first-child { padding: 24px; }
  .cookie-consent { right: 16px; bottom: 16px; width: calc(100% - 32px); }
  .corporate-footer { margin-top: 76px; padding: 58px 20px 24px; }
  .corporate-footer-main { gap: 34px; }
  .corporate-footer-bottom { flex-direction: column; }
  .back-to-top { display: none; }
  .corporate-intro-block,
  .home-programs,
  .expanded-services-section,
  .editorial-showcase,
  .about-positioning,
  .publishing-section,
  .featured-editorial,
  .future-tech-banner,
  .editorial-library,
  .proof-strip { width: calc(100% - 32px); }
  .corporate-intro-block { padding: 74px 0; }
  .home-programs { margin-top: 76px; padding: 68px 0; }
  .home-programs-head { grid-template-columns: 1fr; }
  .home-programs-grid { grid-template-columns: 1fr; }
  .home-programs-grid a { min-height: 190px; }
  .expanded-services-section { margin-top: 76px; }
  .expanded-services-head { padding: 40px 24px; grid-template-columns: 1fr; }
  .expanded-program-index { grid-template-columns: 1fr; }
  .expanded-program-index a { min-height: 68px; }
  .expanded-service-card { padding: 30px 22px; }
  .program-columns,
  .program-meta { grid-template-columns: 1fr; }
  .corporate-intro-cards { grid-template-columns: 1fr; }
  .corporate-intro-cards a { min-height: 180px; }
  .editorial-showcase { margin-top: 76px; padding: 68px 0; }
  .editorial-showcase-heading,
  .section-heading.split-heading { grid-template-columns: 1fr; }
  .editorial-lead { min-height: 0; padding: 28px; grid-template-columns: 1fr; }
  .editorial-lead img { width: 170px; }
  .services-hero-inner { gap: 38px; }
  .services-hero .hero-proof { padding: 22px; }
  .hero-service-line { gap: 8px 14px; }
  .service-area-index,
  .expertise-index { grid-template-columns: 1fr; }
  .service-area-index a,
  .expertise-index a { min-height: 150px; }
  .service-area-index span,
  .expertise-index span { margin-bottom: 28px; }
  .service-block-title { display: block; }
  .corporate-services-page .service-deliverables { grid-template-columns: 1fr; gap: 20px; }
  .positioning-grid,
  .corporate-about-page .principles-grid { grid-template-columns: 1fr; }
  .positioning-statement,
  .principle-card { min-height: 230px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { padding: 18px 0; border-top: 1px solid var(--ekbe-line); border-left: 0; }
  .proof-strip > div:first-child { border-top: 0; }
  .publishing-grid { padding: 38px 24px; }
  .publishing-actions { flex-direction: column; }
  .publishing-actions .button { width: 100%; }
  .future-tech-banner { padding: 38px 24px; grid-template-columns: 1fr; }
  .future-tech-visual img { width: 170px; }
  .featured-story-copy,
  .featured-story-outline { padding: 34px 24px; }
  .cta-brief-list { grid-template-columns: 1fr 1fr; }
  .cta-brief-list li:nth-child(odd) { border-left: 0; }
  .store-product { width: calc(100% - 32px); padding-top: 56px; }
  .store-product .product-hero,
  .store-product .product-details { grid-template-columns: 1fr; }
  .store-product .product-info h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .legal-main { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
