@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --kp-blue: #24588d;
  --kp-blue-deep: #153653;
  --kp-green: #00a19b;
  --kp-orange: #f1b822;
  --kp-grey: #c8c8c8;
  --kp-ink: #172333;
  --kp-muted: #5e6d7d;
  --kp-canvas: #f6f8fa;
  --kp-cream: #f4efe7;
  --kp-line: #dbe1e6;
  --kp-white: #ffffff;
  --shell: min(1240px, calc(100vw - 48px));
  --section-space: clamp(88px, 9vw, 144px);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.16, 1.1, .3, 1);
  --pointer-x: 0;
  --pointer-y: 0;
  --scroll-progress: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--kp-ink);
  background: var(--kp-white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

h1, h2, h3, p, dl, dd, figure, blockquote { margin: 0; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.045em; line-height: .98; }

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

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--kp-white);
  background: var(--kp-blue-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.preview-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  color: #fff;
  background: var(--kp-blue-deep);
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preview-bar__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--kp-orange); box-shadow: 0 0 0 0 rgba(241,184,34,.5); animation: previewPulse 2.2s var(--ease-out) infinite; }
.preview-bar__divider { width: 1px; height: 13px; background: rgba(255,255,255,.3); }

.page-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.page-progress span { display: block; width: 100%; height: 100%; background: var(--kp-orange); transform-origin: left; transform: scaleX(var(--page-progress, 0)); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--kp-blue);
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.hero__eyebrow::before { display: none; }
.hero__eyebrow > span { width: 26px; height: 2px; background: var(--kp-green); }
.eyebrow--light { color: #9cd8d4; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1;
  transition: transform 220ms var(--ease-out), background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 220ms var(--ease-out); }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(4px); }
