/* Approved homepage shell, shared by every non-home route. */
body.kkph-inner {
  --brand-red: #d9362b;
  --brand-red-dark: #b92b23;
  --ink: #101010;
  --white: #ffffff;
  --line: #d9d9d5;
  --header-height: 76px;
  --shell: min(1460px, calc(100% - 56px));
  --font: "Archivo", Arial, sans-serif;
  --ease: cubic-bezier(.22,.75,.2,1);
}

body.kkph-inner .shell { width: var(--shell); margin-inline: auto; }

body.kkph-inner .button {
  min-height: 53px; padding: 0 20px; border: 1px solid transparent; display: inline-flex;
  align-items: center; justify-content: center; gap: 12px; color: var(--ink); text-decoration: none;
  font-size: 11px; line-height: 1; font-weight: 800; letter-spacing: .055em; text-transform: uppercase;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
body.kkph-inner .button span:last-child { transition: transform .18s var(--ease); }
body.kkph-inner .button:hover span:last-child { transform: translateX(4px); }
body.kkph-inner .button--dark { background: var(--ink); border-color: var(--ink); color: var(--white); }
body.kkph-inner .button--dark:hover { background: #333; border-color: #333; }

body.kkph-inner .site-footer { padding: 66px 0 27px; background: var(--brand-red); color: var(--white); }
body.kkph-inner .footer-grid {
  display: grid; grid-template-columns: 1.1fr .75fr .75fr 1.4fr; gap: 54px; padding-bottom: 66px;
}
body.kkph-inner .footer-brand { font-size: 29px; font-weight: 900; letter-spacing: -.05em; }
body.kkph-inner .footer-intro { max-width: 300px; margin: 17px 0 0; color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.55; }
body.kkph-inner .footer-col h3 { margin: 0 0 18px; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
body.kkph-inner .footer-col a { display: block; width: max-content; margin: 11px 0; color: rgba(255,255,255,.84); text-decoration: none; font-size: 16px; }
body.kkph-inner .footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
body.kkph-inner .footer-action h2 { margin: 0; font-size: clamp(38px, 4vw, 60px); line-height: .92; letter-spacing: -.055em; font-weight: 800; }
body.kkph-inner .footer-action .button { margin-top: 24px; }
body.kkph-inner .footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.36); display: flex; align-items: center;
  justify-content: space-between; gap: 24px; color: rgba(255,255,255,.76); font-size: 12px;
}

@media (max-width: 1120px) {
  body.kkph-inner { --shell: min(100% - 40px, 1460px); }
  body.kkph-inner .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  body.kkph-inner .footer-action { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  body.kkph-inner { --header-height: 70px; --shell: calc(100% - 28px); }
  body.kkph-inner .footer-grid { grid-template-columns: 1fr 1fr; }
  body.kkph-inner .footer-action { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body.kkph-inner .footer-grid { grid-template-columns: 1fr; }
  body.kkph-inner .footer-action { grid-column: auto; }
  body.kkph-inner .footer-bottom { align-items: flex-start; flex-direction: column; }
}
