/* ============================================================
   KEEPORA — GLOBAL DESIGN SYSTEM
   Clean production stylesheet
   ============================================================ */

.keepora-page {
  --kp-black:#12141a;
  --kp-navy:#1c2038;
  --kp-text:#43464f;
  --kp-muted:#787a85;
  --kp-paper:#f7f6f2;
  --kp-white:#fff;
  --kp-line:#d5d5cf;
  --kp-red:#e62e33;
  --kp-orange:#f07819;
  --kp-yellow:#f4d500;
  --kp-green:#73b929;
  --kp-deepgreen:#08763d;
  --kp-cyan:#16b6d0;
  --kp-blue:#30378d;
  --kp-brown:#a65d48;
  --kp-pink:#c91d7a;
  --kp-purple:#25205e;
  --kp-content-width:1280px;
  --kp-side-padding:32px;
  --kp-transition:.3s ease;
  width:100%;
  margin:0;
  padding:0;
  color:var(--kp-text);
  background:var(--kp-white);
  font-family:"Jost","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.85;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

.keepora-page h1,
.keepora-page h2,
.keepora-page h3,
.keepora-page h4,
.keepora-page h5,
.keepora-page h6,
.keepora-page p,
.keepora-page ul,
.keepora-page ol { margin:0; padding:0; }

.keepora-page a { color:inherit; text-decoration:none; }
.keepora-page button,
.keepora-page input,
.keepora-page textarea,
.keepora-page select { font-family:inherit; }

/* ============================================================
   THEME PAGE HEADER / BREADCRUMB
   ============================================================ */

body:has(.keepora-page) .page-header-content {
  position:relative;
  z-index:2;
  margin:0;
  padding:0 0 28px;
}

body:has(.keepora-page) .page-header-content > *:first-child {
  margin-bottom:10px;
}

body:has(.keepora-page) .page-header-content .page-title {
  position:relative;
  z-index:2;
  margin:0;
  padding:0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.keepora-page h1,
.keepora-page h2,
.keepora-page h3,
.keepora-page h4,
.keepora-page h5,
.keepora-page h6 {
  color:var(--kp-black);
  font-family:"Space Grotesk","Helvetica Neue",Arial,sans-serif;
  font-weight:600;
  text-rendering:optimizeLegibility;
}

.keepora-page h1,
.keepora-page h2 { font-size:44px; line-height:1.08; letter-spacing:-2px; }
.keepora-page h3 { font-size:21px; line-height:1.15; letter-spacing:-.4px; }
.keepora-page h4 { font-size:18px; line-height:1.3; letter-spacing:-.2px; }
.keepora-page h5 { font-size:16px; line-height:1.35; letter-spacing:-.1px; }
.keepora-page h6 { font-size:14px; line-height:1.4; }

.keepora-page p,
.keepora-page li,
.keepora-page td,
.keepora-page th {
  color:var(--kp-text);
  font-family:"Jost","Helvetica Neue",Arial,sans-serif;
  font-size:16px;
  font-weight:400;
  line-height:1.85;
}

.keepora-page strong { font-family:"Jost","Helvetica Neue",Arial,sans-serif; font-weight:600; }
.keepora-page em { font-style:normal; }

/* ============================================================
   CONTAINERS / SHARED COMPONENTS
   ============================================================ */

.keepora-page .kp-wrap,
.keepora-page.kp-about .kp-hero-content,
.keepora-page.kp-about .kp-editorial-inner,
.keepora-page.kp-about .kp-final-inner,
.keepora-page.kp-quality .kq-hero-content,
.keepora-page.kp-quality .kq-statement-main,
.keepora-page.kp-quality .kq-path-title,
.keepora-page.kp-quality .kq-material-left-content,
.keepora-page.kp-quality .kq-production-copy,
.keepora-page.kp-quality .kq-detail-copy,
.keepora-page.kp-quality .kq-durability-title,
.keepora-page.kp-quality .kq-trust-main,
.keepora-page.kp-quality .kq-final-inner,
.keepora-page.kp-design .kd-hero-content,
.keepora-page.kp-design .kd-intro-main,
.keepora-page.kp-design .kd-principles-head,
.keepora-page.kp-design .kd-function-title,
.keepora-page.kp-design .kd-experience-title,
.keepora-page.kp-design .kd-final-inner,
.keepora-page.kp-contact .kp-contact-hero-content,
.keepora-page.kp-contact .kp-contact-strip-inner {
  width:min(var(--kp-content-width),calc(100% - (var(--kp-side-padding) * 2)));
  margin-left:auto;
  margin-right:auto;
}

.keepora-page .kp-label {
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 20px;
  color:var(--kp-muted);
  font-family:"Jost","Helvetica Neue",Arial,sans-serif;
  font-size:11px;
  font-weight:600;
  line-height:1;
  letter-spacing:3.5px;
  text-transform:uppercase;
}

.keepora-page .kp-label::before {
  content:"";
  width:34px;
  height:1.5px;
  flex:0 0 34px;
  background:currentColor;
}

.keepora-page .kp-number { color:var(--kp-muted); font-size:12px; font-weight:600; line-height:1; letter-spacing:2.5px; }
.keepora-page .kp-red { color:var(--kp-red); }
.keepora-page .kp-orange { color:var(--kp-orange); }
.keepora-page .kp-yellow { color:var(--kp-yellow); }
.keepora-page .kp-green { color:var(--kp-green); }
.keepora-page .kp-deepgreen { color:var(--kp-deepgreen); }
.keepora-page .kp-cyan { color:var(--kp-cyan); }
.keepora-page .kp-blue { color:var(--kp-blue); }
.keepora-page .kp-brown { color:var(--kp-brown); }
.keepora-page .kp-pink { color:var(--kp-pink); }
.keepora-page .kp-purple { color:var(--kp-purple); }
.keepora-page .kp-muted { color:var(--kp-muted); }
.keepora-page .kp-dark { color:var(--kp-black); }

.keepora-page .kp-section { padding:110px 0; }
.keepora-page .kp-section-small { padding:80px 0; }
.keepora-page .kp-section-large { padding:140px 0; }

/* ============================================================
   ABOUT
   ============================================================ */

.keepora-page.kp-about { overflow-x:clip; overflow-y:visible; }

.keepora-page.kp-about .kp-hero {
  position:relative;
  min-height:580px;
  display:flex;
  align-items:center;
  background:var(--kp-paper);
  isolation:isolate;
  overflow:visible;
}

.keepora-page.kp-about .kp-hero::before {
  content:"";
  position:absolute;
  z-index:-1;
  width:720px;
  height:720px;
  right:-150px;
  top:-180px;
  border-radius:52% 48% 45% 55%;
  background:linear-gradient(135deg,rgba(29,35,65,.96),rgba(48,55,141,.8) 48%,rgba(22,182,208,.42));
  transform:rotate(-17deg);
  pointer-events:none;
}

.keepora-page.kp-about .kp-hero::after {
  content:"";
  position:absolute;
  z-index:-1;
  width:440px;
  height:440px;
  right:110px;
  bottom:-250px;
  border-radius:50%;
  background:rgba(237,48,53,.18);
  filter:blur(2px);
  pointer-events:none;
}

.keepora-page.kp-about .kp-hero-content { padding:100px 0 80px; }
.keepora-page.kp-about .kp-hero-mark { display:inline-flex; align-items:center; gap:12px; margin-bottom:20px; color:var(--kp-black); font-size:13px; font-weight:600; letter-spacing:2.5px; text-transform:lowercase; }
.keepora-page.kp-about .kp-hero-mark span { display:block; position:relative; width:28px; height:28px; border:2px solid var(--kp-navy); border-radius:50%; }
.keepora-page.kp-about .kp-hero-mark span::after { content:""; position:absolute; width:9px; height:9px; left:7px; top:7px; border:2px solid var(--kp-navy); border-radius:50%; }
.keepora-page.kp-about .kp-hero h1 { width:100%; max-width:820px; font-size:clamp(40px,5vw,56px); line-height:1.05; letter-spacing:-2.5px; }
.keepora-page.kp-about .kp-hero h1 em { display:block; color:var(--kp-red); font-style:normal; font-weight:500; }
.keepora-page.kp-about .kp-hero-description { max-width:580px; margin-top:50px; }
.keepora-page.kp-about .kp-hero-caption { position:absolute; left:50%; bottom:34px; transform:translateX(-50%); color:var(--kp-muted); white-space:nowrap; font-size:10px; font-weight:500; letter-spacing:3.5px; }

.keepora-page.kp-about .kp-manifesto,
.keepora-page.kp-about .kp-editorial,
.keepora-page.kp-about .kp-principles,
.keepora-page.kp-about .kp-design,
.keepora-page.kp-about .kp-solutions,
.keepora-page.kp-about .kp-trust,
.keepora-page.kp-about .kp-sustainability { padding:110px 0; }

.keepora-page.kp-about .kp-manifesto { background:#fff; }
.keepora-page.kp-about .kp-manifesto-grid,
.keepora-page.kp-about .kp-section-head,
.keepora-page.kp-about .kp-solutions-head,
.keepora-page.kp-about .kp-sustainability-grid { display:grid; grid-template-columns:280px 1fr; gap:75px; align-items:start; }
.keepora-page.kp-about .kp-manifesto h2,
.keepora-page.kp-about .kp-section-head h2,
.keepora-page.kp-about .kp-solutions-head h2,
.keepora-page.kp-about .kp-trust h2,
.keepora-page.kp-about .kp-about-quality-copy h2,
.keepora-page.kp-about .kp-design-copy h2,
.keepora-page.kp-about .kp-sustainability h2 { font-size:38px; line-height:1.2; letter-spacing:-1px; }
.keepora-page.kp-about .kp-manifesto h2 span,
.keepora-page.kp-about .kp-section-head h2 span,
.keepora-page.kp-about .kp-solutions-head h2 span,
.keepora-page.kp-about .kp-trust h2 span,
.keepora-page.kp-about .kp-about-quality-copy h2 span,
.keepora-page.kp-about .kp-design-copy h2 span,
.keepora-page.kp-about .kp-sustainability h2 span { color:var(--kp-red); }
.keepora-page.kp-about .kp-manifesto-main { max-width:860px; }
.keepora-page.kp-about .kp-manifesto-copy { max-width:690px; margin-top:25px; }
.keepora-page.kp-about .kp-manifesto-copy + .kp-manifesto-copy { margin-top:16px; }
.keepora-page.kp-about .kp-manifesto-statement { margin-top:40px; padding-top:25px; border-top:1px solid var(--kp-line); color:var(--kp-black); font-size:17px; line-height:1.7; font-weight:500; }

.keepora-page.kp-about .kp-editorial { position:relative; background:var(--kp-navy); color:#fff; overflow:hidden; }
.keepora-page.kp-about .kp-editorial::before { content:""; position:absolute; width:780px; height:780px; right:-300px; top:-300px; border:1px solid rgba(255,255,255,.15); border-radius:50%; box-shadow:0 0 0 80px rgba(255,255,255,.025),0 0 0 160px rgba(255,255,255,.02); pointer-events:none; }
.keepora-page.kp-about .kp-editorial::after { content:""; position:absolute; width:500px; height:160px; left:-100px; bottom:50px; border-top:1px solid rgba(255,255,255,.15); border-radius:50%; transform:rotate(-15deg); pointer-events:none; }
.keepora-page.kp-about .kp-editorial-inner { position:relative; z-index:2; }
.keepora-page.kp-about .kp-editorial .kp-label { color:#a5aabf; }
.keepora-page.kp-about .kp-editorial h2 { max-width:840px; margin-top:25px; color:#fff; font-weight:500; }
.keepora-page.kp-about .kp-editorial h2 span { color:#ef3940; }
.keepora-page.kp-about .kp-editorial-copy { max-width:580px; margin-top:30px; color:#d0d2dc; }

.keepora-page.kp-about .kp-principles { background:var(--kp-paper); }
.keepora-page.kp-about .kp-section-head { margin-bottom:50px; }
.keepora-page.kp-about .kp-section-head p,
.keepora-page.kp-about .kp-solutions-head p { max-width:680px; margin-top:25px; }
.keepora-page.kp-about .kp-principles-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--kp-line); border-left:1px solid var(--kp-line); }
.keepora-page.kp-about .kp-principle { min-height:260px; padding:35px 36px 40px; border-right:1px solid var(--kp-line); border-bottom:1px solid var(--kp-line); background:rgba(255,255,255,.3); transition:background .35s ease,transform .35s ease; }
.keepora-page.kp-about .kp-principle:hover { background:#fff; transform:translateY(-4px); }
.keepora-page.kp-about .kp-principle-index { color:var(--kp-muted); font-size:11px; font-weight:600; letter-spacing:2.5px; }
.keepora-page.kp-about .kp-principle h3 { margin-top:35px; font-size:21px; line-height:1.2; }
.keepora-page.kp-about .kp-principle p { max-width:280px; margin-top:14px; font-size:14px; line-height:1.75; }

.keepora-page.kp-about .kp-about-quality { display:grid; grid-template-columns:1fr 1fr; min-height:580px; }
.keepora-page.kp-about .kp-about-quality-visual { position:relative; overflow:hidden; background:linear-gradient(140deg,#11152a 0%,#202849 45%,#343c91 100%); }
.keepora-page.kp-about .kp-about-quality-visual::before,
.keepora-page.kp-about .kp-about-quality-visual::after { content:""; position:absolute; border-radius:55% 45% 60% 40%; transform:rotate(-28deg); pointer-events:none; }
.keepora-page.kp-about .kp-about-quality-visual::before { width:680px; height:280px; left:-160px; bottom:100px; background:linear-gradient(90deg,rgba(255,255,255,.05),rgba(255,255,255,.24),rgba(255,255,255,.04)); }
.keepora-page.kp-about .kp-about-quality-visual::after { width:600px; height:190px; left:-70px; bottom:190px; border:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-about .kp-about-quality-word { position:absolute; left:42px; bottom:35px; color:rgba(255,255,255,.08); font-size:clamp(65px,8vw,115px); line-height:1; font-weight:700; letter-spacing:10px; text-transform:uppercase; white-space:nowrap; }
.keepora-page.kp-about .kp-about-quality-copy { display:flex; flex-direction:column; justify-content:center; padding:80px max(50px,6vw); background:var(--kp-paper); }
.keepora-page.kp-about .kp-about-quality-copy p { max-width:520px; margin-top:16px; }
.keepora-page.kp-about .kp-about-quality-note { margin-top:30px; padding-left:22px; border-left:2px solid var(--kp-red); color:var(--kp-black); font-size:15px; line-height:1.7; font-weight:500; }

.keepora-page.kp-about .kp-design { background:#fff; }
.keepora-page.kp-about .kp-design-grid,
.keepora-page.kp-about .kp-trust-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.keepora-page.kp-about .kp-design-copy p { max-width:560px; margin-top:25px; }
.keepora-page.kp-about .kp-design-copy p + p { margin-top:16px; }
.keepora-page.kp-about .kp-design-list { border-top:1px solid var(--kp-line); }
.keepora-page.kp-about .kp-design-row { display:grid; grid-template-columns:55px 1fr 30px; gap:20px; align-items:center; padding:25px 0; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-about .kp-design-row-number { color:var(--kp-red); font-size:11px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-about .kp-design-row strong { color:var(--kp-black); font-size:17px; font-weight:500; }
.keepora-page.kp-about .kp-design-row i { width:18px; height:1px; justify-self:end; background:var(--kp-red); }

.keepora-page.kp-about .kp-solutions { background:var(--kp-paper); }
.keepora-page.kp-about .kp-categories { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; margin-top:50px; }
.keepora-page.kp-about .kp-category { position:relative; min-height:210px; padding:24px; overflow:hidden; background:var(--cat,var(--kp-navy)); transition:transform .35s ease; }
.keepora-page.kp-about .kp-category:hover { transform:translateY(-5px); }
.keepora-page.kp-about .kp-category::before { content:""; position:absolute; width:220px; height:70px; right:-55px; bottom:45px; border:1px solid rgba(255,255,255,.25); border-radius:50%; transform:rotate(-18deg); pointer-events:none; }
.keepora-page.kp-about .kp-category::after { content:""; position:absolute; width:170px; height:55px; right:-30px; bottom:25px; border:1px solid rgba(255,255,255,.17); border-radius:50%; transform:rotate(-18deg); pointer-events:none; }
.keepora-page.kp-about .kp-category small { color:rgba(255,255,255,.75); font-size:10px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-about .kp-category-mark { position:absolute; right:25px; top:25px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.55); border-radius:50%; }
.keepora-page.kp-about .kp-category-mark svg { width:14px; height:14px; stroke:rgba(255,255,255,.85); fill:none; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.keepora-page.kp-about .kp-category h3 { position:absolute; left:28px; bottom:28px; color:#fff; font-size:24px; font-weight:500; }

.keepora-page.kp-about .kp-trust { background:#fff; }
.keepora-page.kp-about .kp-trust-grid { align-items:start; gap:100px; }
.keepora-page.kp-about .kp-trust-copy { max-width:540px; margin-top:25px; }
.keepora-page.kp-about .kp-trust-right { display:flex; flex-direction:column; border-top:1px solid var(--kp-line); }
.keepora-page.kp-about .kp-trust-item { padding:28px 0; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-about .kp-trust-item strong { display:block; color:var(--kp-black); font-size:19px; font-weight:500; }
.keepora-page.kp-about .kp-trust-item p { margin-top:10px; font-size:14px; line-height:1.75; }

.keepora-page.kp-about .kp-sustainability { color:#fff; background:#181b24; }
.keepora-page.kp-about .kp-sustainability-grid { align-items:center; gap:70px; }
.keepora-page.kp-about .kp-sustainability h2 { color:#fff; font-weight:500; }
.keepora-page.kp-about .kp-sustainability-points { display:grid; grid-template-columns:repeat(3,1fr); margin-top:50px; border-top:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-about .kp-sustainability-point { padding:28px 20px 28px 0; }
.keepora-page.kp-about .kp-sustainability-point + .kp-sustainability-point { padding-left:25px; border-left:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-about .kp-sustainability-point strong { display:block; color:#fff; font-size:20px; font-weight:500; }
.keepora-page.kp-about .kp-sustainability-point span { display:block; margin-top:8px; color:#b0b3be; font-size:14px; line-height:1.7; }

.keepora-page.kp-about .kp-final,
.keepora-page.kp-quality .kq-final,
.keepora-page.kp-design .kd-final { position:relative; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden; background:#fff; }
.keepora-page.kp-about .kp-final { min-height:520px; }
.keepora-page.kp-about .kp-final::before,
.keepora-page.kp-quality .kq-final::before { content:""; position:absolute; width:520px; height:520px; left:-190px; bottom:-250px; border-radius:50%; background:rgba(22,182,208,.13); pointer-events:none; }
.keepora-page.kp-about .kp-final::after,
.keepora-page.kp-quality .kq-final::after { content:""; position:absolute; width:420px; height:420px; right:-180px; top:-220px; border-radius:50%; background:rgba(237,48,53,.1); pointer-events:none; }
.keepora-page.kp-about .kp-final h2 { max-width:780px; margin:24px auto 0; font-size:38px; line-height:1.2; letter-spacing:-1px; }
.keepora-page.kp-about .kp-final h2 span,
.keepora-page.kp-quality .kq-final h2 span,
.keepora-page.kp-design .kd-final h2 span { color:var(--kp-red); }
.keepora-page.kp-about .kp-final p { max-width:500px; margin:25px auto 0; }
.keepora-page.kp-about .kp-final-brand,
.keepora-page.kp-quality .kq-final-brand,
.keepora-page.kp-design .kd-final-brand { margin-top:42px; color:var(--kp-navy); font-size:12px; font-weight:600; letter-spacing:6px; text-transform:lowercase; }

/* ============================================================
   QUALITY
   ============================================================ */

.keepora-page.kp-quality .kq-hero,
.keepora-page.kp-design .kd-hero,
.keepora-page.kp-contact .kp-contact-hero { position:relative; min-height:580px; display:flex; align-items:center; background:var(--kp-paper); overflow:hidden; }

.keepora-page.kp-quality .kq-hero::before,
.keepora-page.kp-design .kd-hero::before,
.keepora-page.kp-contact .kp-contact-hero::before { content:""; position:absolute; width:620px; height:620px; right:-330px; top:-285px; border:1px solid rgba(48,55,141,.16); border-radius:50%; pointer-events:none; }
.keepora-page.kp-quality .kq-hero::after,
.keepora-page.kp-design .kd-hero::after,
.keepora-page.kp-contact .kp-contact-hero::after { content:""; position:absolute; width:470px; height:470px; right:-215px; top:-210px; border:1px solid rgba(48,55,141,.09); border-radius:50%; pointer-events:none; }

.keepora-page.kp-quality .kq-hero-line,
.keepora-page.kp-design .kd-hero-line,
.keepora-page.kp-contact .kp-contact-hero-line { position:absolute; left:0; right:0; top:90px; height:1px; background:var(--kp-line); z-index:1; pointer-events:none; }
.keepora-page.kp-quality .kq-hero-line::after,
.keepora-page.kp-design .kd-hero-line::after,
.keepora-page.kp-contact .kp-contact-hero-line::after { content:""; position:absolute; left:7%; top:-1px; width:110px; height:3px; background:var(--kp-red); }
.keepora-page.kp-quality .kq-hero-content,
.keepora-page.kp-design .kd-hero-content,
.keepora-page.kp-contact .kp-contact-hero-content { position:relative; z-index:2; padding:100px 0 80px; }
.keepora-page.kp-quality .kq-hero-meta,
.keepora-page.kp-design .kd-hero-meta,
.keepora-page.kp-contact .kp-contact-meta { margin-bottom:20px; }
.keepora-page.kp-quality .kq-hero h1 span,
.keepora-page.kp-design .kd-hero h1 span,
.keepora-page.kp-contact .kp-contact-hero h1 span { color:var(--kp-red); }
.keepora-page.kp-quality .kq-hero-copy,
.keepora-page.kp-design .kd-hero-copy,
.keepora-page.kp-contact .kp-contact-hero-copy { max-width:700px; margin-top:30px; }
.keepora-page.kp-quality .kq-hero-bottom,
.keepora-page.kp-design .kd-hero-bottom,
.keepora-page.kp-contact .kp-contact-hero-bottom { display:flex; justify-content:space-between; align-items:center; margin-top:55px; padding-top:20px; border-top:1px solid var(--kp-line); color:var(--kp-muted); font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase; }

.keepora-page.kp-quality .kq-statement,
.keepora-page.kp-quality .kq-path,
.keepora-page.kp-quality .kq-production,
.keepora-page.kp-quality .kq-detail,
.keepora-page.kp-quality .kq-durability,
.keepora-page.kp-quality .kq-trust { padding:110px 0; }
.keepora-page.kp-quality .kq-statement { background:#fff; }
.keepora-page.kp-quality .kq-statement-grid,
.keepora-page.kp-quality .kq-path-head,
.keepora-page.kp-quality .kq-production-grid,
.keepora-page.kp-quality .kq-trust-grid { display:grid; grid-template-columns:280px 1fr; gap:75px; align-items:start; }
.keepora-page.kp-quality .kq-statement-main h2,
.keepora-page.kp-quality .kq-path-title h2,
.keepora-page.kp-quality .kq-production-copy h2,
.keepora-page.kp-quality .kq-detail h2,
.keepora-page.kp-quality .kq-durability-title h2 { max-width:850px; }
.keepora-page.kp-quality .kq-statement-main h2 span,
.keepora-page.kp-quality .kq-path-title h2 span,
.keepora-page.kp-quality .kq-production-copy h2 span,
.keepora-page.kp-quality .kq-detail h2 span,
.keepora-page.kp-quality .kq-durability-title h2 span { color:var(--kp-red); }
.keepora-page.kp-quality .kq-statement-copy,
.keepora-page.kp-quality .kq-path-intro,
.keepora-page.kp-quality .kq-production-copy > p,
.keepora-page.kp-quality .kq-detail-copy,
.keepora-page.kp-quality .kq-durability-side { max-width:700px; margin-top:25px; }
.keepora-page.kp-quality .kq-statement-note,
.keepora-page.kp-quality .kq-intro-note { display:flex; align-items:flex-start; gap:20px; max-width:760px; margin-top:40px; padding-top:25px; border-top:1px solid var(--kp-line); color:var(--kp-black); font-size:15px; line-height:1.7; }
.keepora-page.kp-quality .kq-statement-note i { flex:0 0 36px; width:36px; height:1px; margin-top:10px; background:var(--kp-red); }
.keepora-page.kp-quality .kq-statement-note span { font-weight:500; }
.keepora-page.kp-quality .kq-path { background:var(--kp-paper); }
.keepora-page.kp-quality .kq-path-head { margin-bottom:50px; align-items:end; }
.keepora-page.kp-quality .kq-process { position:relative; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid #c9c9c3; border-bottom:1px solid #c9c9c3; }
.keepora-page.kp-quality .kq-process::before { content:""; position:absolute; left:0; right:0; top:76px; height:1px; background:#c9c9c3; }
.keepora-page.kp-quality .kq-step { position:relative; min-height:270px; padding:28px 30px 35px 0; }
.keepora-page.kp-quality .kq-step + .kq-step { padding-left:30px; border-left:1px solid #c9c9c3; }
.keepora-page.kp-quality .kq-step-no { color:var(--kp-muted); font-size:11px; font-weight:600; letter-spacing:2.5px; }
.keepora-page.kp-quality .kq-step h3 { margin-top:55px; font-size:21px; }
.keepora-page.kp-quality .kq-step p { max-width:230px; margin-top:14px; font-size:14px; line-height:1.75; }
.keepora-page.kp-quality .kq-material { display:grid; grid-template-columns:1fr 1fr; min-height:560px; }
.keepora-page.kp-quality .kq-material-left { position:relative; display:flex; align-items:center; min-height:560px; padding:80px; overflow:hidden; background:linear-gradient(135deg,#15182a 0%,#222a50 52%,#30378d 100%); }
.keepora-page.kp-quality .kq-material-left::before { content:""; position:absolute; width:620px; height:620px; right:-340px; top:-260px; border:1px solid rgba(255,255,255,.12); border-radius:50%; pointer-events:none; }
.keepora-page.kp-quality .kq-material-left::after { content:""; position:absolute; width:430px; height:430px; right:-200px; top:-160px; border:1px solid rgba(255,255,255,.09); border-radius:50%; pointer-events:none; }
.keepora-page.kp-quality .kq-material-left .kp-label { color:#aeb2c3; }
.keepora-page.kp-quality .kq-material-left h2 { max-width:550px; margin-top:30px; color:#fff; font-weight:500; }
.keepora-page.kp-quality .kq-material-left h2 span { color:var(--kp-red); }
.keepora-page.kp-quality .kq-material-right { display:flex; flex-direction:column; justify-content:center; padding:90px 75px; background:#fff; }
.keepora-page.kp-quality .kq-material-right > p { max-width:570px; }
.keepora-page.kp-quality .kq-material-facts { max-width:570px; margin-top:50px; border-top:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-material-fact { display:grid; grid-template-columns:80px 1fr; gap:25px; align-items:center; min-height:80px; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-material-fact span { color:var(--kp-muted); font-size:10px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-quality .kq-material-fact strong { color:var(--kp-black); font-size:17px; font-weight:500; }
.keepora-page.kp-quality .kq-production { background:#fff; }
.keepora-page.kp-quality .kq-production-grid { grid-template-columns:320px 1fr; gap:70px; }
.keepora-page.kp-quality .kq-production-copy { position:sticky; top:40px; }
.keepora-page.kp-quality .kq-production-copy > p { max-width:510px; margin-top:35px; }
.keepora-page.kp-quality .kq-production-list { border-top:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-production-item { display:grid; grid-template-columns:60px 1fr; gap:28px; padding:34px 0 38px; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-production-item-number { color:var(--kp-red); font-size:11px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-quality .kq-production-item h3 { font-size:21px; }
.keepora-page.kp-quality .kq-production-item p { max-width:430px; margin-top:10px; font-size:14px; line-height:1.75; }
.keepora-page.kp-quality .kq-detail { position:relative; background:var(--kp-paper); overflow:hidden; }
.keepora-page.kp-quality .kq-detail-strip { display:grid; grid-template-columns:repeat(3,1fr); margin-top:65px; border-top:1px solid var(--kp-line); border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-detail-cell { min-height:170px; padding:30px 30px 30px 0; }
.keepora-page.kp-quality .kq-detail-cell + .kq-detail-cell { padding-left:30px; border-left:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-detail-cell > span { color:var(--kp-muted); font-size:10px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-quality .kq-detail-cell strong { display:block; margin-top:28px; color:var(--kp-black); font-size:18px; font-weight:600; }
.keepora-page.kp-quality .kq-detail-cell p { max-width:240px; margin-top:10px; font-size:14px; line-height:1.75; }
.keepora-page.kp-quality .kq-durability { background:#fff; }
.keepora-page.kp-quality .kq-durability-statement { display:grid; grid-template-columns:1fr 1fr; margin-top:70px; border-top:1px solid var(--kp-line); border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-durability-big { padding:55px 50px 55px 0; color:var(--kp-black); font-size:36px; line-height:1.2; font-weight:500; letter-spacing:-1px; }
.keepora-page.kp-quality .kq-durability-big span { color:var(--kp-red); }
.keepora-page.kp-quality .kq-durability-small { display:flex; align-items:center; padding:55px 0 55px 50px; border-left:1px solid var(--kp-line); }
.keepora-page.kp-quality .kq-trust { background:var(--kp-navy); color:#fff; }
.keepora-page.kp-quality .kq-trust-grid { grid-template-columns:320px 1fr; gap:70px; }
.keepora-page.kp-quality .kq-trust .kp-label { color:#aeb2c3; }
.keepora-page.kp-quality .kq-trust-main h2 { max-width:720px; color:#fff; font-weight:500; }
.keepora-page.kp-quality .kq-trust-main h2 span { color:var(--kp-red); }
.keepora-page.kp-quality .kq-trust-main > p { max-width:700px; margin-top:30px; color:#aeb2c3; }
.keepora-page.kp-quality .kq-trust-points { display:grid; grid-template-columns:repeat(3,1fr); margin-top:65px; border-top:1px solid rgba(255,255,255,.18); border-bottom:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-quality .kq-trust-point { padding:30px 25px 30px 0; }
.keepora-page.kp-quality .kq-trust-point + .kq-trust-point { padding-left:25px; border-left:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-quality .kq-trust-point strong { display:block; color:#fff; font-size:18px; font-weight:500; }
.keepora-page.kp-quality .kq-trust-point p { margin-top:12px; color:#aeb2c3; font-size:14px; line-height:1.75; }
.keepora-page.kp-quality .kq-final { min-height:430px; padding:90px 24px; }
.keepora-page.kp-quality .kq-final h2 { max-width:800px; margin:25px auto 0; }
.keepora-page.kp-quality .kq-final p { max-width:570px; margin:30px auto 0; }

/* ============================================================
   DESIGN
   ============================================================ */

.keepora-page.kp-design .kd-hero { isolation:isolate; }
.keepora-page.kp-design .kd-hero-content { align-self:center; }
.keepora-page.kp-design .kd-intro,
.keepora-page.kp-design .kd-principles,
.keepora-page.kp-design .kd-function,
.keepora-page.kp-design .kd-experience { padding:110px 0; }
.keepora-page.kp-design .kd-intro { background:#fff; }
.keepora-page.kp-design .kd-intro-grid,
.keepora-page.kp-design .kd-principles-head,
.keepora-page.kp-design .kd-experience-top { display:grid; grid-template-columns:280px 1fr; gap:70px; align-items:start; }
.keepora-page.kp-design .kd-intro-side { padding-top:4px; }
.keepora-page.kp-design .kd-intro-main h2 { max-width:850px; }
.keepora-page.kp-design .kd-intro-main h2 span,
.keepora-page.kp-design .kd-principles-head h2 span,
.keepora-page.kp-design .kd-function-title h2 span,
.keepora-page.kp-design .kd-experience-title h2 span { color:var(--kp-red); }
.keepora-page.kp-design .kd-intro-copy { max-width:700px; margin-top:35px; }
.keepora-page.kp-design .kd-intro-copy + .kd-intro-copy { margin-top:20px; }
.keepora-page.kp-design .kd-intro-note { display:flex; align-items:flex-start; gap:20px; max-width:750px; margin-top:40px; padding-top:25px; border-top:1px solid var(--kp-line); color:var(--kp-black); font-size:15px; line-height:1.7; }
.keepora-page.kp-design .kd-intro-note i { flex:0 0 36px; width:36px; height:1px; margin-top:10px; background:var(--kp-red); }
.keepora-page.kp-design .kd-principles { background:var(--kp-navy); color:#fff; }
.keepora-page.kp-design .kd-principles-head { margin-bottom:60px; }
.keepora-page.kp-design .kd-principles .kp-label { color:#aeb2c3; }
.keepora-page.kp-design .kd-principles-head h2 { max-width:900px; color:#fff; font-weight:500; }
.keepora-page.kp-design .kd-principles-accordion { width:100%; border-top:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-design .kd-accordion-item { border-bottom:1px solid rgba(255,255,255,.18); }
.keepora-page.kp-design .kd-accordion-trigger { position:relative; width:100%; min-height:95px; display:grid; grid-template-columns:105px 1fr 40px; align-items:center; padding:0; border:0; outline:0; background:transparent; color:#fff; text-align:left; cursor:pointer; }
.keepora-page.kp-design .kd-accordion-trigger:hover { background:rgba(255,255,255,.05); }
.keepora-page.kp-design .kd-accordion-number { color:#8e92a6; font-size:11px; font-weight:600; letter-spacing:2.5px; }
.keepora-page.kp-design .kd-accordion-title { color:#fff; font-size:21px; line-height:1.15; font-weight:400; }
.keepora-page.kp-design .kd-accordion-icon { position:relative; display:block; width:20px; height:20px; margin-left:auto; }
.keepora-page.kp-design .kd-accordion-icon::before { content:""; position:absolute; left:0; top:9px; width:20px; height:1px; background:var(--kp-red); }
.keepora-page.kp-design .kd-accordion-icon::after { content:""; position:absolute; left:9px; top:0; width:1px; height:20px; background:var(--kp-red); transition:transform .3s ease,opacity .3s ease; }
.keepora-page.kp-design .kd-accordion-trigger[aria-expanded="true"] .kd-accordion-icon::after { transform:rotate(90deg); opacity:0; }
.keepora-page.kp-design .kd-accordion-content { display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease; }
.keepora-page.kp-design .kd-accordion-item.is-open .kd-accordion-content { grid-template-rows:1fr; }
.keepora-page.kp-design .kd-accordion-content-inner { min-height:0; overflow:hidden; padding-left:105px; }
.keepora-page.kp-design .kd-accordion-content-inner p { max-width:700px; padding:10px 0 30px; color:#aeb2c3; font-size:15px; line-height:1.85; }

.keepora-page.kp-design .kd-function { position:relative; background:var(--kp-paper); overflow:hidden; }
.keepora-page.kp-design .kd-function::before { content:""; position:absolute; width:520px; height:520px; left:-320px; bottom:-330px; border:1px solid rgba(48,55,141,.13); border-radius:50%; pointer-events:none; }
.keepora-page.kp-design .kd-function-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.keepora-page.kp-design .kd-function-title h2 { max-width:650px; margin-top:25px; }
.keepora-page.kp-design .kd-function-title p { max-width:570px; margin-top:35px; }

/* FUNCTION VISUAL: both objects share exactly the same center */
.keepora-page.kp-design .kd-function-visual { position:relative; min-height:440px; display:flex; align-items:center; justify-content:center; background:var(--kp-navy); overflow:hidden; isolation:isolate; }
.keepora-page.kp-design .kd-function-circle { position:absolute; left:50%; top:50%; width:380px; height:380px; transform:translate(-50%,-50%); border:1px solid rgba(255,255,255,.12); border-radius:50%; pointer-events:none; }
.keepora-page.kp-design .kd-function-circle::before { content:""; position:absolute; left:50%; top:50%; width:260px; height:260px; transform:translate(-50%,-50%); border:1px solid rgba(255,255,255,.09); border-radius:50%; }
.keepora-page.kp-design .kd-function-word {
  position:absolute;
  left:50%;
  top:50%;
  z-index:2;
  width:100%;
  max-width:100%;
  padding:0 24px;
  transform:translate(-50%,-50%);
  color:rgba(255,255,255,.88);
  font-size:54px;
  font-weight:500;
  line-height:1;
  letter-spacing:4px;
  text-transform:uppercase;
  text-align:center;
  white-space:nowrap;
}
.keepora-page.kp-design .kd-function-word span { color:var(--kp-red); }

.keepora-page.kp-design .kd-experience { background:#fff; }
.keepora-page.kp-design .kd-experience-title h2 { max-width:900px; }
.keepora-page.kp-design .kd-experience-copy { max-width:700px; margin-top:35px; }
.keepora-page.kp-design .kd-experience-list { margin-top:70px; border-top:1px solid var(--kp-line); }
.keepora-page.kp-design .kd-experience-row { display:grid; grid-template-columns:80px 1fr 30px; gap:25px; align-items:center; min-height:90px; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-design .kd-experience-row-number { color:#9a9ca3; font-size:11px; letter-spacing:2px; }
.keepora-page.kp-design .kd-experience-row strong { color:var(--kp-black); font-size:20px; font-weight:500; }
.keepora-page.kp-design .kd-experience-row i { position:relative; display:block; width:20px; height:20px; }
.keepora-page.kp-design .kd-experience-row i::before { content:""; position:absolute; left:0; top:9px; width:20px; height:1px; background:var(--kp-red); }

.keepora-page.kp-design .kd-final { min-height:430px; padding:90px 24px; }
.keepora-page.kp-design .kd-final::before { content:""; position:absolute; width:650px; height:650px; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(48,55,141,.09); border-radius:50%; pointer-events:none; }
.keepora-page.kp-design .kd-final::after { content:""; position:absolute; width:440px; height:440px; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(48,55,141,.07); border-radius:50%; pointer-events:none; }
.keepora-page.kp-design .kd-final .kp-label { justify-content:center; }
.keepora-page.kp-design .kd-final .kp-label::before { display:none; }
.keepora-page.kp-design .kd-final h2 { max-width:850px; margin:25px auto 0; font-weight:500; }
.keepora-page.kp-design .kd-final p { max-width:570px; margin:30px auto 0; }

/* ============================================================
   CONTACT
   ============================================================ */

.keepora-page.kp-contact .kp-contact-main { padding:110px 0; background:#fff; }
.keepora-page.kp-contact .kp-contact-grid { display:grid; grid-template-columns:350px 1fr; gap:70px; align-items:start; }
.keepora-page.kp-contact .kp-contact-info { position:sticky; top:40px; }
.keepora-page.kp-contact .kp-contact-info h2 { max-width:320px; margin-top:25px; font-size:38px; line-height:1.15; letter-spacing:-1.5px; }
.keepora-page.kp-contact .kp-contact-info h2 span,
.keepora-page.kp-contact .kp-contact-form-head h2 span,
.keepora-page.kp-contact .kp-contact-strip h2 span { color:var(--kp-red); }
.keepora-page.kp-contact .kp-contact-info-intro { max-width:320px; margin-top:30px; }
.keepora-page.kp-contact .kp-contact-details { margin-top:45px; border-top:1px solid var(--kp-line); }
.keepora-page.kp-contact .kp-contact-detail { display:grid; grid-template-columns:75px 1fr; gap:20px; padding:20px 0; border-bottom:1px solid var(--kp-line); }
.keepora-page.kp-contact .kp-contact-detail-key { color:var(--kp-red); font-size:11px; font-weight:600; letter-spacing:2px; }
.keepora-page.kp-contact .kp-contact-detail-value { color:var(--kp-black); font-size:15px; }
.keepora-page.kp-contact .kp-contact-detail-value a:hover { color:var(--kp-red); }
.keepora-page.kp-contact .kp-contact-form-area { position:relative; padding:24px 28px 26px; background:var(--kp-paper); border-top:3px solid var(--kp-red); }
.keepora-page.kp-contact .kp-contact-form-head { margin-bottom:20px; }
.keepora-page.kp-contact .kp-contact-form-head h2 { max-width:650px; margin-top:15px; font-size:32px; line-height:1.15; }
.keepora-page.kp-contact .kp-contact-form-head p { max-width:550px; margin-top:15px; font-size:15px; }
.keepora-page.kp-contact .wpcf7 { width:100%; }
.keepora-page.kp-contact .wpcf7-form { display:block; margin:0; }
.keepora-page.kp-contact .wpcf7-form p { margin:0 0 15px; }
.keepora-page.kp-contact .wpcf7-form label { display:block; margin-bottom:6px; color:var(--kp-black); font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.keepora-page.kp-contact .wpcf7-form input[type="text"],
.keepora-page.kp-contact .wpcf7-form input[type="email"],
.keepora-page.kp-contact .wpcf7-form input[type="tel"],
.keepora-page.kp-contact .wpcf7-form textarea { width:100%; padding:10px 12px; border:1px solid #d2d2cc; border-radius:0; outline:none; background:#fff; color:var(--kp-black); font-size:14px; line-height:1.5; transition:border-color .2s ease; }
.keepora-page.kp-contact .wpcf7-form textarea { min-height:90px; resize:vertical; }
.keepora-page.kp-contact .wpcf7-form input:focus,
.keepora-page.kp-contact .wpcf7-form textarea:focus { border-color:var(--kp-red); }
.keepora-page.kp-contact .wpcf7-form input[type="submit"] { display:inline-flex; align-items:center; justify-content:center; min-width:130px; padding:12px 20px; border:0; border-radius:0; background:var(--kp-black); color:#fff; font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; transition:background .2s ease,transform .2s ease; }
.keepora-page.kp-contact .wpcf7-form input[type="submit"]:hover { background:var(--kp-red); transform:translateY(-1px); }
.keepora-page.kp-contact .wpcf7-not-valid-tip { margin-top:4px; color:var(--kp-red); font-size:11px; }
.keepora-page.kp-contact .wpcf7-response-output { margin:10px 0 0 !important; padding:8px 12px !important; border:1px solid var(--kp-line) !important; color:var(--kp-text); font-size:12px; }
.keepora-page.kp-contact .kp-contact-strip { position:relative; min-height:310px; display:flex; align-items:center; background:var(--kp-navy); color:#fff; overflow:hidden; }
.keepora-page.kp-contact .kp-contact-strip::before { content:""; position:absolute; width:460px; height:460px; right:-110px; top:-240px; border:1px solid rgba(255,255,255,.12); border-radius:50%; pointer-events:none; }
.keepora-page.kp-contact .kp-contact-strip::after { content:""; position:absolute; width:650px; height:240px; left:-170px; bottom:-140px; border:1px solid rgba(255,255,255,.10); border-radius:50%; transform:rotate(-17deg); pointer-events:none; }
.keepora-page.kp-contact .kp-contact-strip-inner { position:relative; z-index:2; }
.keepora-page.kp-contact .kp-contact-strip h2 { max-width:900px; margin-top:25px; color:#fff; font-size:38px; line-height:1.15; font-weight:500; letter-spacing:-1.5px; }
.keepora-page.kp-contact .kp-contact-strip-bottom { display:flex; align-items:center; justify-content:space-between; max-width:900px; margin-top:50px; padding-top:18px; border-top:1px solid rgba(255,255,255,.16); color:#9297a8; font-size:9px; font-weight:600; letter-spacing:3px; text-transform:uppercase; }
.keepora-page.kp-contact .kp-contact-strip .kp-label { color:#a8acba; }
.keepora-page.kp-contact .kp-contact-strip .kp-label::before { background:#a8acba; }

/* ============================================================
   TABLET
   ============================================================ */

@media (max-width:1000px) {
  .keepora-page { --kp-side-padding:20px; }

  .keepora-page.kp-about .kp-manifesto-grid,
  .keepora-page.kp-about .kp-section-head,
  .keepora-page.kp-about .kp-solutions-head,
  .keepora-page.kp-about .kp-sustainability-grid,
  .keepora-page.kp-quality .kq-statement-grid,
  .keepora-page.kp-quality .kq-path-head,
  .keepora-page.kp-quality .kq-production-grid,
  .keepora-page.kp-quality .kq-trust-grid,
  .keepora-page.kp-design .kd-intro-grid,
  .keepora-page.kp-design .kd-principles-head,
  .keepora-page.kp-design .kd-experience-top,
  .keepora-page.kp-contact .kp-contact-grid { grid-template-columns:1fr; gap:45px; }

  .keepora-page.kp-about .kp-principles-grid { grid-template-columns:repeat(2,1fr); }
  .keepora-page.kp-about .kp-about-quality,
  .keepora-page.kp-quality .kq-material,
  .keepora-page.kp-design .kd-function-grid { grid-template-columns:1fr; gap:60px; }
  .keepora-page.kp-about .kp-about-quality-visual { min-height:500px; }
  .keepora-page.kp-about .kp-design-grid,
  .keepora-page.kp-about .kp-trust-grid { grid-template-columns:1fr; gap:70px; }
  .keepora-page.kp-about .kp-categories { grid-template-columns:repeat(3,1fr); }
  .keepora-page.kp-quality .kq-material-left { min-height:430px; }
  .keepora-page.kp-quality .kq-production-copy,
  .keepora-page.kp-contact .kp-contact-info { position:static; }
  .keepora-page.kp-quality .kq-trust-points { grid-template-columns:1fr; }
  .keepora-page.kp-quality .kq-trust-point + .kq-trust-point { padding-left:0; border-left:0; border-top:1px solid rgba(255,255,255,.18); }
  .keepora-page.kp-quality .kq-process { grid-template-columns:repeat(2,1fr); }
  .keepora-page.kp-quality .kq-step:nth-child(3) { border-left:0; }
  .keepora-page.kp-quality .kq-detail-strip { grid-template-columns:1fr; }
  .keepora-page.kp-quality .kq-detail-cell { min-height:auto; padding:28px 0; }
  .keepora-page.kp-quality .kq-detail-cell + .kq-detail-cell { padding-left:0; border-left:0; border-top:1px solid var(--kp-line); }
  .keepora-page h1,
  .keepora-page h2 { font-size:38px; }
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width:650px) {
  .keepora-page { --kp-side-padding:20px; }

  /* Theme title/breadcrumb: spacing is outside .keepora-page, so scope through body. */
  body:has(.keepora-page) .page-header-content { padding:0 20px 24px; }
  body:has(.keepora-page) .page-header-content > *:first-child { margin-bottom:12px; }
  body:has(.keepora-page) .page-header-content .page-title { margin:0; }

  /* Shared hero geometry */
  .keepora-page.kp-quality .kq-hero,
  .keepora-page.kp-design .kd-hero,
  .keepora-page.kp-contact .kp-contact-hero { min-height:500px; }

  .keepora-page.kp-quality .kq-hero-line,
  .keepora-page.kp-design .kd-hero-line,
  .keepora-page.kp-contact .kp-contact-hero-line { top:34px; }

  .keepora-page.kp-quality .kq-hero-line::after,
  .keepora-page.kp-design .kd-hero-line::after,
  .keepora-page.kp-contact .kp-contact-hero-line::after { left:0; width:64px; height:2px; top:0; }

  .keepora-page.kp-quality .kq-hero-content,
  .keepora-page.kp-design .kd-hero-content,
  .keepora-page.kp-contact .kp-contact-hero-content { padding:92px 0 48px; text-align:center; }

  .keepora-page.kp-quality .kq-hero-meta,
  .keepora-page.kp-design .kd-hero-meta,
  .keepora-page.kp-contact .kp-contact-meta { display:flex; justify-content:center; margin-bottom:18px; }

  .keepora-page.kp-quality .kq-hero h1,
  .keepora-page.kp-design .kd-hero h1,
  .keepora-page.kp-contact .kp-contact-hero h1,
  .keepora-page.kp-about .kp-hero h1 { max-width:100%; font-size:30px; line-height:1.15; letter-spacing:-1px; text-align:center; }

  .keepora-page.kp-quality .kq-hero-copy,
  .keepora-page.kp-design .kd-hero-copy,
  .keepora-page.kp-contact .kp-contact-hero-copy,
  .keepora-page.kp-about .kp-hero-description { max-width:100%; margin:20px auto 0; font-size:15px; line-height:1.75; text-align:center; }

  .keepora-page.kp-quality .kq-hero-bottom,
  .keepora-page.kp-design .kd-hero-bottom,
  .keepora-page.kp-contact .kp-contact-hero-bottom { flex-direction:column; gap:12px; margin-top:35px; padding-top:15px; text-align:center; }

  /* ABOUT HERO — MOBILE
     Same structural language as Quality / Design / Contact:
     full-width top rule, short red accent, centered content.
     About keeps its own mark + label, but has no mobile artwork. */
  .keepora-page.kp-about .kp-hero {
    min-height:500px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-color:var(--kp-paper);
    background-image:
      linear-gradient(var(--kp-line),var(--kp-line)),
      linear-gradient(var(--kp-red),var(--kp-red));
    background-repeat:no-repeat;
    background-position:0 80px, 0 79px;
    background-size:100% 1px, 64px 2px;
  }

  /* Absolutely remove the desktop artwork only at mobile width.
     The desktop pseudo-elements remain untouched. */
  .keepora-page.kp-about .kp-hero::before,
  .keepora-page.kp-about .kp-hero::after,
  body:has(.kp-about) .kp-hero::before,
  body:has(.kp-about) .kp-hero::after {
    content:none !important;
    display:none !important;
    visibility:hidden !important;
    opacity:0 !important;
    width:0 !important;
    height:0 !important;
    min-width:0 !important;
    min-height:0 !important;
    border:0 !important;
    background:none !important;
    box-shadow:none !important;
    filter:none !important;
    transform:none !important;
  }

  .keepora-page.kp-about .kp-hero-content {
    position:relative;
    z-index:2;
    width:min(var(--kp-content-width),calc(100% - (var(--kp-side-padding) * 2)));
    margin-left:auto;
    margin-right:auto;
    padding:80px 0 48px;
    text-align:center;
  }

  .keepora-page.kp-about .kp-hero-mark {
    display:flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    margin:0 auto 18px;
    gap:12px;
    font-size:12px;
    letter-spacing:2.8px;
  }

  .keepora-page.kp-about .kp-hero .kp-label {
    display:flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    margin:0 auto 18px;
  }

  .keepora-page.kp-about .kp-hero h1 {
    width:100%;
    max-width:360px;
    margin:0 auto;
    font-size:30px;
    line-height:1.15;
    letter-spacing:-1px;
    text-align:center;
  }

  .keepora-page.kp-about .kp-hero h1 em {
    display:block;
  }

  .keepora-page.kp-about .kp-hero-description {
    width:100%;
    max-width:330px;
    margin:20px auto 0;
    font-size:15px;
    line-height:1.75;
    text-align:center;
  }

  .keepora-page.kp-about .kp-hero-caption {
    position:absolute;
    left:50%;
    right:auto;
    bottom:24px;
    width:max-content;
    max-width:calc(100% - 40px);
    margin:0;
    transform:translateX(-50%);
    color:var(--kp-muted);
    white-space:nowrap;
    font-size:8px;
    line-height:1.5;
    letter-spacing:2.5px;
    text-align:center;
  }

  .keepora-page h1,
  .keepora-page h2 { font-size:32px; line-height:1.1; letter-spacing:-1.2px; }
  .keepora-page h3 { font-size:20px; }
  .keepora-page p,
  .keepora-page li,
  .keepora-page td,
  .keepora-page th { font-size:15px; line-height:1.75; }

  .keepora-page .kp-label { gap:12px; font-size:10px; letter-spacing:3px; }
  .keepora-page .kp-label::before { width:28px; flex-basis:28px; }

  .keepora-page.kp-about .kp-manifesto,
  .keepora-page.kp-about .kp-editorial,
  .keepora-page.kp-about .kp-principles,
  .keepora-page.kp-about .kp-design,
  .keepora-page.kp-about .kp-solutions,
  .keepora-page.kp-about .kp-trust,
  .keepora-page.kp-about .kp-sustainability,
  .keepora-page.kp-quality .kq-statement,
  .keepora-page.kp-quality .kq-path,
  .keepora-page.kp-quality .kq-production,
  .keepora-page.kp-quality .kq-detail,
  .keepora-page.kp-quality .kq-durability,
  .keepora-page.kp-quality .kq-trust,
  .keepora-page.kp-design .kd-intro,
  .keepora-page.kp-design .kd-principles,
  .keepora-page.kp-design .kd-function,
  .keepora-page.kp-design .kd-experience,
  .keepora-page.kp-contact .kp-contact-main { padding:70px 0; }

  /* ABOUT PRINCIPLES: every card uses exactly the same left alignment. */
  .keepora-page.kp-about .kp-principles-grid { grid-template-columns:1fr; }
  .keepora-page.kp-about .kp-principle,
  .keepora-page.kp-about .kp-principle:first-child { min-height:250px; padding:35px 36px 40px; text-align:left; }
  .keepora-page.kp-about .kp-principle + .kp-principle { padding-left:36px; border-left:0; }
  .keepora-page.kp-about .kp-principle-index { display:block; text-align:left; }
  .keepora-page.kp-about .kp-principle h3 { margin-top:35px; text-align:left; }
  .keepora-page.kp-about .kp-principle p { text-align:left; }

  .keepora-page.kp-about .kp-about-quality { grid-template-columns:1fr; }
  .keepora-page.kp-about .kp-about-quality-visual { min-height:350px; }
  .keepora-page.kp-about .kp-about-quality-copy { padding:60px 36px; }
  .keepora-page.kp-about .kp-about-quality-word { left:25px; bottom:25px; max-width:calc(100% - 50px); overflow:hidden; font-size:70px; letter-spacing:5px; }
  .keepora-page.kp-about .kp-categories { grid-template-columns:repeat(2,1fr); margin-top:45px; }
  .keepora-page.kp-about .kp-category { min-height:175px; padding:20px; }
  .keepora-page.kp-about .kp-category h3 { left:20px; bottom:20px; font-size:19px; }
  .keepora-page.kp-about .kp-category-mark { right:20px; top:20px; }
  .keepora-page.kp-about .kp-sustainability-points { grid-template-columns:1fr; }
  .keepora-page.kp-about .kp-sustainability-point { padding:25px 0; }
  .keepora-page.kp-about .kp-sustainability-point + .kp-sustainability-point { padding-left:0; border-left:0; border-top:1px solid rgba(255,255,255,.18); }

  /* QUALITY process: all six About-style cards are deliberately left aligned. */
  .keepora-page.kp-quality .kq-process { grid-template-columns:1fr; }
  .keepora-page.kp-quality .kq-process::before { display:none; }
  .keepora-page.kp-quality .kq-step,
  .keepora-page.kp-quality .kq-step:first-child { min-height:auto; padding:28px 0 34px; text-align:left; }
  .keepora-page.kp-quality .kq-step + .kq-step,
  .keepora-page.kp-quality .kq-step:nth-child(3) { padding-left:0; border-left:0; border-top:1px solid #c9c9c3; }
  .keepora-page.kp-quality .kq-step-no { display:block; text-align:left; }
  .keepora-page.kp-quality .kq-step h3 { margin-top:30px; text-align:left; }
  .keepora-page.kp-quality .kq-step p { text-align:left; }
  .keepora-page.kp-quality .kq-material { grid-template-columns:1fr; }
  .keepora-page.kp-quality .kq-material-left { min-height:350px; padding:45px 36px; }
  .keepora-page.kp-quality .kq-material-right { padding:60px 36px; }
  .keepora-page.kp-quality .kq-material-fact { grid-template-columns:90px 1fr; gap:18px; }
  .keepora-page.kp-quality .kq-production-item { grid-template-columns:45px 1fr; gap:18px; }
  .keepora-page.kp-quality .kq-detail-strip { grid-template-columns:1fr; margin-top:45px; }
  .keepora-page.kp-quality .kq-detail-cell { min-height:auto; padding:28px 0; }
  .keepora-page.kp-quality .kq-detail-cell + .kq-detail-cell { padding-left:0; border-left:0; border-top:1px solid var(--kp-line); }
  .keepora-page.kp-quality .kq-durability-statement { grid-template-columns:1fr; margin-top:45px; }
  .keepora-page.kp-quality .kq-durability-big { padding:35px 0; font-size:28px; }
  .keepora-page.kp-quality .kq-durability-small { padding:35px 0; border-left:0; border-top:1px solid var(--kp-line); }
  .keepora-page.kp-quality .kq-trust-points { grid-template-columns:1fr; margin-top:45px; }
  .keepora-page.kp-quality .kq-trust-point { padding:25px 0; }
  .keepora-page.kp-quality .kq-trust-point + .kq-trust-point { border-top:1px solid rgba(255,255,255,.18); }

  /* QUALITY visual word: scale to available width so QUALITY never clips. */
  .keepora-page.kp-about .kp-about-quality-word { font-size:clamp(42px,13vw,60px); letter-spacing:2px; }

  /* DESIGN HERO: line occupies only the top decorative band; content begins below it. */
  .keepora-page.kp-design .kd-hero { min-height:520px; }
  .keepora-page.kp-design .kd-hero::before { width:300px; height:300px; right:-185px; top:-105px; }
  .keepora-page.kp-design .kd-hero::after { width:220px; height:220px; right:-115px; top:-75px; }
  .keepora-page.kp-design .kd-hero-content { padding-top:92px; }

  .keepora-page.kp-design .kd-intro-grid,
  .keepora-page.kp-design .kd-principles-head,
  .keepora-page.kp-design .kd-experience-top { grid-template-columns:1fr; gap:35px; }
  .keepora-page.kp-design .kd-principles-head { margin-bottom:40px; }
  .keepora-page.kp-design .kd-accordion-trigger { min-height:80px; grid-template-columns:45px 1fr 30px; }
  .keepora-page.kp-design .kd-accordion-title { font-size:18px; }
  .keepora-page.kp-design .kd-accordion-content-inner { padding-left:45px; padding-right:20px; }
  .keepora-page.kp-design .kd-accordion-content-inner p { font-size:14px; padding-bottom:24px; }
  .keepora-page.kp-design .kd-function-grid { grid-template-columns:1fr; gap:40px; }

  /* FUNCTION: exact center on mobile too. */
  .keepora-page.kp-design .kd-function-visual { min-height:300px; }
  .keepora-page.kp-design .kd-function-circle { width:240px; height:240px; left:50%; top:50%; transform:translate(-50%,-50%); }
  .keepora-page.kp-design .kd-function-circle::before { width:160px; height:160px; left:50%; top:50%; transform:translate(-50%,-50%); }
  .keepora-page.kp-design .kd-function-word {
    left:50%;
    top:50%;
    width:100%;
    max-width:100%;
    padding:0 12px;
    transform:translate(-50%,-50%);
    font-size:28px;
    letter-spacing:2px;
    white-space:nowrap;
  }

  .keepora-page.kp-design .kd-experience-list { margin-top:50px; }
  .keepora-page.kp-design .kd-experience-row { grid-template-columns:45px 1fr 25px; gap:15px; min-height:80px; }
  .keepora-page.kp-design .kd-experience-row strong { font-size:17px; }
  .keepora-page.kp-design .kd-final { min-height:380px; padding:70px 16px; }

  /* CONTACT */
  .keepora-page.kp-contact .kp-contact-grid { gap:40px; }
  .keepora-page.kp-contact .kp-contact-info h2 { max-width:100%; font-size:30px; line-height:1.2; }
  .keepora-page.kp-contact .kp-contact-info-intro { max-width:100%; margin-top:20px; }
  .keepora-page.kp-contact .kp-contact-details { margin-top:35px; }
  .keepora-page.kp-contact .kp-contact-detail { grid-template-columns:60px 1fr; gap:15px; padding:16px 0; }
  .keepora-page.kp-contact .kp-contact-detail-value { font-size:14px; }
  .keepora-page.kp-contact .kp-contact-form-area { padding:25px 20px; }
  .keepora-page.kp-contact .kp-contact-form-head h2 { font-size:30px; }
  .keepora-page.kp-contact .kp-contact-strip { min-height:300px; }
  .keepora-page.kp-contact .kp-contact-strip-bottom { flex-direction:column; gap:12px; text-align:center; }

  .keepora-page.kp-about .kp-final,
  .keepora-page.kp-quality .kq-final,
  .keepora-page.kp-design .kd-final { min-height:380px; padding:70px 16px; }
}

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