.button--small { min-height: 42px; padding: 11px 16px; }
.button--ink { color: #fff; background: var(--kp-blue-deep); }
.button--primary { color: var(--kp-ink); background: var(--kp-orange); box-shadow: 0 16px 34px rgba(241,184,34,.22); }
.button--primary:hover { background: #ffd04f; box-shadow: 0 18px 38px rgba(241,184,34,.32); }
.button--outline { border-color: var(--kp-blue); color: var(--kp-blue); background: transparent; }
.button--outline:hover { color: #fff; background: var(--kp-blue); }
.button--light { color: var(--kp-ink); background: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(23,35,51,.28);
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}
.text-link span { transition: transform 220ms var(--ease-out); }
.text-link:hover { color: var(--kp-blue); border-color: var(--kp-blue); }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link--strong { font-size: 13px; }
.text-link--light { color: #fff; border-color: rgba(255,255,255,.42); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23,35,51,.08);
  transition: box-shadow 220ms ease;
}
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: linear-gradient(90deg, var(--kp-green), var(--kp-blue), var(--kp-orange)); transform: scaleX(var(--scroll-progress)); transform-origin: left center; }
.site-header.is-scrolled { box-shadow: 0 12px 35px rgba(23,35,51,.1); }
.utility-bar { border-bottom: 1px solid var(--kp-line); }
.utility-bar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-bar p, .utility-bar a { color: #536476; font-family: Verdana, Arial, sans-serif; font-size: 12px; line-height: 1.4; }
.utility-bar nav { display: flex; gap: 20px; }
.utility-bar a:hover { color: var(--kp-blue); }
.language-switcher { display: inline-flex; align-items: center; gap: 6px; }
.language-switcher > span { color: #98a6b2; }
.language-switcher a { min-width: 28px; min-height: 28px; display: inline-grid; place-items: center; padding: 2px 5px; border-radius: 5px; }
.language-switcher a[aria-current="page"] { color: var(--kp-blue-deep); background: var(--kp-blue-soft); font-weight: 700; }
.main-nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 102px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 34px); margin-left: auto; }
.desktop-nav a { position: relative; padding-block: 10px; font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--kp-green); transition: right 260ms var(--ease-out); }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.search-trigger, .menu-trigger { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; transition: background-color 180ms ease; }
.search-trigger:hover, .menu-trigger:hover { background: var(--kp-canvas); }
.search-trigger svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-trigger { display: none; position: relative; }
.menu-trigger span:not(.sr-only) { position: absolute; width: 20px; height: 2px; background: currentColor; transition: transform 240ms var(--ease-out), top 240ms var(--ease-out); }
.menu-trigger span:nth-child(2) { top: 17px; }
.menu-trigger span:nth-child(3) { top: 24px; }
.menu-trigger[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(45deg); }
.menu-trigger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; z-index: 40; inset: 148px 0 0; color: #fff; background: var(--kp-blue-deep); overflow-y: auto; }
.mobile-menu__inner { width: min(640px, calc(100vw - 40px)); min-height: calc(100vh - 148px); margin: 0 auto; padding: 38px 0; display: grid; align-content: space-between; gap: 46px; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: clamp(24px, 7vw, 42px); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; }
.mobile-menu nav a span { color: #8fb1ca; font-family: Verdana, Arial, sans-serif; font-size: 10px; letter-spacing: .1em; }
.mobile-menu__meta { display: grid; gap: 10px; color: #d7e5ee; }

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(72px, 7.5vw, 116px) 0 0;
  background: #fbfcfd;
  isolation: isolate;
}
.hero__wash { position: absolute; z-index: -1; width: 620px; height: 620px; left: -270px; top: 80px; border: 140px solid rgba(0,161,155,.055); border-radius: 50%; }
.hero__grid { min-height: 660px; display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: center; gap: clamp(30px, 4vw, 70px); }
.hero__content { position: relative; z-index: 3; padding-bottom: 68px; }
.hero h1 { max-width: 710px; font-size: clamp(50px, 6.1vw, 94px); }
.hero-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-line > span { display: block; animation: heroLineIn 900ms var(--ease-out) both; }
.hero-line:nth-child(2) > span { animation-delay: 100ms; }
.hero-line--accent { color: var(--kp-blue); }
.hero__lede { max-width: 590px; margin-top: 28px; color: #4e5d6d; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; }
.hero__actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 560px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--kp-line); }
.hero__facts div { display: grid; gap: 2px; }
.hero__facts dt { color: var(--kp-blue); font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.hero__facts dd { color: var(--kp-muted); font-family: Verdana, Arial, sans-serif; font-size: 10px; letter-spacing: .03em; }

.hero__visual { position: relative; min-height: 640px; perspective: 1000px; transform: translate3d(calc(var(--pointer-x) * 5px), calc(var(--pointer-y) * 5px), 0); transition: transform 600ms var(--ease-out); }
.hero__image-frame { position: absolute; inset: 0 -90px 10px 0; overflow: hidden; border-radius: 4px 4px 76px 4px; clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 16%); box-shadow: 0 28px 74px rgba(28,48,66,.13); animation: heroImageIn 1100ms 120ms var(--ease-out) both; }
.hero__image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.36); pointer-events: none; }
.hero__image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.025) translate3d(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -8px), 0); transition: transform 800ms var(--ease-out); }
.hero__orbit { position: absolute; z-index: 2; width: 560px; height: 560px; right: -45px; top: 22px; pointer-events: none; transform: translate3d(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 12px), 0); }
.hero__orbit svg { width: 100%; height: 100%; overflow: visible; animation: orbitRotate 26s linear infinite; }
.hero__orbit circle { fill: none; stroke: rgba(36,88,141,.24); stroke-width: 1; stroke-dasharray: 2 12; }
.hero__tag { position: absolute; z-index: 4; min-width: 142px; display: flex; align-items: center; gap: 13px; padding: 14px 16px; color: #fff; background: var(--kp-blue-deep); border-radius: 4px; box-shadow: 0 16px 36px rgba(23,35,51,.18); font-family: Verdana, Arial, sans-serif; transform: translate3d(calc(var(--pointer-x) * 16px), calc(var(--pointer-y) * 16px), 0); transition: transform 700ms var(--ease-out); }
.hero__tag span { color: #a6c5db; font-size: 9px; letter-spacing: .12em; }
.hero__tag strong { font-size: 11px; }
.hero__tag--one { left: -32px; top: 70px; }
.hero__tag--two { right: -24px; bottom: 78px; background: var(--kp-green); color: var(--kp-ink); transform: translate3d(calc(var(--pointer-x) * -14px), calc(var(--pointer-y) * -14px), 0); }
.hero__tag--two span { color: var(--kp-ink); }
.hero__badge { position: absolute; z-index: 4; left: -56px; bottom: 92px; width: 156px; height: 156px; display: grid; place-content: center; justify-items: center; gap: 9px; border-radius: 50%; color: var(--kp-ink); background: var(--kp-orange); text-align: center; transform: rotate(-7deg) translate3d(calc(var(--pointer-x) * 10px), calc(var(--pointer-y) * 10px), 0); box-shadow: 0 16px 38px rgba(241,184,34,.24); transition: transform 700ms var(--ease-out); }
.hero__badge svg { width: 35px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero__badge span { font-family: Verdana, Arial, sans-serif; font-size: 9px; font-weight: 700; line-height: 1.45; text-transform: uppercase; }

.hero-search { position: relative; z-index: 6; transform: translateY(50%); }
.product-search { padding: 26px 30px; background: #fff; border: 1px solid var(--kp-line); box-shadow: 0 24px 65px rgba(23,35,51,.12); }
.product-search > label { display: block; margin-bottom: 13px; font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.product-search__control { min-height: 62px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 14px; padding: 7px 7px 7px 19px; border: 1px solid #9aa8b5; border-radius: 7px; transition: border-color 180ms ease, box-shadow 180ms ease; }
.product-search__control:focus-within { border-color: var(--kp-blue); box-shadow: 0 0 0 4px rgba(36,88,141,.12); }
.product-search__control svg { width: 20px; fill: none; stroke: var(--kp-blue); stroke-width: 1.8; }
.product-search input { min-width: 0; border: 0; outline: 0; background: transparent; font-size: 16px; }
.product-search input::placeholder { color: #8794a1; }
.product-search__control button { min-height: 46px; padding: 10px 18px; border: 0; border-radius: 5px; color: #fff; background: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; cursor: pointer; transition: background-color 180ms ease, transform 180ms ease; }
.product-search__control button:hover { background: var(--kp-blue-deep); transform: translateX(2px); }
.product-search__suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 13px; color: var(--kp-muted); font-family: Verdana, Arial, sans-serif; font-size: 9px; }
.product-search__suggestions button { padding: 0; border: 0; border-bottom: 1px solid #b9c2ca; background: none; font-size: 9px; cursor: pointer; }

.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading h2, .studio h2, .faq h2 { font-size: clamp(42px, 5vw, 72px); }
.section-heading > p { max-width: 490px; color: var(--kp-muted); font-size: 17px; }

.collections { padding-top: calc(var(--section-space) + 80px); background: var(--kp-white); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(240px, auto); gap: 14px; }
.category-card { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; min-height: 240px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 24px; border: 1px solid var(--kp-line); background: var(--kp-canvas); transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style: preserve-3d; transition: transform 320ms var(--ease-out), background-color 280ms ease, color 280ms ease, border-color 280ms ease; }
.category-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -160px; bottom: -160px; border: 46px solid rgba(36,88,141,.08); border-radius: 50%; transition: right 500ms var(--ease-out), bottom 500ms var(--ease-out), transform 500ms var(--ease-out); }
.category-card:hover { z-index: 2; color: #fff; background: var(--kp-blue); border-color: var(--kp-blue); }
.category-card:hover::before { right: -60px; bottom: -70px; border-color: rgba(255,255,255,.13); transform: scale(1.4); }
.category-card--wide { grid-column: span 2; }
.category-card--tall { grid-row: span 2; }
.category-card--blue { color: #fff; background: var(--kp-blue-deep); border-color: var(--kp-blue-deep); }
.category-card__index { position: relative; z-index: 1; color: #738496; font-family: Verdana, Arial, sans-serif; font-size: 9px; letter-spacing: .12em; }
.category-card:hover .category-card__index, .category-card--blue .category-card__index { color: #bfd2e1; }
.category-card__icon { position: absolute; z-index: 1; width: clamp(66px, 7vw, 104px); right: 23px; top: 28px; fill: none; stroke: var(--kp-blue); stroke-width: 1.4; transform: translateZ(26px) rotate(-5deg); transition: stroke 280ms ease, transform 420ms var(--ease-spring); }
.category-card:hover .category-card__icon, .category-card--blue .category-card__icon { stroke: var(--kp-orange); transform: translateZ(38px) rotate(5deg) scale(1.08); }
.category-card > div { position: relative; z-index: 1; max-width: 240px; transform: translateZ(20px); }
.category-card h3 { margin-bottom: 7px; font-size: clamp(25px, 2.5vw, 38px); }
.category-card p { color: #647485; font-size: 13px; line-height: 1.55; transition: color 280ms ease; }
.category-card:hover p, .category-card--blue p { color: #d9e5ed; }
.category-card__arrow { position: absolute; z-index: 2; right: 21px; bottom: 18px; font-size: 20px; transition: transform 260ms var(--ease-out); }
.category-card:hover .category-card__arrow { transform: translate(4px, -4px); }
.section-link-row { display: flex; justify-content: flex-end; margin-top: 30px; }

.journey { position: relative; overflow: clip; padding-bottom: 0; color: #fff; background: var(--kp-blue-deep); }
.journey__backdrop { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 95%); }
.journey__grid { position: relative; display: grid; grid-template-columns: minmax(440px, .95fr) minmax(390px, .75fr); align-items: start; gap: clamp(50px, 8vw, 124px); }
.journey__visual-wrap { position: sticky; top: 150px; min-height: calc(100vh - 180px); display: grid; grid-template-rows: auto 1fr; }
.journey__intro h2 { color: var(--kp-white); font-size: clamp(44px, 5vw, 74px); }
.journey-visual { position: relative; width: min(560px, 48vw); height: min(560px, 48vw); align-self: center; perspective: 1000px; }
.journey-visual__route { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; transform: rotate(-10deg); transition: transform 900ms var(--ease-out); }
.journey-visual__route path { fill: none; stroke: rgba(156,216,212,.34); stroke-width: 1.5; stroke-dasharray: 6 11; stroke-dashoffset: var(--route-offset, 0); transition: stroke-dashoffset 900ms var(--ease-out), stroke 600ms ease; }
.journey-visual__route circle { fill: var(--kp-orange); stroke: var(--kp-blue-deep); stroke-width: 7; }
.brief-card { position: absolute; z-index: 2; width: 300px; min-height: 390px; left: 50%; top: 50%; padding: 26px; color: var(--kp-ink); background: #fff; border-radius: 4px 4px 34px 4px; transform: translate(-50%, -50%) rotate(-5deg); box-shadow: 0 32px 70px rgba(0,0,0,.24); transition: transform 850ms var(--ease-spring), background-color 700ms ease, color 600ms ease, border-radius 700ms var(--ease-out); }
.brief-card__top { display: flex; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid #d7dee4; color: #677686; font-family: Verdana, Arial, sans-serif; font-size: 8px; letter-spacing: .12em; }
.brief-card__brand { display: flex; gap: 6px; margin: 30px 0 46px; }
.brief-card__brand span { width: 26px; height: 7px; background: var(--kp-blue); }
.brief-card__brand span:nth-child(2) { background: var(--kp-green); }
.brief-card__brand span:nth-child(3) { background: var(--kp-orange); }
.brief-card__label { color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.brief-card__title { display: block; margin-top: 10px; font-size: 25px; line-height: 1.2; letter-spacing: -.035em; }
.brief-card__lines { display: grid; gap: 7px; margin-top: 25px; }
.brief-card__lines i { height: 5px; background: #e1e6ea; transform-origin: left; transition: transform 700ms var(--ease-out), background-color 500ms ease; }
.brief-card__lines i:nth-child(2) { width: 76%; }
.brief-card__lines i:nth-child(3) { width: 45%; }
.brief-card__stamp { position: absolute; right: 23px; bottom: 24px; display: grid; place-items: center; width: 65px; height: 65px; border: 2px solid var(--kp-orange); border-radius: 50%; color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 8px; font-weight: 700; transform: rotate(9deg) scale(.7); opacity: .25; transition: transform 700ms var(--ease-spring), opacity 500ms ease; }
.journey-token { position: absolute; z-index: 3; display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; background: var(--kp-green); color: var(--kp-ink); box-shadow: 0 14px 34px rgba(0,0,0,.22); font-family: Verdana, Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .12em; transition: transform 850ms var(--ease-spring), background-color 600ms ease, opacity 500ms ease; }
.journey-token--one { left: 4%; top: 42%; transform: rotate(-8deg); }
.journey-token--two { right: 3%; top: 14%; background: var(--kp-orange); transform: rotate(8deg) scale(.82); }
.journey-token--three { right: 8%; bottom: 6%; color: #fff; background: var(--kp-blue); transform: rotate(-12deg) scale(.72); }
.journey[data-step="2"] { --route-offset: -45; }
.journey[data-step="2"] .brief-card { transform: translate(-50%, -50%) rotate(3deg) scale(.96); background: #e7f6f4; border-radius: 28px 4px 4px 4px; }
.journey[data-step="2"] .journey-token--one { transform: translate(52px,-70px) rotate(12deg) scale(.8); }
.journey[data-step="2"] .journey-token--two { transform: translate(-78px,98px) rotate(-7deg) scale(1); }
.journey[data-step="2"] .journey-visual__route { transform: rotate(18deg); }
.journey[data-step="3"] { --route-offset: -90; }
.journey[data-step="3"] .brief-card { transform: translate(-50%, -50%) rotate(-2deg) scale(1.04); background: #fff7de; border-radius: 4px 30px 4px 4px; }
.journey[data-step="3"] .brief-card__lines i { background: #f1c963; transform: scaleX(.72); }
.journey[data-step="3"] .brief-card__stamp { opacity: 1; transform: rotate(-8deg) scale(1); }
.journey[data-step="3"] .journey-token--two { transform: translate(-58px,136px) rotate(14deg) scale(1.15); }
.journey[data-step="3"] .journey-token--three { transform: translate(-82px,-34px) rotate(7deg) scale(.9); }
.journey[data-step="3"] .journey-visual__route { transform: rotate(42deg); }
.journey[data-step="4"] { --route-offset: -150; }
.journey[data-step="4"] .brief-card { color: #fff; background: var(--kp-blue); transform: translate(-50%, -50%) rotate(5deg) scale(.92); border-radius: 4px 4px 4px 34px; }
.journey[data-step="4"] .brief-card__top { color: #c4d9e9; border-color: rgba(255,255,255,.25); }
.journey[data-step="4"] .brief-card__label { color: #b9e9e5; }
.journey[data-step="4"] .brief-card__lines i { background: rgba(255,255,255,.2); transform: scaleX(.9); }
.journey[data-step="4"] .brief-card__stamp { color: #fff; opacity: 1; transform: rotate(-8deg) scale(1); }
.journey[data-step="4"] .journey-token--one { transform: translate(120px,-90px) rotate(8deg) scale(.58); }
.journey[data-step="4"] .journey-token--two { transform: translate(-104px,160px) rotate(-10deg) scale(.7); }
.journey[data-step="4"] .journey-token--three { transform: translate(-122px,-88px) rotate(0) scale(1.18); background: var(--kp-orange); color: var(--kp-ink); }
.journey[data-step="4"] .journey-visual__route { transform: rotate(75deg); }
.journey__steps { padding-top: 110px; }
.journey-step { min-height: clamp(400px, 50vh, 500px); display: grid; grid-template-columns: minmax(0, 1fr); align-content: center; gap: 0; padding: 42px 0; border-top: 1px solid rgba(255,255,255,.16); opacity: .34; transition: opacity 500ms ease, transform 650ms var(--ease-out); }
.journey-step:last-child { min-height: clamp(450px, 58vh, 560px); }
.journey-step.is-current { opacity: 1; transform: translateX(-12px); }
.journey-step > span { color: #8fb1ca; font-family: Verdana, Arial, sans-serif; font-size: 10px; letter-spacing: .12em; }
.journey-step h3 { margin-bottom: 16px; color: var(--kp-white); font-size: clamp(30px, 3vw, 46px); line-height: 1.06; }
.journey-step p { max-width: 500px; color: #bfd0dc; font-size: 17px; }

.products { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: start; }
.product-card { grid-column: span 4; position: relative; overflow: hidden; border: 1px solid var(--kp-line); background: #fff; transition: transform 430ms var(--ease-spring), box-shadow 350ms ease; }
.product-card:nth-child(2) { margin-top: 64px; }
.product-card:nth-child(3) { margin-top: 18px; }
.product-card:hover { z-index: 2; transform: translateY(-12px) rotate(.5deg); box-shadow: 0 30px 70px rgba(23,35,51,.14); }
.product-card__media { aspect-ratio: 1 / 1.02; overflow: hidden; background: var(--kp-canvas); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 850ms var(--ease-out), filter 450ms ease; }
.product-card:hover .product-card__media img { transform: scale(1.075); filter: saturate(1.06); }
.product-card__meta { position: relative; min-height: 126px; display: grid; align-content: center; gap: 6px; padding: 24px 62px 24px 24px; }
.product-card__meta > span:first-child { color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { font-size: 29px; }
.product-card__arrow { position: absolute; right: 24px; bottom: 28px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--kp-line); border-radius: 50%; transition: color 220ms ease, background-color 220ms ease, transform 300ms var(--ease-out); }
.product-card:hover .product-card__arrow { color: #fff; background: var(--kp-blue); transform: rotate(45deg); }

.spotlight { overflow: clip; background: var(--kp-cream); }
.spotlight__grid { display: grid; grid-template-columns: minmax(330px, .78fr) minmax(520px, 1.22fr); align-items: center; gap: clamp(48px, 8vw, 120px); }
.spotlight__content h2 { max-width: 570px; margin-bottom: 52px; font-size: clamp(43px, 5.2vw, 76px); }
.spotlight-tabs { display: grid; }
.spotlight-tabs button { display: block; padding: 20px 0; border: 0; border-top: 1px solid #cfc8be; background: none; text-align: left; font-size: 18px; font-weight: 700; cursor: pointer; transition: color 220ms ease, padding-left 300ms var(--ease-out); }
.spotlight-tabs button:last-child { border-bottom: 1px solid #cfc8be; }
.spotlight-tabs button span { color: #7c766d; font-family: Verdana, Arial, sans-serif; font-size: 9px; letter-spacing: .1em; }
.spotlight-tabs button[aria-selected="true"] { padding-left: 18px; color: var(--kp-blue); }
.spotlight-tabs button[aria-selected="true"]::before { content: ""; position: absolute; width: 7px; height: 7px; margin-left: -18px; border-radius: 50%; background: var(--kp-green); }
.spotlight-panel { position: relative; min-height: 670px; background: #fff; border-radius: 4px 4px 56px 4px; box-shadow: 0 26px 70px rgba(52,44,34,.11); }
.spotlight-panel__image { position: relative; height: 390px; overflow: hidden; background: #dfe8e6; }
.spotlight-panel__image img { width: 100%; height: 100%; object-fit: cover; view-transition-name: spotlight-image; }
.spotlight-panel__mark { position: absolute; right: -44px; bottom: -44px; width: 156px; height: 156px; display: grid; place-items: center; border-radius: 50%; background: var(--kp-orange); transform: rotate(-10deg); }
.spotlight-panel__mark span { color: var(--kp-blue); font-size: 100px; font-weight: 800; line-height: 1; }
.spotlight-panel__copy { padding: 36px 42px 42px; }
.spotlight-panel__copy > p:first-child { color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; view-transition-name: spotlight-kicker; }
.spotlight-panel h3 { max-width: 570px; margin-top: 10px; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.05; view-transition-name: spotlight-title; }
.spotlight-panel__copy > p:nth-of-type(2) { max-width: 610px; margin-top: 18px; color: var(--kp-muted); }
.spotlight-panel__copy a { display: inline-flex; gap: 9px; margin-top: 24px; border-bottom: 1px solid var(--kp-ink); font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; }
::view-transition-old(spotlight-image), ::view-transition-new(spotlight-image) { animation-duration: 480ms; animation-timing-function: var(--ease-out); }
::view-transition-old(spotlight-title), ::view-transition-new(spotlight-title) { animation-duration: 360ms; animation-timing-function: var(--ease-out); }

.proof { position: relative; overflow: hidden; color: #fff; background: var(--kp-blue); }
.proof::before { content: ""; position: absolute; width: 900px; height: 900px; right: -460px; top: -490px; border: 160px solid rgba(255,255,255,.045); border-radius: 50%; }
.proof__header { position: relative; max-width: 900px; margin-bottom: 64px; }
.proof__header h2 { max-width: 820px; color: #fff; font-size: clamp(46px, 6vw, 84px); }
.proof__header > p:last-child { max-width: 620px; margin-top: 24px; color: #d2e1eb; font-size: 18px; }
.proof-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.proof-card { min-height: 360px; display: flex; flex-direction: column; padding: 26px 28px 32px; border-right: 1px solid rgba(255,255,255,.2); transition: color 280ms ease, background-color 280ms ease, transform 350ms var(--ease-out); }
.proof-card:last-child { border-right: 0; }
.proof-card:hover { color: var(--kp-ink); background: var(--kp-orange); transform: translateY(-8px); }
.proof-card > span { margin-bottom: auto; color: #b7cce0; font-family: Verdana, Arial, sans-serif; font-size: 9px; letter-spacing: .12em; }
.proof-card:hover > span { color: #675217; }
.proof-card strong { margin-top: 42px; color: #fff; font-size: clamp(42px, 4vw, 68px); letter-spacing: -.055em; line-height: .9; }
.proof-card:hover strong { color: var(--kp-blue-deep); }
.proof-card h3 { margin-top: 30px; color: #fff; font-size: 23px; line-height: 1.08; }
.proof-card p { margin-top: 13px; color: #d3e0ea; font-size: 13px; }
.proof-card:hover p { color: #443a20; }

.studio { overflow: clip; background: #fff; }
.studio__grid { display: grid; grid-template-columns: minmax(520px, 1.1fr) minmax(360px, .9fr); align-items: center; gap: clamp(60px, 9vw, 136px); }
.studio__media { position: relative; min-height: 760px; }
.studio__image { position: absolute; overflow: hidden; margin: 0; background: var(--kp-canvas); }
.studio__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease-out); }
.studio__image:hover img { transform: scale(1.035); }
.studio__image--main { width: 68%; height: 86%; left: 0; top: 0; border-radius: 4px 4px 52px 4px; }
.studio__image--inset { width: 48%; height: 51%; right: 0; bottom: 0; border: 10px solid #fff; border-radius: 40px 4px 4px 4px; }
.studio__caption { position: absolute; right: 12px; top: 13%; display: grid; gap: 3px; color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .18em; transform: rotate(90deg) translateX(100%); transform-origin: right top; }
.studio__content h2 { margin-bottom: 28px; }
.studio__lede { color: var(--kp-muted); font-size: 18px; }
.studio__list { display: grid; gap: 0; margin: 38px 0 34px; padding: 0; list-style: none; border-top: 1px solid var(--kp-line); }
.studio__list li { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; padding: 20px 0; border-bottom: 1px solid var(--kp-line); }
.studio__list span { color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 9px; letter-spacing: .1em; }
.studio__list p { color: #526172; }
.studio__list strong { color: var(--kp-ink); }

.testimonials { background: var(--kp-canvas); }
.quote-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.quote-card { min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--kp-line); background: #fff; }
.quote-card--feature { grid-row: span 2; color: #fff; background: var(--kp-blue-deep); border-color: var(--kp-blue-deep); }
.quote-card blockquote { max-width: 840px; font-size: clamp(20px, 2.3vw, 34px); font-weight: 700; letter-spacing: -.035em; line-height: 1.35; }
.quote-card--feature blockquote { font-size: clamp(28px, 3.6vw, 52px); line-height: 1.18; }
.quote-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.quote-card figcaption > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--kp-blue); background: var(--kp-canvas); font-family: Verdana, Arial, sans-serif; font-size: 10px; font-weight: 700; }
.quote-card figcaption div { display: grid; }
.quote-card figcaption strong { font-size: 13px; }
.quote-card figcaption small { color: #7c8995; font-family: Verdana, Arial, sans-serif; font-size: 9px; }
.quote-card--feature figcaption small { color: #a8bfd0; }

.faq { background: #fff; }
.faq__grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr); align-items: start; gap: clamp(60px, 10vw, 150px); }
.faq__intro { position: sticky; top: 150px; }
.faq__intro > p:nth-of-type(2) { max-width: 440px; margin: 24px 0 28px; color: var(--kp-muted); font-size: 17px; }
.faq-list { border-top: 1px solid var(--kp-ink); }
.faq details { border-bottom: 1px solid var(--kp-line); }
.faq summary { min-height: 88px; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: 16px; cursor: pointer; font-size: clamp(18px, 2vw, 24px); font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary > span { color: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 9px; letter-spacing: .12em; }
.faq summary svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform 300ms var(--ease-out); }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details > div { display: grid; grid-template-rows: 0fr; }
.faq details[open] > div { grid-template-rows: 1fr; }
.faq details > div > p { max-width: 680px; overflow: hidden; padding: 0 40px 0 58px; color: var(--kp-muted); }
.faq details[open] > div > p { padding-bottom: 28px; }

.final-cta { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; color: #fff; background: var(--kp-blue-deep); }
.final-cta__path { position: absolute; inset: 0; pointer-events: none; }
.final-cta__path svg { width: 100%; height: 100%; }
.final-cta__path path { fill: none; stroke: rgba(156,216,212,.32); stroke-width: 1.3; stroke-dasharray: 7 13; }
.final-cta__path span { position: absolute; width: 18px; height: 18px; border: 5px solid var(--kp-orange); border-radius: 50%; offset-path: path("M -50 390 C 214 111 461 113 670 326 C 858 516 1061 536 1307 364 C 1422 284 1525 253 1650 277"); animation: routeSignal 9s var(--ease-out) infinite; }
.final-cta__inner { position: relative; z-index: 2; text-align: center; }
.final-cta__inner .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(52px, 7.8vw, 112px); }
.final-cta__inner > p:not(.eyebrow) { max-width: 650px; margin: 26px auto 0; color: #c6d7e3; font-size: 18px; }
.final-cta__actions { display: flex; justify-content: center; align-items: center; gap: 26px; margin-top: 36px; }

.site-footer { color: #d9e4eb; background: #0f2b43; }
.site-footer__top { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr) 1fr; gap: 42px; padding: 78px 0 66px; }
.site-footer__brand img { width: 112px; filter: brightness(0) invert(1); }
.site-footer__brand p { max-width: 270px; margin-top: 24px; color: #a9bdcc; font-size: 13px; }
.site-footer h2 { margin-bottom: 19px; color: #fff; font-family: Verdana, Arial, sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer nav, .site-footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer nav a, .site-footer__contact a, .site-footer address { color: #a9bdcc; font-size: 12px; font-style: normal; line-height: 1.65; }
.site-footer a:hover { color: #fff; }
.site-footer address { margin-top: 8px; }
.site-footer__bottom { min-height: 74px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; border-top: 1px solid rgba(255,255,255,.12); color: #8fa7b9; font-family: Verdana, Arial, sans-serif; font-size: 9px; }
.site-footer__bottom div { display: flex; gap: 22px; }
.site-footer__bottom > a { justify-self: end; }

.motion-enabled .motion-scene { opacity: 0; transform: translateY(28px); clip-path: inset(0 0 12% 0); transition: opacity 650ms ease, transform 850ms var(--ease-out), clip-path 850ms var(--ease-out); }
.motion-enabled .motion-scene.is-visible { opacity: 1; transform: translateY(0); clip-path: inset(0); }
.motion-enabled .category-card.motion-scene { transition: opacity 650ms ease, transform 600ms var(--ease-out), clip-path 700ms var(--ease-out), background-color 280ms ease, color 280ms ease, border-color 280ms ease; }
.motion-enabled .category-card.motion-scene.is-visible { opacity: 1; transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); clip-path: inset(0); }

@keyframes heroLineIn { from { opacity: 0; transform: translateY(105%) rotate(2deg); } to { opacity: 1; transform: translateY(0) rotate(0); } }
@keyframes heroImageIn { from { opacity: 0; clip-path: polygon(95% 0,100% 0,100% 100%,86% 100%,86% 84%); transform: scale(.96) rotate(1.2deg); } to { opacity: 1; clip-path: polygon(14% 0,100% 0,100% 100%,0 100%,0 16%); transform: scale(1) rotate(0); } }
@keyframes orbitRotate { to { transform: rotate(360deg); } }
@keyframes previewPulse { 45% { box-shadow: 0 0 0 7px rgba(241,184,34,0); } 100% { box-shadow: 0 0 0 0 rgba(241,184,34,0); } }
@keyframes routeSignal { 0%, 10% { offset-distance: 0%; opacity: 0; } 16% { opacity: 1; } 82% { opacity: 1; } 92%, 100% { offset-distance: 100%; opacity: 0; } }

@supports (animation-timeline: view()) {
  .studio__image--main img { animation: studioDrift both linear; animation-timeline: view(); animation-range: entry 0% exit 100%; }
  .hero__wash { animation: washDrift both linear; animation-timeline: view(); animation-range: exit 0% exit 100%; }
  @keyframes studioDrift { from { transform: scale(1.08) translateY(-2%); } to { transform: scale(1.08) translateY(3%); } }
  @keyframes washDrift { to { transform: translateY(180px) rotate(18deg); } }
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1040px); }
  .desktop-nav { display: none; }
  .menu-trigger { display: grid; }
  .hero__grid { grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); }
  .hero__visual { min-height: 570px; }
  .hero__image-frame { right: -120px; }
  .hero__tag--two { right: -5px; }
  .hero__badge { left: -25px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card--tall { grid-row: auto; }
  .journey__grid { grid-template-columns: minmax(400px, .95fr) minmax(360px, .85fr); gap: 56px; }
  .journey-visual { width: 46vw; height: 46vw; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-card:nth-child(2) { border-right: 0; }
  .proof-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .studio__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .site-footer__top { grid-template-columns: 1.25fr repeat(2, .75fr); }
  .site-footer__contact { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 760px); --section-space: 96px; }
  .preview-bar { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .utility-bar p { display: none; }
  .utility-bar__inner { justify-content: flex-end; }
  .nav-actions .button { display: none; }
  .hero { padding-top: 64px; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 48px; }
  .hero__content { padding-bottom: 0; }
  .hero__lede { max-width: 640px; }
  .hero__visual { min-height: 620px; width: 100%; }
  .hero__image-frame { inset: 0; }
  .hero__orbit { right: -70px; }
  .hero__tag--one { left: 18px; }
  .hero__tag--two { right: 14px; }
  .hero__badge { left: 14px; bottom: 42px; }
  .hero-search { transform: translateY(42%); }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { padding-bottom: 70px; }
  .journey__grid { grid-template-columns: 1fr; }
  .journey__visual-wrap { position: relative; top: auto; min-height: auto; }
  .journey-visual { width: min(560px, 90vw); height: min(560px, 90vw); margin: 40px auto 0; }
  .journey__steps { padding-top: 50px; }
  .journey-step, .journey-step:last-child { min-height: auto; padding: 46px 0; opacity: .65; }
  .journey-step.is-current { transform: none; }
  .product-card { grid-column: span 6; }
  .product-card:nth-child(3) { grid-column: 4 / span 6; }
  .spotlight__grid { grid-template-columns: 1fr; }
  .spotlight-panel { min-height: 0; }
  .studio__grid { grid-template-columns: 1fr; }
  .studio__media { min-height: min(780px, 105vw); }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card--feature { grid-row: auto; }
  .faq__grid { grid-template-columns: 1fr; gap: 55px; }
  .faq__intro { position: relative; top: auto; }
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__contact { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --section-space: 78px; }
  html { scroll-padding-top: 95px; }
  .preview-bar { min-height: 34px; padding-inline: 14px; font-size: 9px; }
  .preview-bar__divider, .preview-bar span:last-child { display: none; }
  .utility-bar { display: none; }
  .main-nav { min-height: 68px; }
  .brand img { width: 84px; }
  .search-trigger, .menu-trigger { width: 40px; height: 40px; }
  .mobile-menu { inset: 102px 0 0; }
  .mobile-menu__inner { min-height: calc(100vh - 102px); }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero__lede { margin-top: 22px; font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 28px; }
  .hero__actions .button { width: 100%; }
  .hero__facts { gap: 10px; margin-top: 36px; }
  .hero__facts dt { font-size: 15px; }
  .hero__facts dd { font-size: 8px; }
  .hero__visual { min-height: 480px; }
  .hero__image-frame { border-radius: 4px 4px 36px 4px; clip-path: polygon(11% 0,100% 0,100% 100%,0 100%,0 13%); }
  .hero__image-frame img { object-position: 67% center; }
  .hero__orbit { width: 430px; height: 430px; right: -148px; top: 18px; }
  .hero__tag { min-width: 118px; padding: 10px 12px; }
  .hero__tag strong { font-size: 9px; }
  .hero__tag--one { left: 10px; top: 34px; }
  .hero__tag--two { right: 5px; bottom: 32px; }
  .hero__badge { width: 116px; height: 116px; left: 8px; bottom: 33px; }
  .hero__badge svg { width: 28px; }
  .hero__badge span { font-size: 7px; }
  .hero-search { width: 100%; transform: none; margin-top: 24px; }
  .product-search { padding: 18px 14px; border-inline: 0; }
  .product-search__control { grid-template-columns: 20px 1fr; padding: 10px 13px; }
  .product-search__control button { grid-column: 1 / -1; width: 100%; }
  .collections { padding-top: var(--section-space); }
  .section-heading h2, .studio h2, .faq h2 { font-size: clamp(38px, 12vw, 54px); }
  .section-heading--split { margin-bottom: 36px; }
  .section-heading > p { font-size: 15px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card--wide { grid-column: auto; }
  .category-card { min-height: 220px; }
  .journey__intro h2 { font-size: 43px; }
  .journey-visual { width: calc(100vw - 28px); height: calc(100vw - 28px); }
  .brief-card { width: 245px; min-height: 315px; padding: 20px; }
  .brief-card__brand { margin: 22px 0 32px; }
  .brief-card__title { font-size: 20px; }
  .journey-token { width: 64px; height: 64px; }
  .journey-step { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .journey-step h3 { font-size: 29px; }
  .journey-step p { font-size: 15px; }
  .product-grid { display: grid; grid-template-columns: 1fr; }
  .product-card, .product-card:nth-child(3) { grid-column: auto; margin-top: 0; }
  .spotlight__content h2 { margin-bottom: 34px; font-size: 43px; }
  .spotlight-panel__image { height: 300px; }
  .spotlight-panel__copy { padding: 28px 24px 34px; }
  .spotlight-panel h3 { font-size: 33px; }
  .spotlight-panel__mark { width: 110px; height: 110px; right: -28px; bottom: -28px; }
  .spotlight-panel__mark span { font-size: 70px; }
  .proof__header h2 { font-size: 47px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .proof-card:last-child { border-bottom: 0; }
  .studio__media { min-height: 560px; }
  .studio__image--main { width: 78%; height: 82%; }
  .studio__image--inset { width: 54%; height: 48%; border-width: 7px; }
  .studio__caption { display: none; }
  .quote-card, .quote-card--feature { min-height: 0; padding: 28px 24px; }
  .quote-card--feature blockquote { font-size: 28px; }
  .faq summary { min-height: 80px; grid-template-columns: 28px 1fr 20px; font-size: 17px; }
  .faq details > div > p { padding-left: 44px; padding-right: 0; }
  .final-cta { min-height: 560px; }
  .final-cta h2 { font-size: 48px; }
  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .button { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; padding-top: 62px; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: 1fr; justify-items: start; padding: 24px 0; }
  .site-footer__bottom > a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .hero-line > span, .hero__image-frame, .motion-enabled .motion-scene { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero__visual, .hero__image-frame img, .hero__tag, .hero__badge, .category-card { transform: none !important; }
  .journey__visual-wrap { position: relative; top: auto; }
  .journey-step { opacity: 1; }
  .final-cta__path span { display: none; }
}

/* Homepage refinement pass: authentic imagery, Joomla module bridges and full navigation. */

.hero,
.journey,
.proof,
.site-footer { overflow: clip; }

.site-header::after {
  right: auto;
  width: 100%;
  background: var(--kp-green);
}

.header-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.header-links a {
  position: relative;
  padding-block: 10px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

.header-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--kp-green);
  transition: right 240ms var(--ease-out);
}

.header-links a:hover::after,
.header-links a:focus-visible::after { right: 0; }

.search-trigger--labelled {
  width: auto;
  min-width: 82px;
  gap: 8px;
  padding-inline: 12px;
  border-color: #afbac4;
  border-radius: 7px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.search-trigger--labelled svg { width: 17px; }

.category-nav-wrap {
  position: relative;
  border-top: 1px solid var(--kp-line);
  border-bottom: 1px solid var(--kp-line);
  background: #fff;
}

.category-nav { min-width: 0; }

.category-nav > ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-nav > ul > li {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}

.category-nav > ul > li > a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 7px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.category-nav > ul > li:hover > a,
.category-nav > ul > li:focus-within > a {
  color: var(--kp-blue);
  background: var(--kp-canvas);
}

.category-nav__toggle {
  width: 28px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.category-nav__toggle svg {
  width: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 220ms var(--ease-out);
}

.category-nav__item.is-open .category-nav__toggle svg { transform: rotate(180deg); }

.category-nav__panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 1px);
  left: 0;
  width: min(440px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 18px;
  padding: 22px;
  border: 1px solid var(--kp-line);
  border-top: 4px solid var(--kp-green);
  background: #fff;
  box-shadow: 0 22px 50px rgba(23,35,51,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 240ms var(--ease-out);
}

.category-nav__item:hover .category-nav__panel,
.category-nav__item:focus-within .category-nav__panel,
.category-nav__item.is-open .category-nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.category-nav__item:nth-last-child(-n + 4) .category-nav__panel {
  right: 0;
  left: auto;
}

.category-nav__panel a {
  min-height: 39px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eef1f3;
  font-size: 12px;
  line-height: 1.35;
  transition: color 180ms ease, padding-left 220ms var(--ease-out);
}

.category-nav__panel a:hover,
.category-nav__panel a:focus-visible {
  color: var(--kp-blue);
  padding-left: 5px;
}

.mobile-menu__heading { display: none; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow: clip;
  padding: 28px 0 66px;
  background: #fff;
}

.hero__brand-shape {
  position: absolute;
  z-index: -1;
  top: -130px;
  left: -170px;
  width: 590px;
  opacity: .085;
  pointer-events: none;
  transform: rotate(-9deg) translate3d(calc(var(--pointer-x) * 8px), calc(var(--pointer-y) * 8px), 0);
  transition: transform 800ms var(--ease-out);
}

.hero__brand-shape img { width: 100%; }

.hero__stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #d9dee3;
  border-radius: 4px 4px 46px 4px;
  background: #f2f0eb;
  isolation: isolate;
  box-shadow: 0 30px 75px rgba(23,35,51,.11);
}

.hero__image-frame {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 0;
  clip-path: none;
  transform: none;
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 46.5%;
  bottom: 0;
  width: 1px;
  background: rgba(23,35,51,.11);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: translate3d(calc(var(--pointer-x) * -5px), calc(var(--pointer-y) * -4px), 0) scale(1.012);
  transition: transform 900ms var(--ease-out);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 46.5%;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  padding: 30px clamp(28px, 3vw, 46px);
  background: #fff;
}

.hero__eyebrow {
  margin-bottom: 13px;
  color: var(--kp-green);
  font-size: 9px;
}

.hero__eyebrow::before { display: block; }

.hero h1 {
  max-width: 540px;
  font-size: clamp(46px, 4.1vw, 66px);
  line-height: .94;
}

.hero-line--accent { color: var(--kp-blue); }

.hero__lede {
  max-width: 520px;
  margin-top: 15px;
  color: #4d5f70;
  font-size: 14px;
  line-height: 1.55;
}

.hero-search {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 20px;
  transform: none;
}

.product-search {
  position: relative;
  padding: 15px;
  border: 2px solid var(--kp-blue);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36,88,141,.14);
}

.product-search::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -2px;
  left: 15px;
  height: 4px;
  background: var(--kp-orange);
}

.product-search > label {
  margin-bottom: 9px;
  color: var(--kp-ink);
  font-size: 11px;
  line-height: 1.35;
}

.product-search__control {
  min-height: 64px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 6px 6px 6px 16px;
  border-color: #9ba9b5;
}

.product-search input {
  width: 100%;
  min-width: 0;
  font-size: 17px;
}

.product-search__control button {
  min-width: 104px;
  min-height: 50px;
  font-size: 11px;
}

.product-search__suggestions {
  align-items: center;
  gap: 4px 10px;
  margin-top: 8px;
  font-size: 9px;
}

.product-search__suggestions button {
  min-height: 36px;
  padding: 7px 2px;
  border-bottom-color: #98a6b2;
  font-size: 9px;
}

.hero__actions {
  gap: 17px;
  margin-top: 17px;
}

.hero__actions .button { min-height: 46px; padding: 11px 16px; }

.hero__facts {
  grid-template-columns: 1.13fr 1.35fr .85fr;
  gap: 0;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--kp-line);
}

.hero__facts > div {
  min-width: 0;
  padding: 0 13px;
  border-left: 1px solid var(--kp-line);
}

.hero__facts > div:first-child { padding-left: 0; border-left: 0; }

.hero__facts dt {
  min-height: 21px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--kp-blue);
  font-size: 15px;
  white-space: nowrap;
}

.hero__facts dt i {
  color: var(--kp-muted);
  font-size: 8px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__facts dd { margin-top: 2px; font-size: 8px; }

.hero__proof-chip {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 24px;
  width: 122px;
  height: 122px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  border-radius: 50%;
  color: var(--kp-ink);
  background: var(--kp-orange);
  text-align: center;
  transform: rotate(-6deg) translate3d(calc(var(--pointer-x) * 8px), calc(var(--pointer-y) * 8px), 0);
  box-shadow: 0 16px 38px rgba(241,184,34,.26);
  transition: transform 700ms var(--ease-spring);
}

.hero__proof-chip svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero__proof-chip span { font-family: Verdana, Arial, sans-serif; font-size: 7px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }

.collections { padding-top: clamp(72px, 8vw, 118px); }

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
}

.category-card,
.category-card--wide,
.category-card--tall {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-content: stretch;
  padding: 0;
  overflow: hidden;
  color: var(--kp-ink);
  border: 1px solid var(--kp-line);
  border-radius: 4px 4px 28px 4px;
  background: #fff;
}

.category-card::before { display: none; }

.category-card__media {
  grid-column: 1 / -1;
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #eef1f3;
}

.category-card__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 6px;
  background: var(--kp-green);
  transition: width 380ms var(--ease-out);
}

.category-card:nth-child(3n + 2) .category-card__media::after { background: var(--kp-orange); }
.category-card:nth-child(3n) .category-card__media::after { background: var(--kp-blue); }

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out), filter 300ms ease;
}

.category-card__copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  padding: 22px 12px 24px 22px;
  transform: none;
}

.category-card__copy h3 { font-size: 27px; }
.category-card__copy p { margin-top: 8px; color: var(--kp-muted); font-size: 12px; }

.category-card__index {
  z-index: 3;
  top: 14px;
  left: 14px;
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 4px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--kp-blue-deep);
  font-size: 8px;
}

.category-card__arrow {
  position: static;
  align-self: end;
  margin: 0 20px 24px 0;
  font-size: 20px;
}

.category-card:hover { color: var(--kp-ink); border-color: #aeb8c0; background: #fff; }
.category-card:hover .category-card__media img { transform: scale(1.055); }
.category-card:hover .category-card__media::after { width: 100%; }
.category-card:hover .category-card__arrow { transform: translateX(5px); }

.journey__backdrop { background: none; }

.journey__backdrop::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 48%;
  height: 72%;
  background: url("assets/brand-shape-teal.png") center / contain no-repeat;
  opacity: .06;
  transform: rotate(11deg);
}

.journey-visual__rails { position: absolute; inset: 7%; pointer-events: none; transition: transform 850ms var(--ease-out); }
.journey-visual__rails span { position: absolute; display: block; background: rgba(156,216,212,.25); }
.journey-visual__rails span:nth-child(1) { top: 12%; left: 5%; width: 68%; height: 8px; transform: rotate(-22deg); }
.journey-visual__rails span:nth-child(2) { right: 11%; bottom: 14%; width: 8px; height: 58%; transform: rotate(17deg); background: rgba(241,184,34,.42); }
.journey-visual__rails span:nth-child(3) { bottom: 8%; left: 15%; width: 52%; height: 5px; transform: rotate(13deg); background: rgba(36,88,141,.45); }
.journey[data-step="2"] .journey-visual__rails { transform: rotate(14deg) scale(.97); }
.journey[data-step="3"] .journey-visual__rails { transform: rotate(34deg) scale(1.03); }
.journey[data-step="4"] .journey-visual__rails { transform: rotate(58deg) scale(.96); }

.product-grid { align-items: stretch; }
.product-card,
.product-card:nth-child(2),
.product-card:nth-child(3) { height: 100%; margin-top: 0; }
.product-card__media { aspect-ratio: 6 / 5; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__meta { min-height: 124px; }

.module-grid-loading { min-height: 360px; display: grid; place-items: center; }
.module-loading { grid-column: 1 / -1; display: grid; justify-items: center; gap: 14px; padding: 48px 24px; color: var(--kp-muted); text-align: center; }
.module-loading span { width: 48px; height: 48px; border: 2px solid var(--kp-line); border-top-color: var(--kp-green); border-radius: 50%; animation: moduleSpin 850ms linear infinite; }
.module-loading p, .module-fallback { font-size: 13px; }
.module-fallback { padding: 24px; border: 1px solid var(--kp-line); background: var(--kp-canvas); }
.module-fallback a { color: var(--kp-blue); text-decoration: underline; }

.proof-card__timing,
.proof-card__timing b {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.proof-card__timing b { font: inherit; }
.proof-card__timing i { color: #9cd8d4; font-family: Verdana, Arial, sans-serif; font-size: 10px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

.final-cta__path { display: none; }
.final-cta__shape { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.final-cta__shape img { position: absolute; right: -120px; bottom: -210px; width: 720px; opacity: .12; transform: rotate(-13deg); }
.final-cta__shape span { position: absolute; display: block; background: rgba(255,255,255,.12); }
.final-cta__shape span:nth-of-type(1) { top: 18%; left: -4%; width: 42%; height: 12px; transform: rotate(-6deg); }
.final-cta__shape span:nth-of-type(2) { right: 18%; bottom: 14%; width: 28%; height: 7px; transform: rotate(11deg); background: rgba(241,184,34,.38); }

.newsletter {
  padding-block: clamp(64px, 7vw, 104px);
  color: var(--kp-ink);
  border-top: 1px solid #dbe1e6;
  background: var(--kp-cream);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  align-items: end;
  gap: clamp(42px, 7vw, 108px);
}

.newsletter h2 { max-width: 520px; font-size: clamp(40px, 4.5vw, 64px); }
.newsletter__inner > div > p:last-child { max-width: 490px; margin-top: 20px; color: var(--kp-muted); }
.newsletter-form { padding: 28px; border: 1px solid #c9d0d6; border-radius: 4px 4px 28px 4px; background: #fff; box-shadow: 0 20px 48px rgba(23,35,51,.09); }
.newsletter-form > label { display: block; margin-bottom: 11px; font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; }
.newsletter-form__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
.newsletter-form input { min-width: 0; min-height: 58px; padding: 12px 16px; border: 1px solid #98a6b2; border-radius: 7px 0 0 7px; font-size: 16px; }
.newsletter-form button { min-width: 150px; border: 0; border-radius: 0 7px 7px 0; color: #fff; background: var(--kp-blue); font-family: Verdana, Arial, sans-serif; font-size: 11px; font-weight: 700; cursor: pointer; transition: background-color 180ms ease, transform 220ms var(--ease-out); }
.newsletter-form button:not(:disabled):hover { background: var(--kp-blue-deep); }
.newsletter-form button:disabled, .newsletter-form input:disabled { cursor: wait; opacity: .68; }
.newsletter-form__status { min-height: 22px; margin-top: 10px; color: var(--kp-muted); font-size: 12px; }
.newsletter-form__status.is-success { color: #14665f; }
.newsletter-form__status.is-error { color: #9f1d2d; }
.quote-card--long blockquote { font-size: clamp(17px, 1.7vw, 24px); line-height: 1.45; }

.newsletter-module .sendy.subscribe,
.newsletter-module .sendy form {
  width: 100%;
  margin: 0;
}

.newsletter-module .sendy form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  padding: 28px;
  border: 1px solid #c9d0d6;
  border-radius: 4px 4px 28px 4px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(23,35,51,.09);
}

.newsletter-module .sendy input[type="email"],
.newsletter-module .sendy input[type="text"] {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #98a6b2;
  border-radius: 7px 0 0 7px;
  background: #fff;
  font-size: 16px;
}

.newsletter-module .sendy button,
.newsletter-module .sendy input[type="submit"] {
  min-width: 150px;
  min-height: 58px;
  margin: 0;
  padding: 12px 22px;
  border: 0;
  border-radius: 0 7px 7px 0;
  color: #fff;
  background: var(--kp-blue);
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, transform 220ms var(--ease-out);
}

.newsletter-module .sendy button:hover,
.newsletter-module .sendy input[type="submit"]:hover { background: var(--kp-blue-deep); }

.newsletter-module .sendy .sendy-result,
.newsletter-module .sendy .result,
.newsletter-module .sendy [role="status"] {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: 12px;
}

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

@media (max-width: 1180px) {
  .category-nav > ul > li > a { padding-inline: 5px; font-size: 8.7px; }
  .header-links { gap: 18px; }
  .hero__content { width: 48%; }
  .hero__image-frame::after { right: 48%; }
}

@media (max-width: 1024px) {
  html { scroll-padding-top: 104px; }
  .utility-bar, .category-nav-wrap, .header-links { display: none; }
  .menu-trigger { display: grid; }
  .main-nav { min-height: 68px; }
  .mobile-menu { inset: 104px 0 0; overflow-y: auto; background: #fff; }
  .site-header.is-scrolled .mobile-menu { inset: 68px 0 0; }
  .mobile-menu__inner { min-height: calc(100dvh - 104px); display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-content: start; gap: 34px; padding: 34px max(24px, calc((100vw - 920px) / 2)); }
  .site-header.is-scrolled .mobile-menu__inner { min-height: calc(100dvh - 68px); }
  .mobile-menu__heading { grid-column: 1 / -1; display: block; padding-bottom: 18px; border-bottom: 1px solid var(--kp-line); }
  .mobile-menu__heading .eyebrow { margin-bottom: 6px; }
  .mobile-menu__heading > p:last-child { color: var(--kp-muted); font-size: 13px; }
  .mobile-menu nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 0 24px; }
  .mobile-menu nav > a,
  .mobile-menu details { border-bottom: 1px solid var(--kp-line); }
  .mobile-menu nav > a { min-height: 54px; display: flex; align-items: center; font-size: 20px; font-weight: 700; }
  .mobile-menu details summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 20px; font-weight: 700; list-style: none; }
  .mobile-menu details summary::-webkit-details-marker { display: none; }
  .mobile-menu details summary::after { content: "+"; color: var(--kp-blue); font-size: 18px; }
  .mobile-menu details[open] summary::after { content: "-"; }
  .mobile-menu__subnav { display: grid; gap: 2px; padding: 0 0 14px 16px; }
  .mobile-menu__subnav a { min-height: 40px; display: flex; align-items: center; color: var(--kp-muted); font-size: 13px; }
  .mobile-menu__subnav a:first-child { color: var(--kp-blue); font-weight: 700; }
  .mobile-menu__meta { align-self: start; padding: 25px; color: #fff; background: var(--kp-blue-deep); }
  .mobile-menu__meta p { color: #d6e4ee; }

  .hero { padding-top: 24px; }
  .hero__stage { min-height: 0; }
  .hero__image-frame { position: relative; z-index: 0; height: clamp(220px, 34vw, 330px); }
  .hero__image-frame::after { display: none; }
  .hero__image-frame img { object-fit: cover; object-position: left center; }
  .hero__content { width: 100%; min-height: 0; margin: 0; padding: 34px clamp(24px, 5vw, 48px) 32px; border-top: 1px solid var(--kp-line); }
  .hero h1 { font-size: clamp(48px, 8vw, 74px); }
  .hero__proof-chip { top: clamp(112px, 19vw, 190px); right: 22px; bottom: auto; left: auto; }
  .hero__brand-shape { top: 60px; left: -210px; }
  .product-search { max-width: 760px; }
  .hero__facts { max-width: 660px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsletter__inner { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .newsletter__inner > * { min-width: 0; }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .hero__stage { min-height: 590px; }
  .hero__image-frame { position: absolute; z-index: -2; inset: 0; height: auto; }
  .hero__image-frame::after { display: block; right: 48%; }
  .hero__content { width: 48%; min-height: 590px; margin-left: auto; padding: 28px; border-top: 0; }
  .hero h1 { font-size: clamp(44px, 5.1vw, 54px); }
  .hero__proof-chip { top: auto; right: auto; bottom: 24px; left: 24px; }
  .product-search { max-width: none; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 30px, 1240px); --section-space: 76px; }
  .preview-bar { min-height: 34px; gap: 7px; padding-inline: 12px; font-size: 8px; letter-spacing: .05em; }
  .preview-bar__divider { display: none; }
  .site-header { top: 0; }
  .nav-actions .button { display: none; }
  .search-trigger--labelled { min-width: 46px; width: 46px; padding: 0; }
  .search-trigger--labelled span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .mobile-menu { inset: 102px 0 0; }
  .site-header.is-scrolled .mobile-menu { inset: 68px 0 0; }
  .mobile-menu__inner { min-height: calc(100dvh - 102px); grid-template-columns: 1fr; gap: 24px; padding: 25px 20px 40px; }
  .site-header.is-scrolled .mobile-menu__inner { min-height: calc(100dvh - 68px); }
  .mobile-menu nav { grid-template-columns: 1fr; }
  .mobile-menu nav > a, .mobile-menu details summary { font-size: 18px; }
  .mobile-menu__meta { margin-top: 4px; }

  .hero { padding: 16px 0 54px; }
  .hero__stage { border-radius: 4px 4px 30px 4px; }
  .hero__image-frame { height: clamp(174px, 47vw, 184px); }
  .hero__image-frame img { object-position: 27% center; transform: none; }
  .hero__content { padding: 26px 20px 28px; }
  .hero__eyebrow { margin-bottom: 10px; font-size: 8px; }
  .hero h1 { font-size: clamp(43px, 13.2vw, 62px); }
  .hero__lede { margin-top: 13px; font-size: 14px; }
  .hero-search { margin-top: 17px; }
  .product-search { padding: 13px; }
  .product-search > label { font-size: 10px; }
  .product-search__control { grid-template-columns: 20px minmax(0, 1fr); padding: 8px 10px; }
  .product-search__control button { grid-column: 1 / -1; width: 100%; min-height: 46px; }
  .product-search input { font-size: 16px; }
  .product-search__suggestions { gap: 2px 9px; }
  .product-search__suggestions button { min-height: 34px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 6px; margin-top: 13px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__facts { grid-template-columns: 1.15fr 1.3fr .8fr; margin-top: 14px; padding-top: 13px; }
  .hero__facts > div { padding-inline: 8px; }
  .hero__facts dt { gap: 4px; font-size: 12px; }
  .hero__facts dt i { font-size: 7px; }
  .hero__facts dd { font-size: 7px; line-height: 1.35; }
  .hero__proof-chip { top: 96px; right: 11px; width: 84px; height: 84px; }
  .hero__proof-chip svg { width: 21px; }
  .hero__proof-chip span { font-size: 5.6px; }
  .hero__brand-shape { top: 20px; left: -190px; width: 480px; opacity: .07; }

  .category-grid { grid-template-columns: 1fr; gap: 14px; }
  .category-card__media { aspect-ratio: 5 / 3; }
  .category-card__copy { padding: 19px 10px 21px 19px; }
  .category-card__copy h3 { font-size: 25px; }
  .category-card__arrow { margin: 0 18px 22px 0; }
  .journey__backdrop::before { width: 88%; right: -28%; }
  .module-grid-loading { min-height: 270px; }
  .proof-card__timing { gap: 7px; }
  .newsletter-form { padding: 20px 16px; }
  .newsletter-form__row { grid-template-columns: 1fr; gap: 8px; }
  .newsletter-form input, .newsletter-form button { border-radius: 7px; }
  .newsletter-form button { min-height: 52px; }
  .newsletter-module .sendy form { grid-template-columns: 1fr; gap: 8px; padding: 20px 16px; }
  .newsletter-module .sendy input[type="email"],
  .newsletter-module .sendy input[type="text"],
  .newsletter-module .sendy button,
  .newsletter-module .sendy input[type="submit"] { width: 100%; border-radius: 7px; }
  .final-cta__shape img { right: -260px; bottom: -110px; width: 600px; }
}

/* Mobile-first hero release: the search journey leads, the product image supports it. */
@media (max-width: 720px) {
  .hero {
    padding: 12px 0 58px;
  }

  .hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
  }

  .hero__content {
    order: 1;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 34px 22px 30px;
    border-top: 0;
    background: #ffffff;
  }

  .hero__image-frame {
    position: relative;
    z-index: 0;
    order: 2;
    width: 100%;
    height: clamp(148px, 42vw, 184px);
    border-top: 1px solid var(--kp-line);
  }

  .hero__image-frame img {
    object-position: 29% center;
    transform: none;
  }

  .hero__proof-chip {
    display: none;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-search {
    margin-top: 24px;
  }

  .product-search {
    width: calc(100% + 12px);
    margin-inline: -6px;
    padding: 16px;
    border-width: 2px;
  }

  .product-search > label {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .product-search__control {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 10px;
  }

  .product-search input {
    min-width: 0;
    min-height: 52px;
    font-size: 18px;
  }

  .product-search__control button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }

  .product-search__suggestions,
  .product-search__suggestions button {
    font-size: 14px;
  }

  .product-search__suggestions button {
    min-height: 44px;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero__actions .button {
    min-height: 54px;
    font-size: 15px;
  }

  .hero__actions .text-link {
    min-height: 44px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .hero__image-frame { height: 140px; }
  .hero__content { padding-top: 22px; }
  .hero h1 { font-size: 40px; }
  .hero__proof-chip { top: 64px; width: 70px; height: 70px; }
  .hero__proof-chip svg { width: 18px; }
  .hero__proof-chip span { font-size: 5px; }
  .product-search__suggestions { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand-shape,
  .hero__image-frame img,
  .hero__proof-chip,
  .journey-visual__rails,
  .category-card,
  .category-card__media img { transform: none !important; transition: none !important; }
  .module-loading span { animation: none; border-top-color: var(--kp-blue); }
}

/* Compact category showcase */
.collections {
  padding-block: clamp(64px, 6vw, 88px);
}

.collections .section-heading--split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 32px;
}

.collections .section-heading h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.4vw, 62px);
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}

.category-card,
.category-card--wide,
.category-card--tall {
  min-width: 0;
  grid-column: auto;
  grid-row: auto;
  grid-template-columns: minmax(0, 1fr) 54px;
  grid-template-rows: auto minmax(88px, auto);
  border-radius: 4px 4px 24px 4px;
  transform-style: flat;
}

.category-card > div {
  max-width: none;
  transform: none;
}

.category-card__index {
  display: none;
}

.category-card__media {
  width: 100%;
  max-width: none;
  grid-column: 1 / -1;
  grid-row: 1;
  aspect-ratio: 8 / 5;
  transform: none;
}

.category-card__media img {
  object-position: center;
}

.category-card__copy {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  max-width: none;
  padding: 16px 10px 18px 20px;
}

.category-card__copy h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.08;
}

.category-card__copy p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.45;
}

.category-card__arrow {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  margin: 0;
}

.category-card:focus-visible {
  outline: 3px solid var(--kp-orange);
  outline-offset: 4px;
}

@media (max-width: 899px) {
  .collections .section-heading--split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

/* Service facts: readable proof without fine print. */
.hero__facts dt {
  font-size: 21px;
}

.hero__facts dt i {
  font-size: 13px;
}

.hero__facts dd {
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .hero__facts {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
    padding-top: 0;
    border-top: 0;
  }

  .hero__facts > div,
  .hero__facts > div:first-child {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid var(--kp-line);
    border-left: 4px solid var(--kp-green);
    border-radius: 3px 3px 14px 3px;
    background: var(--kp-canvas);
  }

  .hero__facts > div:first-child {
    border-left-color: var(--kp-orange);
  }

  .hero__facts dt {
    min-height: 0;
    gap: 6px;
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__facts dt i {
    font-size: 13px;
  }

  .hero__facts dd {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
    text-align: right;
  }

  .category-card__copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  main .button[class],
  main .text-link[class],
  .spotlight-panel__copy a {
    font-size: 16px;
  }
}

/* Final phone composition. Keep this last so legacy responsive layers cannot
   return the decorative product image to the primary reading position. */
@media (max-width: 720px) {
  .hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero__content {
    order: 1;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 34px 22px 30px;
    border-top: 0;
  }

  .hero__image-frame {
    position: relative;
    z-index: 0;
    order: 2;
    width: 100%;
    height: clamp(148px, 42vw, 184px);
    border-top: 1px solid var(--kp-line);
  }

  .hero__image-frame img {
    object-position: 29% center;
    transform: none;
  }

  .hero__proof-chip {
    display: none;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-search {
    margin-top: 24px;
  }

  .product-search {
    width: calc(100% + 12px);
    margin-inline: -6px;
    padding: 16px;
  }

  .product-search > label {
    font-size: 16px;
  }

  .product-search input {
    min-height: 52px;
    font-size: 18px;
  }

  .product-search__control button {
    min-height: 56px;
    font-size: 16px;
  }

  .product-search__suggestions,
  .product-search__suggestions button {
    font-size: 14px;
  }
}

@media (max-width: 599px) {
  .collections {
    padding-block: 56px;
  }

  .collections .section-heading--split {
    margin-bottom: 26px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card,
  .category-card--wide,
  .category-card--tall {
    min-height: 132px;
    grid-template-columns: clamp(118px, 35vw, 142px) minmax(0, 1fr) 34px;
    grid-template-rows: minmax(132px, auto);
    border-radius: 4px 4px 18px 4px;
  }

  .category-card__media {
    width: 100%;
    height: 100%;
    min-height: 132px;
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: auto;
  }

  .category-card__copy {
    grid-column: 2;
    grid-row: 1;
    padding: 15px 9px 15px 15px;
  }

  .category-card__copy h3 {
    font-size: 22px;
  }

  .category-card__copy p {
    font-size: 11px;
  }

  .category-card__arrow {
    grid-column: 3;
    grid-row: 1;
    margin: 0 10px 0 0;
  }
}

@media (max-width: 360px) {
  .category-card,
  .category-card--wide,
  .category-card--tall {
    grid-template-columns: 112px minmax(0, 1fr) 30px;
  }

  .category-card__copy p {
    display: none;
  }
}

/* Homepage alignment pass: wider layout, stronger search, tighter proof cards and readable mobile type. */

:root {
  --shell: min(1540px, calc(100vw - 28px));
}

html,
body {
  overflow-x: clip;
}

.product-search {
  padding: 20px;
}

.product-search > label {
  margin-bottom: 11px;
  font-size: 12px;
}

.product-search__control {
  min-height: 76px;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 8px 8px 8px 18px;
  border-width: 2px;
}

.product-search__control svg {
  width: 22px;
}

.product-search input {
  min-height: 56px;
  font-size: 19px;
}

.product-search__control button {
  min-width: 120px;
  min-height: 58px;
  font-size: 14px;
}

.product-search__suggestions,
.product-search__suggestions button {
  font-size: 10px;
}

.proof-card {
  min-height: 320px;
}

.proof-card > span {
  margin-bottom: 24px;
}

.proof-card strong,
.proof-card__timing {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .hero__stage,
  .hero__content {
    min-height: 590px;
  }

  .hero__content {
    width: 52%;
    padding-inline: clamp(34px, 3.4vw, 58px);
  }

  .hero__image-frame::after {
    right: 52%;
  }

  .hero-search {
    margin-top: 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 24px, 1540px);
    --section-space: 72px;
  }

  body {
    font-size: 16px !important;
    line-height: 1.65;
  }

  /* The legacy floating enquiry tab overlaps the hero heading on small screens. */
  body .eb-2.eb-floating-button.eb-middle-right {
    display: none !important;
  }

  .hero {
    padding: 12px 0 58px;
  }

  .hero__image-frame {
    height: clamp(220px, 59vw, 258px);
  }

  .hero__content {
    padding: 30px 22px 34px;
  }

  .hero__eyebrow,
  .eyebrow {
    margin-bottom: 11px;
    font-size: 11px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(42px, 12.6vw, 56px);
    line-height: 0.98;
  }

  .hero__lede,
  .section-heading > p,
  .journey-step p,
  .proof__header > p:last-child,
  .proof-card p,
  .studio__content p,
  .spotlight-panel__copy p,
  .faq p,
  .final-cta p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero__lede {
    margin-top: 17px;
  }

  .hero-search {
    margin-top: 22px;
  }

  .product-search {
    padding: 16px;
    border-radius: 9px;
  }

  .product-search > label {
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 1.45;
  }

  .product-search__control {
    min-height: 0;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 10px;
  }

  .product-search__control svg {
    width: 22px;
  }

  .product-search input {
    min-height: 50px;
    font-size: 18px;
    line-height: 1.4;
  }

  .product-search__control button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 54px;
    font-size: 14px;
  }

  .product-search__suggestions {
    gap: 4px 10px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
  }

  .product-search__suggestions button {
    min-height: 44px;
    font-size: 11px;
  }

  .hero__actions {
    gap: 9px;
    margin-top: 18px;
  }

  .hero__actions .button {
    min-height: 54px;
    font-size: 13px;
  }

  .hero__actions .text-link,
  .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 20px;
    padding-top: 16px;
  }

  .hero__facts > div {
    padding-inline: 8px;
  }

  .hero__facts dt {
    min-height: 24px;
    gap: 4px;
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero__facts dt i {
    font-size: 9px;
  }

  .hero__facts dd {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.45;
  }

  .hero__proof-chip {
    top: 122px;
    right: 12px;
    width: 94px;
    height: 94px;
  }

  .hero__proof-chip svg {
    width: 24px;
  }

  .hero__proof-chip span {
    font-size: 7.2px;
  }

  .section-heading h2,
  .studio h2,
  .faq h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .category-card__copy h3 {
    font-size: 24px;
  }

  .category-card__copy p {
    display: block;
    font-size: 14px;
    line-height: 1.5;
  }

  .journey-step h3 {
    font-size: 31px;
  }

  .proof__header h2 {
    font-size: clamp(40px, 11.5vw, 50px);
    line-height: 1;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .proof-card > span {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .proof-card strong {
    font-size: clamp(44px, 14vw, 58px);
  }

  .proof-card h3 {
    margin-top: 22px;
    font-size: 25px;
  }

  .proof-card p {
    margin-top: 12px;
  }
}

@media (max-width: 360px) {
  .hero__image-frame {
    height: 196px;
  }

  .hero__content {
    padding-inline: 18px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__proof-chip {
    top: 105px;
    width: 82px;
    height: 82px;
  }

  .product-search__suggestions {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-search__control button,
  .proof-card {
    transform: none !important;
    transition: none !important;
  }
}

/* Customer voice strip: compact social proof designed for short testimonials. */
.testimonials .section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.testimonials .quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--kp-line);
  border-radius: 4px 4px 28px 4px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(21, 54, 83, 0.08);
}

.testimonials .quote-card,
.testimonials .quote-card--feature {
  position: relative;
  min-width: 0;
  min-height: 0;
  grid-row: auto;
  justify-content: flex-start;
  padding: clamp(30px, 3.6vw, 48px);
  border: 0;
  border-top: 4px solid var(--kp-blue);
  color: var(--kp-ink);
  background: #ffffff;
}

.testimonials .quote-card + .quote-card {
  border-left: 1px solid var(--kp-line);
}

.testimonials .quote-card:nth-child(1) {
  border-top-color: var(--kp-orange, #f1b822);
  color: #ffffff;
  background: var(--kp-blue-deep);
}

.testimonials .quote-card:nth-child(2) {
  border-top-color: var(--kp-green, #00a19b);
  background: var(--kp-canvas);
}

.testimonials .quote-card::before {
  content: "\201C";
  display: block;
  height: 42px;
  color: var(--kp-blue);
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 0.86;
}

.testimonials .quote-card:nth-child(1)::before {
  color: var(--kp-orange, #f1b822);
}

.testimonials .quote-card blockquote,
.testimonials .quote-card--feature blockquote,
.testimonials .quote-card--long blockquote {
  flex: 1;
  max-width: none;
  margin-top: 14px;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.testimonials .quote-card figcaption {
  margin-top: 30px;
}

.testimonials .quote-card:nth-child(1) figcaption > span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.testimonials .quote-card:nth-child(1) figcaption small {
  color: #c9d6df;
}

@media (max-width: 980px) {
  .testimonials .quote-grid {
    grid-template-columns: 1fr;
    border-radius: 4px 4px 22px 4px;
  }

  .testimonials .quote-card + .quote-card {
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .testimonials .quote-card,
  .testimonials .quote-card--feature {
    padding: 28px 22px 30px;
  }

  .testimonials .quote-card blockquote,
  .testimonials .quote-card--feature blockquote,
  .testimonials .quote-card--long blockquote {
    font-size: 21px;
    line-height: 1.48;
  }

  .testimonials .quote-card figcaption {
    margin-top: 24px;
  }
}

/* Shared keepitPromo navigation and mobile legibility release. */
body .newsletter h2 {
  color: var(--kp-ink) !important;
}

body .newsletter__inner > div > p:last-child {
  color: #4f6070;
}

@media (min-width: 1181px) {
  .category-nav-wrap {
    border-bottom: 2px solid rgba(21, 54, 83, .14);
    background: var(--kp-canvas);
    box-shadow: 0 9px 22px rgba(21, 54, 83, .07);
  }

  .category-nav > ul {
    gap: 2px;
  }

  .category-nav > ul > li > a {
    position: relative;
    min-height: 60px;
    padding-inline: 5px;
    color: var(--kp-blue-deep);
    font-family: Verdana, Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: .005em;
    line-height: 1.3;
  }

  .category-nav > ul > li > a::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: -1px;
    left: 5px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--kp-green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms cubic-bezier(.165, .84, .44, 1);
  }

  .category-nav > ul > li:hover > a::after,
  .category-nav > ul > li:focus-within > a::after {
    transform: scaleX(1);
  }

  .category-nav > ul > li:hover > a,
  .category-nav > ul > li:focus-within > a {
    background: #ffffff;
  }

  .category-nav__toggle {
    width: 22px;
    height: 60px;
    margin-left: -5px;
    color: var(--kp-blue);
  }

  .category-nav__panel {
    border-top-color: var(--kp-green);
    box-shadow: 0 22px 50px rgba(23, 35, 51, .15);
    transform: translateY(7px);
    transition: opacity 150ms ease, visibility 150ms ease, transform 180ms cubic-bezier(.165, .84, .44, 1);
  }

  .category-nav__panel a {
    min-height: 44px;
    color: var(--kp-ink);
    font-family: Verdana, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
  }

  .category-nav > ul > li > a:focus-visible,
  .category-nav__toggle:focus-visible,
  .category-nav__panel a:focus-visible {
    outline: 3px solid var(--kp-orange);
    outline-offset: -3px;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  html {
    scroll-padding-top: 104px;
  }

  .utility-bar,
  .category-nav-wrap,
  .header-links {
    display: none;
  }

  .menu-trigger {
    display: grid;
  }

  .main-nav {
    min-height: 68px;
  }

  .mobile-menu {
    inset: 104px 0 0;
    overflow-y: auto;
    background: #fff;
  }

  .site-header.is-scrolled .mobile-menu {
    inset: 68px 0 0;
  }

  .mobile-menu__inner {
    min-height: calc(100dvh - 104px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-content: start;
    gap: 34px;
    padding: 34px max(24px, calc((100vw - 920px) / 2));
  }

  .site-header.is-scrolled .mobile-menu__inner {
    min-height: calc(100dvh - 68px);
  }

  .mobile-menu__heading {
    grid-column: 1 / -1;
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 0 24px;
  }

  .mobile-menu__meta {
    align-self: start;
  }
}

@media (max-width: 1180px) {
  .mobile-menu {
    color: var(--kp-ink);
    background: #fff;
  }

  .mobile-menu__heading {
    margin-bottom: 8px;
    padding: 20px 22px;
    border: 0;
    border-left: 4px solid var(--kp-green);
    border-radius: 3px 3px 18px 3px;
    color: #fff;
    background: var(--kp-blue-deep);
  }

  .mobile-menu__heading .eyebrow {
    margin-bottom: 5px;
    color: #8fd8d4;
    font-size: 12px;
  }

  .mobile-menu__heading > p:last-child {
    color: #d7e5ee;
    font-size: 15px;
    line-height: 1.5;
  }

  .mobile-menu nav > a,
  .mobile-menu details {
    border-bottom: 1px solid var(--kp-line);
  }

  .mobile-menu nav > a,
  .mobile-menu details summary {
    min-height: 56px;
    padding: 0 12px;
    color: var(--kp-ink) !important;
    font-family: Verdana, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    transition: color 150ms ease, background-color 150ms ease;
  }

  .mobile-menu nav > a:hover,
  .mobile-menu nav > a:focus-visible,
  .mobile-menu details summary:hover,
  .mobile-menu details summary:focus-visible,
  .mobile-menu details[open] summary {
    color: var(--kp-blue) !important;
    background: var(--kp-canvas);
  }

  .mobile-menu nav > a:focus-visible,
  .mobile-menu details summary:focus-visible,
  .mobile-menu__subnav a:focus-visible {
    outline: 3px solid var(--kp-orange);
    outline-offset: -3px;
  }

  .mobile-menu details summary::after {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    border-radius: 50%;
    color: var(--kp-blue);
    background: #edf4f8;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-menu__subnav {
    gap: 0;
    padding: 2px 0 14px 14px;
  }

  .mobile-menu__subnav a,
  .mobile-menu__subnav a:first-child {
    min-height: 44px;
    padding: 8px 12px;
    color: #4f6070;
    font-family: Verdana, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
  }

  .mobile-menu__subnav a:first-child {
    color: var(--kp-blue);
    font-weight: 700;
  }

  .mobile-menu__meta {
    border-left: 4px solid var(--kp-green);
    border-radius: 3px 3px 18px 3px;
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  .preview-bar {
    min-height: 38px;
    font-size: 11px;
    line-height: 1.35;
  }

  .mobile-menu__inner {
    width: 100%;
    gap: 18px;
    padding: 20px 18px 38px;
  }

  .mobile-menu__heading {
    padding: 18px;
  }

  .mobile-menu nav > a,
  .mobile-menu details summary {
    min-height: 58px;
    font-size: 17px;
  }

  .hero__eyebrow,
  .eyebrow {
    font-size: 12px;
  }

  .hero__lede,
  .section-heading > p,
  .journey-step p,
  .proof__header > p:last-child,
  .proof-card p,
  .studio__content p,
  .spotlight-panel__copy p,
  .faq p,
  .final-cta p,
  .newsletter p {
    font-size: 16px;
    line-height: 1.6;
  }

  .product-search {
    width: calc(100% + 16px);
    margin-inline: -8px;
    padding: 14px;
  }

  .product-search > label {
    font-size: 15px;
  }

  .product-search__control {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px 10px;
    padding: 8px;
  }

  .product-search input {
    min-width: 0;
    min-height: 52px;
    font-size: 18px;
  }

  .product-search__control button {
    min-height: 56px;
    font-size: 15px;
  }

  .product-search__suggestions,
  .product-search__suggestions button {
    font-size: 14px;
  }

  .product-search__suggestions button {
    min-height: 44px;
  }

  .hero__actions .button,
  .hero__actions .text-link,
  .text-link,
  .button {
    font-size: 15px;
  }

  .hero__facts dt {
    font-size: 16px;
  }

  .hero__facts dt i {
    font-size: 11px;
  }

  .hero__facts dd {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__proof-chip span {
    font-size: 9px;
    line-height: 1.35;
  }

  .category-card,
  .category-card--wide,
  .category-card--tall {
    min-height: 156px;
    grid-template-columns: clamp(124px, 37vw, 148px) minmax(0, 1fr) 34px;
    grid-template-rows: minmax(156px, auto);
  }

  .category-card__media {
    min-height: 156px;
  }

  .category-card__copy p,
  .section-link-row .text-link {
    display: block;
    font-size: 15px;
    line-height: 1.5;
  }

  .journey-step > span,
  .brief-card__top,
  .brief-card__label,
  .journey-token span,
  .product-card__meta > span,
  .spotlight-tabs button span,
  .proof-card > span,
  .studio__list li > span,
  .faq-list summary > span {
    font-size: 12px;
  }

  .product-card__meta > span {
    line-height: 1.4;
  }

  body .product-card__meta > span:first-child {
    font-size: 12px !important;
  }

  .product-card__meta h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .spotlight-tabs button {
    min-height: 52px;
    font-size: 15px;
    line-height: 1.35;
  }

  .spotlight-panel__copy > p:first-child,
  .spotlight-panel__copy a {
    font-size: 15px;
  }

  .studio__list p,
  .quote-card figcaption strong,
  .faq-list summary {
    font-size: 16px;
  }

  .quote-card figcaption small {
    font-size: 14px;
    line-height: 1.4;
  }

  .final-cta__actions .button,
  .final-cta__actions .text-link {
    font-size: 15px;
  }

  .newsletter h2 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .newsletter-module .sendy h4,
  .newsletter-module .sendy label,
  .newsletter-module .sendy input[type="email"],
  .newsletter-module .sendy input[type="text"] {
    font-size: 16px !important;
  }

  .newsletter-module .sendy button,
  .newsletter-module .sendy input[type="submit"] {
    min-height: 54px;
    font-size: 15px !important;
  }

  .site-footer__brand p,
  .site-footer__contact p,
  .site-footer__contact a,
  .site-footer__top nav a,
  .site-footer__bottom,
  .site-footer__bottom a {
    font-size: 15px !important;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .category-card__copy p {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-nav > ul > li > a,
  .category-nav > ul > li > a::after,
  .category-nav__panel,
  .category-nav__toggle svg,
  .mobile-menu nav > a,
  .mobile-menu details summary {
    transition: none !important;
  }
}

/* Final mobile service-fact layout. */
@media (max-width: 720px) {
  .hero__stage {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero__content {
    order: 1;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 34px 22px 30px;
    border-top: 0;
  }

  .hero__image-frame {
    position: relative;
    z-index: 0;
    order: 2;
    width: 100%;
    height: clamp(148px, 42vw, 184px);
    border-top: 1px solid var(--kp-line);
  }

  .hero__image-frame img {
    object-position: 29% center;
    transform: none;
  }

  .hero__proof-chip {
    display: none;
  }

  .hero__eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11.5vw, 54px);
    line-height: 1;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-search {
    margin-top: 24px;
  }

  .product-search {
    width: calc(100% + 12px);
    margin-inline: -6px;
    padding: 16px;
  }

  .product-search > label {
    font-size: 16px;
  }

  .product-search input {
    min-height: 52px;
    font-size: 18px;
  }

  .product-search__control button {
    min-height: 56px;
    font-size: 16px;
  }

  .product-search__suggestions,
  .product-search__suggestions button {
    font-size: 14px;
  }
}

/* Unified public footer structure shared with Joomla pages and customer access. */
.site-footer__top {
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.6fr) minmax(250px, .9fr);
  gap: clamp(34px, 5vw, 70px);
  padding: 76px 0 64px;
}

.site-footer__explore {
  display: block !important;
}

.site-footer__explore > strong,
.site-footer__contact > strong {
  display: block;
  margin: 0 0 19px;
  color: #fff;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
}

.site-footer__links a,
.site-footer__contact p,
.site-footer__contact a {
  margin: 0;
  color: #a9bdcc;
  font-size: 12px;
  line-height: 1.65;
  text-decoration: none;
}

.site-footer__contact {
  display: block;
  text-align: right;
}

.site-footer__contact p {
  margin-bottom: 15px;
}

.site-footer__contact b {
  color: #fff;
}

.site-footer__bottom nav {
  flex-direction: row;
  gap: 22px;
}

@media (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: 1fr 1.5fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px 0 48px;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__contact {
    text-align: center;
  }
}

.site-footer__bottom nav {
  flex-direction: row;
  gap: 22px;
}

@media (max-width: 720px) {
  .category-card__copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .spotlight-tabs button,
  .spotlight-panel__copy > p:first-child {
    font-size: 16px;
  }

  .brief-card__label {
    font-size: 14px;
  }

  main .button[class],
  main .text-link[class],
  .spotlight-panel__copy a {
    font-size: 16px;
  }
}

.hero__facts dt {
  font-size: 21px;
}

.hero__facts dt i {
  font-size: 13px;
}

.hero__facts dd {
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .hero__facts {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
    padding-top: 0;
    border-top: 0;
  }

  .hero__facts > div,
  .hero__facts > div:first-child {
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid var(--kp-line);
    border-left: 4px solid var(--kp-green);
    border-radius: 3px 3px 14px 3px;
    background: var(--kp-canvas);
  }

  .hero__facts > div:first-child {
    border-left-color: var(--kp-orange);
  }

  .hero__facts dt {
    min-height: 0;
    gap: 6px;
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero__facts dt i {
    font-size: 13px;
  }

  .hero__facts dd {
    margin-top: 0;
    font-size: 16px;
    line-height: 1.4;
    text-align: right;
  }
}
