:root {
  color-scheme: light;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-fade {
  animation: menuFade .42s cubic-bezier(.2, .8, .2, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .menu-fade {
    animation: none !important;
  }
}

body {
  margin: 0;
  background: #f3f8fb;
  color: #1e293b;
}

.kw-alert {
  position: relative;
}

.kw-site:has(.kw-alert) .kw-nav {
  top: 42px;
}

.kw-site:has(.kw-alert) main {
  padding-top: 132px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar) .kw-nav {
  top: 84px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar) main {
  padding-top: 174px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.kw-site {
  --accent: #10b981;
  --navy: #1e3a8a;
  --soft: color-mix(in srgb, var(--accent) 12%, white);
  min-height: 100vh;
}

.kw-alert {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 10px 24px;
  color: #064e3b;
  background: #d1fae5;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.kw-alert--warning {
  color: #7c2d12;
  background: #ffedd5;
}

.kw-alert--danger {
  color: #9f1239;
  background: #ffe4e6;
}

.kw-popup--top-bar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 48px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.kw-popup--top-bar.is-visible {
  display: flex;
}

.kw-popup--top-bar strong {
  font-weight: 900;
}

.kw-popup--top-bar span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.kw-popup--top-bar a {
  border-radius: 999px;
  padding: 6px 12px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.kw-popup--top-bar button,
.kw-popup-close {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.kw-popup--top-bar button {
  position: absolute;
  right: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 26px;
  line-height: 1;
}

.kw-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.kw-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.kw-brand__logo {
  width: 142px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.kw-brand span {
  display: none;
}

.kw-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.kw-nav__item {
  position: relative;
}

.kw-nav__links a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #475569;
  font-size: 15px;
  font-weight: 500;
}

.kw-nav__links a:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.kw-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.kw-nav__item:hover .kw-nav__submenu,
.kw-nav__item:focus-within .kw-nav__submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.kw-nav__submenu a {
  border-radius: 12px;
  padding: 10px 12px;
  white-space: nowrap;
}

.kw-nav__actions,
.kw-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.kw-button--large {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
}

.kw-button--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 34px -18px color-mix(in srgb, var(--accent) 70%, black);
}

.kw-button--primary:hover {
  background: color-mix(in srgb, var(--accent) 88%, black);
}

.kw-button--secondary,
.kw-button--ghost {
  border-color: #d7e1ee;
  background: white;
  color: var(--navy);
}

.kw-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}

.kw-soft {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background: #eef7f4;
}

.kw-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 64px;
}

.kw-eyebrow {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--soft);
  color: color-mix(in srgb, var(--accent) 78%, black);
  font-size: 14px;
  font-weight: 900;
}

.kw-hero h1,
.kw-section__head h2,
.kw-enroll h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.kw-hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
}

.kw-hero p,
.kw-section__head p,
.kw-enroll p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}

.kw-hero__actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.kw-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.kw-stats strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
}

.kw-stats span {
  color: #64748b;
  font-size: 14px;
}

.kw-hero__media {
  position: relative;
}

.kw-image-placeholder,
.kw-map-placeholder {
  display: grid;
  place-items: center;
  min-height: 500px;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.76) 0 30px, transparent 31px),
    linear-gradient(135deg, #eef2f7, #e2e8f0);
  color: #94a3b8;
  font-weight: 800;
  box-shadow: 0 34px 70px -34px rgba(15, 23, 42, 0.32);
}

.kw-image-placeholder--soft {
  min-height: 420px;
}

.kw-section__head {
  display: grid;
  gap: 4px;
  margin-bottom: 30px;
}

.kw-section__head--compact {
  margin-top: 58px;
}

.kw-section__head h2,
.kw-enroll h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.kw-feature-grid,
.kw-staff-grid,
.kw-review-grid,
.kw-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kw-pricing-grid,
.kw-news-grid,
.kw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kw-card {
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 26px;
  background: white;
  padding: 28px;
  box-shadow: 0 14px 34px -28px rgba(15, 23, 42, 0.5);
}

.kw-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.kw-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.kw-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.kw-split--start {
  align-items: start;
}

.kw-split h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.kw-split p {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
}

.kw-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.kw-check-list li {
  display: flex;
  gap: 10px;
  color: #334155;
  font-weight: 700;
  line-height: 1.45;
}

.kw-check-list li span {
  color: var(--accent);
  font-weight: 900;
}

.kw-badge,
.kw-pin {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #b7f4d7;
  border-radius: 999px;
  background: #dcfce7;
  color: #047857;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.kw-badge--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.kw-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.kw-price-card--featured {
  border-color: color-mix(in srgb, var(--accent) 55%, white);
  box-shadow: 0 24px 50px -30px color-mix(in srgb, var(--accent) 80%, black);
}

.kw-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 22px;
}

.kw-price strong {
  color: var(--accent);
  font-size: 36px;
  font-weight: 900;
}

.kw-price span {
  color: #64748b;
}

.kw-price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.kw-price-card li {
  display: flex;
  gap: 10px;
  color: #334155;
  line-height: 1.45;
}

.kw-price-card li span {
  color: var(--accent);
  font-weight: 900;
}

.kw-price-card .kw-button {
  margin-top: auto;
}

.kw-news-card,
.kw-album-card {
  overflow: hidden;
  padding: 0;
}

.kw-news-card__media,
.kw-album-card__cover {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.84) 0 24px, transparent 25px),
    linear-gradient(135deg, #f1f5f9, #e5e7eb);
  color: #94a3b8;
  font-weight: 900;
}

.kw-news-card__media img,
.kw-album-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kw-album-card__cover strong {
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.62);
  color: white;
  padding: 7px 11px;
  font-size: 12px;
}

.kw-news-card__body,
.kw-album-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.kw-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.kw-news-card h3,
.kw-album-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.kw-news-card p,
.kw-album-card p {
  margin: 0;
}

.kw-album-card__body {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.kw-icon,
.kw-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--soft);
  color: var(--accent);
  font-weight: 900;
}

.kw-meal-list,
.kw-events,
.kw-timeline,
.kw-position-list {
  display: grid;
  gap: 14px;
}

.kw-meal,
.kw-event {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background: white;
  padding: 20px 24px;
}

.kw-meal span {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.kw-meal strong {
  color: var(--navy);
  font-size: 20px;
}

.kw-meal small,
.kw-event p {
  color: #64748b;
}

.kw-event time {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 20px;
  background: var(--navy);
  color: white;
}

.kw-event time strong {
  font-size: 28px;
  line-height: 1;
}

.kw-event time span {
  font-size: 12px;
  font-weight: 900;
}

.kw-event h3 {
  margin: 0 0 5px;
  color: var(--navy);
}

.kw-timeline {
  position: relative;
}

.kw-timeline__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 22px;
  background: white;
  padding: 20px 24px;
}

.kw-timeline__item time {
  color: var(--accent);
  font-weight: 900;
}

.kw-timeline__item h3,
.kw-position strong {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
}

.kw-timeline__item p {
  margin: 6px 0 0;
  color: #64748b;
  line-height: 1.6;
}

.kw-person {
  text-align: center;
  min-width: 0;
}

.kw-person .kw-avatar {
  margin: 0 auto 16px;
}

.kw-person small {
  display: block;
  margin-top: 14px;
  color: #64748b;
  line-height: 1.55;
}

.kw-review p {
  color: #334155;
  font-size: 17px;
}

.kw-review strong,
.kw-review span {
  display: block;
}

.kw-review strong {
  margin-top: 22px;
  color: var(--navy);
  font-weight: 900;
}

.kw-review span,
.kw-position span {
  margin-top: 4px;
  color: #64748b;
  font-weight: 700;
}

.kw-position {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  background: #f8fafc;
}

.kw-enroll {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
  border-radius: 34px;
  background: var(--navy);
  padding: clamp(28px, 5vw, 56px);
}

.kw-enroll h2,
.kw-enroll p {
  color: white;
}

.kw-form {
  display: grid;
  gap: 12px;
  border-radius: 26px;
  background: white;
  padding: 22px;
}

.kw-form input,
.kw-form textarea {
  width: 100%;
  border: 1px solid #d7e1ee;
  border-radius: 14px;
  padding: 13px 15px;
  outline: none;
}

.kw-form textarea {
  min-height: 110px;
  resize: vertical;
}

.kw-form-message {
  border: 1px solid #d7e1ee;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  line-height: 1.45;
}

.kw-form-message--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #047857;
}

.kw-form-message--error {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #e11d48;
}

.kw-contact__grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.kw-map-placeholder {
  min-height: 280px;
  box-shadow: none;
}

.kw-contact-page {
  max-width: 1200px;
  padding-top: 32px;
  padding-bottom: 96px;
}

.kw-contact-page__head {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 48px;
}

.kw-contact-page__head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.kw-contact-page__head p {
  max-width: 680px;
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.7;
}

.kw-contact-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kw-contact-page__eyebrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.kw-contact-page__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: start;
  gap: 40px;
}

.kw-contact-page__info {
  display: grid;
  gap: 20px;
}

.kw-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kw-contact-card {
  min-height: 142px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 40px -32px rgba(15, 23, 42, 0.42);
}

.kw-contact-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: #047857;
}

.kw-contact-card__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.kw-contact-card__label {
  display: block;
  margin-top: 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
}

.kw-contact-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.kw-contact-map {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: linear-gradient(135deg, #eaf0f6, #f1f5f9);
  box-shadow: 0 18px 44px -22px rgba(15, 23, 42, 0.28);
}

.kw-contact-map__roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.kw-contact-map__pin {
  position: absolute;
  left: 50%;
  top: 47%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 12px 22px -8px color-mix(in srgb, var(--accent) 60%, rgba(15, 23, 42, 0.24));
  transform: translate(-50%, -100%);
  outline: 4px solid #fff;
}

.kw-contact-map__pin svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.kw-contact-map__shadow {
  position: absolute;
  left: 50%;
  top: calc(47% + 2px);
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.18);
  filter: blur(1px);
  transform: translateX(-50%);
}

.kw-contact-map__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.25);
}

.kw-contact-map__label svg {
  width: 15px;
  height: 15px;
  color: #047857;
  fill: currentColor;
}

.kw-contact-form-card {
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 36px 70px -34px rgba(15, 23, 42, 0.30);
}

.kw-contact-form-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

.kw-contact-form {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.kw-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kw-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.kw-contact-form label em {
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.kw-contact-form input,
.kw-contact-form textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--navy);
  padding: 15px 18px;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.kw-contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.kw-contact-form input::placeholder,
.kw-contact-form textarea::placeholder {
  color: #94a3b8;
}

.kw-contact-form input:focus,
.kw-contact-form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.kw-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #34d399, var(--accent));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px -22px color-mix(in srgb, var(--accent) 70%, rgba(15, 23, 42, 0.35));
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.kw-contact-form__submit:hover {
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 22px 38px -22px color-mix(in srgb, var(--accent) 80%, rgba(15, 23, 42, 0.4));
}

.kw-contact-form__submit svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.kw-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  padding: 18px;
  color: #64748b;
  background: white;
}

.kw-empty-card h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
}

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

.kw-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  color: #64748b;
}

.kw-footer strong {
  color: var(--navy);
}

.kw-footer a {
  display: block;
  text-align: right;
}

.kw-popup-host {
  position: fixed;
  z-index: 120;
  display: none;
}

.kw-popup-host.is-visible {
  display: block;
}

.kw-popup-host--modal {
  inset: 0;
}

.kw-popup-host--slide-in {
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
}

.kw-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(5px);
}

.kw-popup-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.26);
}

.kw-popup-panel--modal {
  width: min(560px, calc(100% - 36px));
  margin: min(12vh, 120px) auto 0;
  border-radius: 28px;
  padding: 34px;
}

.kw-popup-panel--slide-in {
  width: min(390px, calc(100vw - 32px));
  border-radius: 24px;
  padding: 28px;
}

.kw-popup-panel__image {
  display: block;
  width: 100%;
  max-height: 220px;
  margin: -12px 0 22px;
  border-radius: 20px;
  object-fit: cover;
}

.kw-popup-panel h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.kw-popup-panel p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.65;
}

.kw-popup-panel .kw-button {
  margin-top: 24px;
}

.kw-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 26px;
  line-height: 1;
}

@media (max-width: 980px) {
  .kw-nav {
    align-items: flex-start;
  }

  .kw-nav__links,
  .kw-nav__actions {
    display: none;
  }

  .kw-hero,
  .kw-enroll,
  .kw-split,
  .kw-contact__grid,
  .kw-contact-page__layout {
    grid-template-columns: 1fr;
  }

  .kw-feature-grid,
  .kw-staff-grid,
  .kw-review-grid,
  .kw-pricing-grid,
  .kw-news-grid,
  .kw-gallery-grid {
    grid-template-columns: 1fr;
  }

  .kw-image-placeholder {
    min-height: 320px;
  }

  .kw-popup--top-bar {
    flex-direction: column;
    gap: 6px;
    padding: 12px 46px 12px 18px;
    text-align: left;
  }

  .kw-popup-panel--modal {
    margin-top: 72px;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .kw-section {
    width: min(100% - 28px, 1160px);
    padding: 48px 0;
  }

  .kw-contact-page {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .kw-contact-page__head {
    margin-bottom: 32px;
  }

  .kw-contact-cards,
  .kw-contact-form__row {
    grid-template-columns: 1fr;
  }

  .kw-contact-card,
  .kw-contact-form-card {
    border-radius: 22px;
    padding: 22px;
  }

  .kw-contact-map {
    min-height: 260px;
    border-radius: 24px;
  }

  .kw-soft {
    padding-inline: 14px;
  }

  .kw-hero h1 {
    font-size: 38px;
  }

  .kw-meal,
  .kw-event,
  .kw-timeline__item {
    grid-template-columns: 1fr;
  }

  .kw-footer {
    display: grid;
  }

  .kw-footer a {
    text-align: left;
  }
}

/* Kidolo-Web template alignment: keep CMS logic, restore public-site look. */
:root {
  --kw-bg: #f5fafd;
  --kw-ink: #0f172a;
  --kw-ink-2: #475569;
  --kw-ink-3: #7c8aa0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 32rem),
    linear-gradient(180deg, #f8fcff 0%, var(--kw-bg) 44%, #ffffff 100%);
  color: var(--kw-ink);
}

.kw-site {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kw-nav {
  position: fixed;
  inset: 0 0 auto;
  min-height: 72px;
  padding: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
}

.kw-nav::before {
  content: "";
  position: absolute;
  inset: 0 max(20px, calc((100% - 1200px) / 2));
  pointer-events: none;
}

.kw-nav > * {
  position: relative;
}

.kw-nav {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding-inline: max(20px, calc((100% - 1200px) / 2));
}

.kw-nav--home {
  background: rgba(255, 255, 255, 0.74);
}

.kw-brand {
  min-width: 0;
}

.kw-brand__logo {
  width: 205px;
  height: 58px;
  object-fit: contain;
}

.kw-nav__links {
  justify-content: center;
  gap: 2px;
}

.kw-nav__links a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--kw-ink-2);
  font-size: 15px;
  font-weight: 500;
}

.kw-nav__links a:hover {
  background: rgba(15, 23, 42, 0.05);
  color: var(--navy);
}

.kw-nav__links a.is-active {
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-nav__actions {
  justify-content: flex-end;
}

.kw-nav__actions .kw-button {
  font-weight: 650;
}

.kw-button {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.kw-button--large {
  min-height: 52px;
  padding-inline: 24px;
}

.kw-button--primary {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 18px 34px -20px color-mix(in srgb, var(--accent) 80%, black);
}

.kw-button--secondary,
.kw-button--ghost {
  border-color: rgba(30, 58, 138, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: none;
}

.kw-button--secondary:hover,
.kw-button--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 48%, white);
  background: color-mix(in srgb, var(--accent) 8%, white);
}

main {
  padding-top: 72px;
}

.kw-breadcrumb {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--kw-ink-3);
  font-size: 14px;
  font-weight: 700;
}

.kw-breadcrumb a {
  color: var(--kw-ink-2);
}

.kw-breadcrumb strong {
  color: var(--navy);
}

.kw-breadcrumb--plain {
  background: transparent;
}

.kw-breadcrumb--bar,
.kw-breadcrumb--has-bg {
  width: 100%;
  max-width: none;
  padding: clamp(34px, 4vw, 58px) max(20px, calc((100% - 1200px) / 2)) clamp(28px, 3vw, 44px);
}

.kw-breadcrumb--bg-mint {
  background: color-mix(in srgb, var(--accent) 7%, white);
}

.kw-breadcrumb--bg-soft {
  background: var(--bg-soft, #f8fafc);
}

.kw-breadcrumb--bg-white {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

.kw-breadcrumb--bg-custom {
  background: var(--breadcrumb-bg, color-mix(in srgb, var(--accent) 7%, white));
}

.kw-section {
  width: min(1100px, calc(100% - 40px));
  padding: 82px 0;
}

.kw-soft {
  width: 100%;
  padding: 82px max(20px, calc((100% - 1100px) / 2));
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.58), rgba(239, 246, 255, 0.72));
}

.kw-eyebrow {
  gap: 8px;
  border: 0;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: color-mix(in srgb, var(--accent) 72%, #064e3b);
  font-size: 14px;
  font-weight: 800;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent);
  animation: live-dot 1.8s ease-out infinite;
}

@keyframes live-dot {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 42%, transparent); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.kw-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 72px);
  padding-top: 92px;
  padding-bottom: 72px;
}

.kw-hero h1,
.kw-section__head h2,
.kw-enroll h2,
.kw-split h2,
.kw-cta h2 {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  color: var(--navy);
  text-wrap: balance;
}

.kw-hero h1 {
  font-size: clamp(40px, 6.2vw, 66px);
  line-height: 1.04;
}

.kw-hero p,
.kw-section__head p,
.kw-enroll p,
.kw-split p,
.kw-cta p {
  color: var(--kw-ink-2);
  font-size: 18px;
  line-height: 1.72;
  text-wrap: pretty;
}

.kw-stats {
  gap: 34px;
}

.kw-stats strong {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
}

.kw-hero-frame {
  position: relative;
}

.kw-hero-frame image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.35;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.28);
}

.kw-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.kw-blob--one {
  top: -40px;
  right: -28px;
  width: 220px;
  height: 220px;
  background: color-mix(in srgb, var(--accent) 16%, white);
}

.kw-blob--two {
  left: -40px;
  bottom: -22px;
  width: 190px;
  height: 190px;
  background: rgba(30, 58, 138, 0.07);
}

.kw-floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 11px;
  align-items: center;
  max-width: 235px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 13px;
  box-shadow: 0 16px 36px -18px rgba(15, 23, 42, 0.32);
  animation: kw-float-a 5s ease-in-out infinite;
}

.kw-floating-card span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 14%, white);
}

.kw-floating-card strong {
  color: var(--navy);
  font-size: 13px;
}

.kw-floating-card small {
  color: var(--kw-ink-3);
  font-size: 12px;
}

.kw-floating-card--left {
  left: -18px;
  top: 22%;
}

.kw-floating-card--right {
  right: -14px;
  bottom: 12%;
  animation-name: kw-float-b;
}

@keyframes kw-float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes kw-float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.kw-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kw-features-section {
  position: relative;
  scroll-margin-top: 80px;
  padding: 80px 0;
  background: var(--bg-soft, #f4fbff);
}

.kw-features-section__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-features-section__head {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.kw-features-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--accent-soft, #d9fbe8);
  color: var(--accent-ink, #047857);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.kw-features-section__head h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.kw-features-section__head p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-2, #64748b);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.kw-section__head h2,
.kw-enroll h2,
.kw-split h2,
.kw-cta h2 {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.04;
}

.kw-card {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.34);
}

.kw-feature-card {
  min-height: 220px;
}

.kw-icon,
.kw-avatar {
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: color-mix(in srgb, var(--accent) 82%, #064e3b);
}

.kw-story-media {
  position: relative;
}

.kw-story-media image-slot {
  display: block;
  width: 100%;
  min-height: 440px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, 0.3);
}

.kw-story-note {
  position: absolute;
  right: -18px;
  bottom: 28px;
  max-width: 255px;
  border-radius: 20px;
  background: white;
  padding: 16px 18px;
  box-shadow: 0 20px 42px -24px rgba(15, 23, 42, 0.36);
}

.kw-story-note strong {
  display: block;
  color: var(--navy);
}

.kw-story-note span {
  display: block;
  margin-top: 4px;
  color: var(--kw-ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.kw-avatar--photo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 14%, white);
}

.kw-avatar--photo image-slot {
  display: block;
  width: 92px;
  height: 92px;
}

.kw-news-card,
.kw-album-card {
  border-radius: 28px;
}

.kw-news-card__media,
.kw-album-card__cover {
  min-height: 245px;
  overflow: hidden;
}

.kw-news-card__media image-slot,
.kw-album-card__cover image-slot {
  width: 100%;
  height: 245px;
}

.kw-news-card h3,
.kw-album-card h3,
.kw-card h3 {
  color: var(--navy);
  font-weight: 900;
}

.kw-badge,
.kw-pin {
  border: 0;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
}

.kw-price-card--featured {
  transform: translateY(-8px);
}

.kw-meal,
.kw-event,
.kw-timeline__item {
  border-color: rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: 0 14px 34px -30px rgba(15, 23, 42, 0.32);
}

.kw-enroll {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 38%, transparent), transparent 28rem),
    var(--navy);
}

.kw-map-placeholder,
.kw-image-placeholder {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.78) 0 28px, transparent 29px),
    linear-gradient(135deg, #eef7f4, #e8f1fb);
}

.kw-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 18%, transparent), transparent 24rem),
    white;
  padding: clamp(30px, 5vw, 56px);
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.34);
}

.kw-cta h2 {
  margin: 16px 0 0;
}

.kw-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) repeat(3, minmax(130px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  padding: 54px 20px;
}

.kw-footer a {
  text-align: left;
  color: var(--kw-ink-2);
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .kw-nav {
    grid-template-columns: 1fr auto;
  }

  .kw-nav__links {
    display: none;
  }
}

@media (max-width: 980px) {
  main {
    padding-top: 72px;
  }

  .kw-nav {
    align-items: center;
  }

  .kw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kw-floating-card--left {
    left: 10px;
  }

  .kw-floating-card--right {
    right: 10px;
  }

  .kw-cta,
  .kw-footer {
    grid-template-columns: 1fr;
  }

  .kw-cta {
    display: grid;
  }
}

@media (max-width: 620px) {
  .kw-nav {
    padding-inline: 14px;
  }

  .kw-brand__logo {
    width: 112px;
  }

  .kw-breadcrumb,
  .kw-section {
    width: min(100% - 28px, 1100px);
  }

  .kw-breadcrumb {
    padding-top: 84px;
  }

  .kw-soft {
    padding: 58px 14px;
  }
}

/* Final storefront scale correction: keep CMS rendering, restore template proportions. */
.kw-site {
  background:
    linear-gradient(180deg, rgba(239, 250, 247, 0.82) 0, rgba(241, 248, 252, 0.92) 620px, #f6fbfd 100%);
}

.kw-site:has(.kw-alert) main {
  padding-top: 114px;
}

.kw-alert {
  position: relative;
  z-index: 120;
}

.kw-site:has(.kw-alert) .kw-nav {
  top: 42px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar) .kw-nav {
  top: 84px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar) main {
  padding-top: 156px;
}

.kw-section {
  width: min(1200px, calc(100% - 40px));
  padding: 96px 0;
}

.kw-soft {
  padding: 96px max(20px, calc((100% - 1200px) / 2));
}

.kw-section.kw-soft {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.kw-section.kw-soft > :where(
  .kw-section__head,
  .kw-feature-grid,
  .kw-pricing-grid,
  .kw-news-grid,
  .kw-gallery-grid,
  .kw-staff-grid,
  .kw-staff-filters,
  .kw-staff-directory-grid,
  .kw-review-grid,
  .kw-contact__grid,
  .kw-timeline,
  .kw-meal-list,
  .kw-position-list
) {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.kw-section__head--center {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kw-section.kw-soft > .kw-section__head--center {
  max-width: 680px;
}

.kw-section__head--center p {
  margin-right: auto;
  margin-left: auto;
}

.kw-hero {
  width: min(1200px, calc(100% - 40px));
  grid-template-columns: minmax(0, 560px) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 78px);
  min-height: 0;
  padding-top: clamp(72px, 9vw, 118px);
  padding-bottom: 112px;
}

.kw-hero__copy {
  max-width: 560px;
}

.kw-hero h1 {
  max-width: 560px;
  font-size: clamp(42px, 5.8vw, 66px);
  letter-spacing: 0;
}

.kw-hero__lead {
  max-width: 520px;
  font-size: 18px;
}

.kw-hero-frame {
  position: relative;
  min-height: 560px;
  aspect-ratio: 4 / 4.4;
  border-radius: 32px;
  overflow: visible;
  background: transparent;
}

.kw-hero-frame::before {
  content: "";
  position: absolute;
  inset: 44px 28px 28px 28px;
  z-index: 0;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(230, 245, 252, 0.92));
  box-shadow: 0 30px 80px -42px rgba(15, 23, 42, 0.52);
}

.kw-hero-frame > image-slot {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.kw-blob {
  z-index: 0;
  opacity: 0.95;
}

.kw-floating-card {
  z-index: 3;
  min-width: 205px;
  border-radius: 22px;
  padding: 14px 16px;
}

.kw-floating-card--left {
  left: -28px;
  top: 24%;
}

.kw-floating-card--right {
  right: -24px;
  bottom: 15%;
}

.kw-feature-grid,
.kw-pricing-grid,
.kw-news-grid,
.kw-gallery-grid,
.kw-staff-grid,
.kw-review-grid {
  gap: 22px;
}

.kw-feature-card {
  min-height: 245px;
  padding: 30px;
}

.kw-features-section .kw-feature-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kw-features-section .kw-features-section__head {
  display: flex;
  max-width: 640px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.kw-features-section .kw-features-section__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.kw-features-section .kw-feature-card {
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04), 0 12px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-features-section .kw-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px -18px rgba(15, 23, 42, 0.22);
}

.kw-feature-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 10px 22px -10px var(--accent-shadow, rgba(16, 185, 129, 0.55));
}

.kw-features-section .kw-feature-card h3 {
  margin: 20px 0 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.kw-features-section .kw-feature-card p {
  margin: 10px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 15.5px;
  line-height: 1.65;
  text-wrap: pretty;
}

@media (min-width: 1024px) {
  .kw-features-section {
    padding: 112px 0;
  }
}

@media (max-width: 900px) {
  .kw-features-section .kw-feature-grid {
    grid-template-columns: 1fr;
  }
}

.kw-split {
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
  gap: clamp(44px, 7vw, 86px);
}

.kw-story-media {
  position: relative;
  min-height: auto;
}

.kw-story-media image-slot {
  min-height: 0;
  box-shadow: none;
}

.kw-story-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
  aspect-ratio: 1 / 1;
}

.kw-story-tile {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #eef7f4, #e7f0fb);
  box-shadow: 0 24px 50px -34px rgba(15, 23, 42, 0.42);
}

.kw-story-tile image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.kw-story-tile--a {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
}

.kw-story-tile--b {
  grid-column: 4 / 6;
  grid-row: 1 / 3;
}

.kw-story-tile--c {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.kw-story-tile--d {
  grid-column: 3 / 6;
  grid-row: 3 / 6;
}

.kw-story-note {
  right: 18px;
  bottom: 24px;
  z-index: 3;
}

.kw-live-menu-section {
  width: min(1100px, calc(100% - 40px));
}

.kw-live-menu-panel {
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 18%, rgba(16, 185, 129, 0.28), transparent 28rem),
    linear-gradient(150deg, #102a64, #1e3a8a 54%, #0f766e);
  color: white;
  padding: clamp(30px, 5vw, 52px);
  box-shadow: 0 34px 90px -48px rgba(15, 23, 42, 0.6);
}

.kw-live-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.kw-live-menu-head .kw-eyebrow,
.kw-live-menu-head h2,
.kw-live-menu-head p {
  color: white;
}

.kw-live-menu-head h2 {
  margin: 12px 0 8px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.04;
}

.kw-live-menu-head p {
  max-width: 560px;
  opacity: 0.82;
}

.kw-live-menu-kitchen {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.kw-live-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.kw-live-meal {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 24px;
  box-shadow: 0 24px 54px -36px rgba(15, 23, 42, 0.55);
}

.kw-live-meal__top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--kw-ink-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.kw-live-meal__icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.14);
}

.kw-live-meal strong {
  display: block;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 950;
}

.kw-live-meal p {
  margin: 10px 0 0;
  color: var(--kw-ink-2);
  line-height: 1.55;
}

.kw-live-menu-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.kw-live-empty {
  grid-column: 1 / -1;
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.kw-news-card__media,
.kw-album-card__cover {
  min-height: 280px;
  background: linear-gradient(145deg, #eef2f7, #e8f4f2);
}

.kw-news-card__media image-slot,
.kw-album-card__cover image-slot {
  display: block;
  width: 100%;
  height: 280px;
}

.kw-enroll {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

@media (max-width: 980px) {
  .kw-site:has(.kw-alert) main {
    padding-top: 104px;
  }

  .kw-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .kw-hero-frame {
    min-height: 430px;
  }

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

  .kw-live-menu-head {
    display: grid;
  }

  .kw-live-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .kw-section,
  .kw-live-menu-section,
  .kw-enroll {
    width: min(100% - 28px, 1200px);
  }

  .kw-hero {
    width: min(100% - 28px, 1200px);
    padding-bottom: 72px;
  }

  .kw-hero-frame {
    min-height: 360px;
  }

  .kw-story-mosaic {
    gap: 8px;
  }
}

/* Subpages use the template's tighter article rhythm, not homepage hero spacing. */
.kw-site--page main {
  padding-top: 0;
}

.kw-site--page:has(.kw-alert) main {
  padding-top: 0;
}

.kw-site--page .kw-breadcrumb {
  padding-top: 84px;
  width: min(1100px, calc(100% - 40px));
}

.kw-site--page .kw-breadcrumb + .kw-section {
  padding-top: 58px;
}

.kw-site--page .kw-section {
  width: min(1100px, calc(100% - 40px));
  padding-bottom: 76px;
}

.kw-site--page .kw-soft {
  padding-top: 76px;
  padding-bottom: 76px;
}

.kw-site--page .kw-section__head {
  margin-bottom: 28px;
}

.kw-site--page .kw-section__head h2,
.kw-site--page .kw-split h2,
.kw-site--page .kw-cta h2 {
  font-size: clamp(34px, 4vw, 48px);
}

.kw-site--page .kw-split {
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
}

.kw-site--page .kw-staff-grid {
  max-width: none;
}

.kw-site--page .kw-staff-grid--compact {
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kw-staff-section .kw-section__head--staff {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kw-staff-section .kw-section__head--staff h2 {
  text-wrap: balance;
}

.kw-staff-section .kw-section__head--staff p {
  margin: 8px auto 0;
  max-width: 620px;
  color: var(--kw-ink-2);
  line-height: 1.65;
}

.kw-staff-grid--directory {
  width: 100%;
  max-width: 1120px;
  margin: 40px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.kw-person--directory {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 24px;
}

.kw-person--directory h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.kw-person--directory p,
.kw-person--directory small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.kw-staff-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 30px auto 0;
}

.kw-staff-filter {
  border: 0;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--kw-ink-2);
  cursor: pointer;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.kw-staff-filter:hover,
.kw-staff-filter.is-active {
  transform: translateY(-1px);
  background: linear-gradient(150deg, var(--accent-400), var(--accent));
  color: white;
  box-shadow: 0 8px 20px -10px var(--accent-shadow);
}

.kw-staff-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.kw-staff-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 44px -34px rgba(15, 23, 42, 0.45);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.kw-staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px -38px rgba(15, 23, 42, 0.5);
}

.kw-staff-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #eef7f4, #e7f0fb);
}

.kw-staff-card__media image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.kw-staff-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.kw-staff-card__body h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.kw-staff-card__role {
  margin: 6px 0 0;
  color: var(--kw-ink-3);
  font-size: 13px;
}

.kw-staff-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.kw-staff-card__badges span {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 900;
}

.kw-staff-card__bio {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 0;
  color: var(--kw-ink-2);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.kw-staff-card__link {
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  margin-top: auto;
  padding: 18px 0 0;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
}

/* JSX parity pass: keep CMS blocks visually aligned with the Kidolo-Web template. */
.kw-live-menu-section {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
}

.kw-live-menu-section::before {
  position: absolute;
  top: 40px;
  right: max(0px, calc((100% - 1200px) / 2 - 120px));
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: rgba(209, 250, 229, 0.72);
  content: "";
  filter: blur(4px);
  opacity: 0.85;
  pointer-events: none;
}

.kw-live-menu-panel {
  position: relative;
  z-index: 1;
}

.kw-live-menu-head {
  align-items: flex-start;
}

.kw-live-menu-kitchen {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 12px 16px;
  line-height: 1.2;
}

.kw-live-menu-kitchen__icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--accent-400), var(--accent));
  color: #fff;
  font-size: 18px;
}

.kw-live-menu-kitchen strong,
.kw-live-menu-kitchen small {
  display: block;
}

.kw-live-menu-kitchen small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.kw-live-menu-days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.kw-live-menu-day {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.kw-live-menu-day:hover,
.kw-live-menu-day.is-active {
  transform: translateY(-1px);
  background: linear-gradient(150deg, var(--accent-400), var(--accent));
  color: #fff;
  box-shadow: 0 8px 20px -8px var(--accent-shadow);
}

.kw-live-menu-day__short {
  display: none;
}

.kw-live-meal__icon {
  position: relative;
  overflow: hidden;
}

.kw-live-meal__icon::before {
  display: block;
  color: currentColor;
  content: "🍽";
  font-size: 18px;
  line-height: 1;
}

.kw-live-meal__icon--breakfast {
  background: #fef3c7;
  color: #b45309;
}

.kw-live-meal__icon--breakfast::before {
  content: "☕";
}

.kw-live-meal__icon--lunch {
  background: #ecfdf5;
  color: #047857;
}

.kw-live-meal__icon--lunch::before {
  content: "♨";
}

.kw-live-meal__icon--snack {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-live-meal__icon--snack::before {
  content: "♡";
}

.kw-live-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.kw-live-tags span {
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.5;
}

.kw-live-tags .is-safe {
  background: #ecfdf5;
  color: #047857;
}

.kw-live-tags .is-warning {
  background: #fef2f2;
  color: #b91c1c;
}

.kw-staff-section.kw-soft {
  padding-top: 96px;
  padding-bottom: 108px;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.52), rgba(239, 246, 255, 0.74));
}

.kw-staff-section .kw-section__head--staff h2 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 0.98;
}

.kw-staff-section .kw-staff-directory-grid {
  width: min(100%, 1120px);
  margin: 40px auto 0;
}

.kw-staff-section .kw-staff-directory-grid:has(.kw-staff-card:nth-child(2):last-child) {
  width: min(100%, 560px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kw-staff-section .kw-staff-card {
  border-radius: 24px;
}

.kw-staff-section .kw-staff-card__media {
  min-height: 0;
}

.kw-staff-section .kw-staff-card__body {
  text-align: left;
}

@media (max-width: 1080px) {
  .kw-staff-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .kw-staff-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .kw-staff-directory-grid {
    grid-template-columns: 1fr;
  }

  .kw-live-menu-day__short {
    display: inline;
  }

  .kw-live-menu-day__label {
    display: none;
  }

  .kw-staff-section .kw-staff-directory-grid:has(.kw-staff-card:nth-child(2):last-child) {
    width: min(100%, 290px);
    grid-template-columns: 1fr;
  }
}

.kw-site--page .kw-cta {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto 42px;
}

@media (max-width: 980px) {
  .kw-site--page .kw-split {
    grid-template-columns: 1fr;
  }

  .kw-site--page .kw-breadcrumb {
    padding-top: 74px;
  }
}

@media (max-width: 620px) {
  .kw-site--page .kw-breadcrumb,
  .kw-site--page .kw-section,
  .kw-site--page .kw-cta {
    width: min(100% - 28px, 1100px);
  }
}

/* Final storefront parity layer.
   Dynamic Twig blocks must keep the proportions of the original Kidolo-Web JSX template. */
.kw-site--page .kw-breadcrumb {
  width: min(1200px, calc(100% - 40px));
  padding-top: clamp(86px, 8vw, 124px);
}

.kw-site--page .kw-section {
  width: min(1200px, calc(100% - 40px));
}

.kw-site--page .kw-section__head h2,
.kw-site--page .kw-split h2,
.kw-site--page .kw-cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.kw-site--page .kw-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 72px);
  align-items: center;
}

.kw-story-mosaic {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.kw-story-tile image-slot {
  min-height: 0;
  box-shadow: none;
}

.kw-section__head--compact {
  max-width: 600px;
  margin: 70px auto 0;
  text-align: center;
}

.kw-section__head--compact h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.kw-section__head--compact p {
  margin: 12px auto 0;
  color: var(--kw-ink-2);
  font-size: 15.5px;
}

.kw-staff-grid--compact {
  display: grid;
  width: min(100%, 820px);
  max-width: none;
  margin: 40px auto 0;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
}

.kw-staff-grid--compact .kw-person {
  position: relative;
  min-height: 0;
  border-radius: 28px;
  padding: 28px 24px;
  text-align: center;
}

.kw-staff-grid--compact .kw-avatar--photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 999px;
  box-shadow: 0 16px 34px -16px rgba(15, 23, 42, 0.3);
}

.kw-staff-grid--compact .kw-avatar--photo image-slot {
  width: 110px;
  height: 110px;
  min-height: 0;
}

.kw-staff-grid--compact .kw-person h3 {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.18;
}

.kw-staff-grid--compact .kw-person p {
  margin-top: 4px;
  color: var(--accent-ink);
  font-size: 13.5px;
  font-weight: 700;
}

.kw-staff-grid--compact .kw-person small {
  margin-top: 12px;
  color: var(--kw-ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.kw-staff-section.kw-soft {
  width: 100%;
  padding: 80px 20px 96px;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.5), rgba(239, 246, 255, 0.72));
}

.kw-staff-section .kw-section__head--staff {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.kw-staff-section .kw-section__head--staff h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
}

.kw-staff-section .kw-section__head--staff p {
  max-width: 620px;
  margin: 12px auto 0;
}

.kw-staff-section .kw-staff-directory-grid {
  width: min(1200px, 100%);
  margin: 40px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.kw-staff-section .kw-staff-directory-grid:has(.kw-staff-card:nth-child(2):last-child) {
  width: min(100%, 760px);
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.kw-staff-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.kw-staff-card__media {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.kw-staff-card__media image-slot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  box-shadow: none;
}

.kw-staff-card__body {
  min-width: 0;
  padding: 20px;
}

.kw-staff-card__body h3,
.kw-staff-card__role,
.kw-staff-card__bio {
  overflow-wrap: normal;
  word-break: normal;
}

.kw-live-menu-section {
  width: 100%;
  padding: 80px 20px 112px;
}

.kw-live-menu-section .kw-live-menu-panel {
  width: min(1100px, 100%);
  margin: 0 auto;
  border-radius: 34px;
  background: linear-gradient(160deg, #102a64, var(--navy));
  box-shadow: 0 40px 80px -40px rgba(15, 23, 42, 0.55);
}

.kw-live-menu-section .kw-live-menu-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.kw-live-menu-section .kw-live-menu-head .kw-eyebrow {
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.kw-live-menu-section .kw-live-menu-head .live-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35);
}

.kw-live-menu-section .kw-live-menu-head p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
}

.kw-live-menu-section .kw-live-menu-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.kw-live-menu-section .kw-live-menu-day {
  display: inline-flex;
  min-width: 0;
  justify-content: center;
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.kw-live-menu-section .kw-live-menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.kw-live-menu-section .kw-live-menu-grid[hidden] {
  display: none !important;
}

.kw-live-menu-section .kw-live-menu-day.is-active {
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 8px 20px -8px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-live-menu-section .kw-live-meal {
  border-radius: 24px;
  padding: 24px;
  box-shadow: none;
}

.kw-text-button-banner-section {
  width: min(1200px, calc(100% - 40px));
  padding-block: 40px;
}

.kw-news-detail-section + .kw-text-button-banner-section {
  padding-top: clamp(88px, 7vw, 128px);
}

.kw-news-detail-section + .kw-text-button-banner-section .kw-text-button-banner {
  margin-top: clamp(28px, 3vw, 56px);
}

.kw-text-button-banner-section--bg-mint,
.kw-text-button-banner-section--bg-soft,
.kw-text-button-banner-section--bg-white,
.kw-text-button-banner-section--bg-custom {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-left: max(20px, calc((100% - 1200px) / 2));
}

.kw-text-button-banner-section--bg-mint {
  background: color-mix(in srgb, var(--accent) 7%, white);
}

.kw-text-button-banner-section--bg-soft {
  background: var(--bg-soft, #f8fafc);
}

.kw-text-button-banner-section--bg-white {
  background: #fff;
}

.kw-text-button-banner-section--bg-custom {
  background: var(--text-button-section-bg, transparent);
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 96px);
  min-height: 0;
  padding: clamp(48px, 5vw, 72px);
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__content {
  max-width: 680px;
  text-align: left;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
  flex: 0 0 auto;
  justify-self: auto;
}

@media (max-width: 900px) {
  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
    width: 100%;
  }
}

/* Fixed public header offset and lighter breadcrumb rhythm. */
.kw-site--page main {
  padding-top: 72px;
}

.kw-site--page:has(.kw-alert) main {
  padding-top: 114px;
}

.kw-site--page:has(.kw-alert):has(.kw-popup--top-bar.is-visible) main {
  padding-top: 156px;
}

.kw-site--page .kw-breadcrumb,
.kw-news-breadcrumb-inline__inner {
  font-weight: 500;
}

.kw-site--page .kw-breadcrumb a,
.kw-news-breadcrumb-inline__inner a {
  font-weight: 500;
}

.kw-site--page .kw-breadcrumb strong,
.kw-news-breadcrumb-inline__inner strong {
  font-weight: 800;
}

.kw-nav--minimal {
  grid-template-columns: minmax(180px, 1fr) auto;
}

.kw-nav--minimal .kw-brand {
  min-width: 0;
}

.kw-nav__close {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  color: #475569;
  font-size: 15px;
  font-weight: 800;
}

.kw-nav__close span {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.kw-enroll-wizard {
  min-height: calc(100vh - 114px);
  padding: clamp(92px, 8vw, 128px) 20px 64px;
  background:
    radial-gradient(760px 320px at 50% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 68%),
    #fff;
}

.kw-enroll-wizard svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-enroll-wizard__head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.kw-enroll-wizard__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.kw-enroll-wizard__head h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.kw-enroll-wizard__head p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.55;
}

.kw-enroll-wizard__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(960px, 100%);
  margin: 42px auto 0;
  padding: 0;
  list-style: none;
}

.kw-enroll-wizard__steps li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.kw-enroll-wizard__steps li + li::before {
  content: "";
  position: absolute;
  top: 19px;
  right: calc(50% + 34px);
  width: calc(100% - 50px);
  height: 3px;
  border-radius: 999px;
  background: #e2e8f0;
}

.kw-enroll-wizard__steps li.is-done + li::before,
.kw-enroll-wizard__steps li.is-active + li::before {
  background: color-mix(in srgb, var(--accent) 40%, #e2e8f0);
}

.kw-enroll-wizard__steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid #dbe6f2;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 15px;
  font-weight: 900;
}

.kw-enroll-wizard__steps li.is-active span,
.kw-enroll-wizard__steps li.is-done span {
  border-color: transparent;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px -14px color-mix(in srgb, var(--accent) 88%, #052e2b);
}

.kw-enroll-wizard__steps li.is-active strong {
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
}

.kw-enroll-wizard__card {
  width: min(960px, 100%);
  margin: 34px auto 0;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: #fff;
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 36px 70px -34px rgba(15, 23, 42, 0.3);
}

.kw-enroll-wizard__panel {
  display: grid;
  gap: 18px;
}

.kw-enroll-wizard__panel[hidden] {
  display: none;
}

.kw-enroll-wizard__kicker {
  margin: 0;
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
  font-size: 14px;
  font-weight: 900;
}

.kw-enroll-wizard__panel h2 {
  margin: -10px 0 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.kw-enroll-wizard__panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.kw-enroll-wizard__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.kw-enroll-wizard label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.kw-enroll-wizard__full {
  grid-column: 1 / -1;
}

.kw-enroll-wizard input,
.kw-enroll-wizard select,
.kw-enroll-wizard textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--navy);
  padding: 15px 18px;
  font: inherit;
  font-weight: 650;
  outline: none;
}

.kw-enroll-wizard textarea {
  resize: vertical;
}

.kw-enroll-wizard input::placeholder,
.kw-enroll-wizard textarea::placeholder {
  color: #94a3b8;
}

.kw-enroll-wizard input:focus,
.kw-enroll-wizard select:focus,
.kw-enroll-wizard textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

.kw-enroll-wizard label em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.kw-enroll-wizard__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.kw-enroll-wizard__field {
  margin-top: 0;
}

.kw-enroll-wizard__drop {
  position: relative;
  place-items: center;
  border: 2px dashed color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--accent) 7%, #f8fafc);
  padding: 34px 20px;
  color: #64748b;
  text-align: center;
  cursor: pointer;
}

.kw-enroll-wizard__drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.kw-enroll-wizard__drop strong {
  color: var(--navy);
}

.kw-enroll-wizard__consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  border: 1.5px solid transparent;
  border-radius: 18px;
  background: #f8fafc;
  padding: 16px;
}

.kw-enroll-wizard__consent input {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.kw-enroll-wizard__consent span {
  display: grid;
  gap: 4px;
}

.kw-enroll-wizard__consent small {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.kw-enroll-wizard__consent em {
  color: #dc2626;
}

.kw-enroll-wizard__summary {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

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

.kw-enroll-wizard__summary-grid article {
  display: grid;
  gap: 8px;
  border-radius: 18px;
  background: #f8fafc;
  padding: 18px;
}

.kw-enroll-wizard__summary-grid strong {
  color: var(--navy);
}

.kw-enroll-wizard__summary-grid span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.kw-enroll-wizard__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.kw-enroll-wizard__actions .kw-button--primary {
  flex: 1;
}

.kw-enroll-wizard__secure {
  margin: 22px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 760px) {
  .kw-nav--minimal {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .kw-enroll-wizard {
    padding-top: 42px;
  }

  .kw-enroll-wizard__steps {
    gap: 8px;
  }

  .kw-enroll-wizard__steps strong {
    display: none;
  }

  .kw-enroll-wizard__steps li + li::before {
    right: calc(50% + 25px);
    width: calc(100% - 34px);
  }

  .kw-enroll-wizard__grid,
  .kw-enroll-wizard__summary-grid {
    grid-template-columns: 1fr;
  }

  .kw-enroll-wizard__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 96px);
  min-height: 0;
  padding: clamp(48px, 5vw, 72px);
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__content {
  max-width: 680px;
  text-align: left;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
  flex: 0 0 auto;
  justify-self: auto;
}

@media (max-width: 900px) {
  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
    width: 100%;
  }
}

.kw-text-button-banner {
  position: relative;
  display: grid;
  min-height: clamp(360px, 38vw, 560px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(36px, 8vw, 130px);
  overflow: hidden;
  border-radius: clamp(34px, 4.2vw, 60px);
  padding: clamp(58px, 8vw, 118px) clamp(48px, 8vw, 110px);
  background:
    radial-gradient(circle at 86% 24%, rgba(16, 185, 129, 0.22), transparent 24rem),
    linear-gradient(115deg, #fff 0%, #fff 45%, #f0fdfa 72%, #e8f6ff 100%);
  box-shadow: 0 40px 90px -56px rgba(15, 23, 42, 0.46);
  color: var(--navy);
}

.kw-text-button-banner--dark {
  min-height: 0;
  grid-template-columns: minmax(0, 640px) auto;
  gap: 32px;
  border-radius: 34px;
  padding: 48px 28px;
  background:
    linear-gradient(150deg, var(--navy), var(--navy-deep, #102f66));
  box-shadow: 0 42px 86px -56px rgba(15, 23, 42, 0.68);
}

.kw-text-button-banner__glow {
  position: absolute;
  top: -48px;
  right: -40px;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: var(--accent-glow, rgba(16, 185, 129, 0.26));
  filter: blur(64px);
  pointer-events: none;
}

.kw-text-button-banner__pattern {
  position: absolute;
  left: 42px;
  bottom: 44px;
  width: 230px;
  height: 190px;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(30, 58, 138, 0.22) 0 4px, transparent 4px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 95%);
  pointer-events: none;
}

.kw-text-button-banner--dark .kw-text-button-banner__pattern {
  left: 16px;
  bottom: 12px;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 2px, transparent 2px);
  background-size: 20px 20px;
  mask-image: none;
}

.kw-text-button-banner__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.kw-text-button-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 20px;
  background: #d9fbe8;
  color: #059669;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 850;
  line-height: 1;
}

.kw-text-button-banner--dark .kw-text-button-banner__badge {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.kw-text-button-banner__badge span {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 9px rgba(16, 185, 129, 0.08);
}

.kw-text-button-banner--dark .kw-text-button-banner__badge span {
  width: 10px;
  height: 10px;
  border-width: 0;
  background: var(--accent);
  box-shadow: none;
}

.kw-text-button-banner h2 {
  margin: clamp(34px, 4vw, 48px) 0 0;
  max-width: 900px;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(46px, 6.4vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}

.kw-text-button-banner--dark h2 {
  max-width: 640px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

.kw-text-button-banner p {
  max-width: 880px;
  margin: clamp(24px, 2.8vw, 34px) 0 0;
  color: #64748b;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.32;
}

.kw-text-button-banner--dark p {
  max-width: 640px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.5;
  text-wrap: pretty;
}

.kw-text-button-banner__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: clamp(230px, 20vw, 330px);
  border-radius: 999px;
  padding: 26px 42px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 22px 44px -26px rgba(16, 185, 129, 0.7);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kw-text-button-banner--dark .kw-text-button-banner__button {
  width: fit-content;
  min-width: 0;
  justify-self: end;
  padding: 14px 28px;
  background: #fff;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.56);
}

.kw-text-button-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px -28px rgba(16, 185, 129, 0.8);
}

.kw-text-button-banner__button span {
  font-size: 1.18em;
  line-height: 1;
}

@media (max-width: 1080px) {
  .kw-staff-section .kw-staff-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .kw-site--page .kw-split {
    grid-template-columns: 1fr;
  }

  .kw-story-mosaic {
    max-width: 620px;
  }

  .kw-staff-section .kw-staff-directory-grid,
  .kw-live-menu-section .kw-live-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kw-live-menu-section .kw-live-menu-days {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .kw-text-button-banner {
    grid-template-columns: 1fr;
  }

  .kw-text-button-banner__button {
    justify-self: start;
  }

  .kw-live-menu-section .kw-live-menu-day {
    padding-inline: 10px;
  }

  .kw-live-menu-section .kw-live-menu-day__label {
    display: none;
  }

  .kw-live-menu-section .kw-live-menu-day__short {
    display: inline;
  }
}

@media (max-width: 640px) {
  .kw-staff-grid--compact,
  .kw-staff-section .kw-staff-directory-grid,
  .kw-staff-section .kw-staff-directory-grid:has(.kw-staff-card:nth-child(2):last-child),
  .kw-live-menu-section .kw-live-menu-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .kw-text-button-banner {
    min-height: 0;
    border-radius: 30px;
    padding: 34px 26px;
  }

  .kw-text-button-banner__button {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;
  }
}

/* Vue component parity layer. Header and footer stay untouched below this point. */
.kw-features-section {
  position: relative;
  width: 100%;
  scroll-margin-top: 80px;
  padding: 80px 0;
  background: var(--bg-soft, #eef8fb);
}

@media (min-width: 1024px) {
  .kw-features-section {
    padding: 112px 0;
  }
}

.kw-features-section__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-features-section .kw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.kw-features-section .kw-feature-card {
  min-height: 100%;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-features-section .kw-feature-card:hover {
  transform: translateY(-6px);
}

.kw-live-menu-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  scroll-margin-top: 80px;
  padding: 80px 20px 112px;
}

.kw-live-menu-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: max(0px, calc((100% - 1100px) / 2 - 96px));
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: var(--accent-soft, #d1fae5);
  opacity: 0.72;
  filter: blur(4px);
  pointer-events: none;
}

.kw-live-menu-section .kw-live-menu-panel {
  position: relative;
  width: min(1100px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  background: linear-gradient(160deg, var(--navy-deep, #102a64), var(--navy, #1e3a8a));
  box-shadow: 0 40px 80px -40px rgba(15, 23, 42, 0.55);
}

@media (min-width: 1024px) {
  .kw-live-menu-section .kw-live-menu-panel {
    padding: 48px;
  }
}

.kw-live-menu-section .kw-live-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.kw-live-menu-section .kw-live-menu-head h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.kw-live-menu-section .kw-live-menu-head p {
  max-width: 460px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
}

.kw-live-menu-section .kw-live-menu-kitchen {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.kw-live-menu-section .kw-live-menu-kitchen__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
}

.kw-live-menu-section .kw-live-menu-kitchen strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.kw-live-menu-section .kw-live-menu-kitchen small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.2;
}

.kw-live-menu-section .kw-live-menu-days {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.kw-live-menu-section .kw-live-menu-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.kw-live-menu-section .kw-live-menu-day:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.kw-live-menu-section .kw-live-menu-day.is-active {
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 8px 20px -8px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-live-menu-section .kw-live-menu-day__short {
  display: none;
}

.kw-live-menu-section .kw-live-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.kw-live-menu-section .kw-live-menu-grid[hidden] {
  display: none !important;
}

.kw-live-menu-section .kw-live-meal {
  border: 0;
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: none;
}

.kw-live-menu-section .kw-live-meal__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kw-live-menu-section .kw-live-meal__top > span:last-child {
  color: var(--ink-3, #64748b);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kw-live-menu-section .kw-live-meal__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.kw-live-menu-section .kw-live-meal strong {
  display: block;
  margin-top: 16px;
  color: var(--navy, #1e3a8a);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.kw-live-menu-section .kw-live-meal p {
  margin: 8px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 14.5px;
  line-height: 1.55;
}

.kw-live-menu-section .kw-live-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.kw-live-menu-section .kw-live-menu-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13.5px;
}

.kw-kidolo-app-section {
  position: relative;
  width: 100%;
  scroll-margin-top: 80px;
  padding: 80px 0;
  background: var(--bg-soft, #eef8fb);
}

@media (min-width: 1024px) {
  .kw-kidolo-app-section {
    padding: 112px 0;
  }
}

.kw-kidolo-app-section__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-kidolo-app-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px 40px;
}

.kw-kidolo-app-phone {
  position: relative;
  order: 1;
  width: min(330px, 100%);
  margin: 0 auto;
}

.kw-kidolo-app-phone__blob {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.kw-kidolo-app-phone__blob--left {
  top: -24px;
  left: -24px;
  width: 224px;
  height: 224px;
  background: var(--accent-soft, #d1fae5);
}

.kw-kidolo-app-phone__blob--right {
  right: -24px;
  bottom: 8px;
  width: 176px;
  height: 176px;
  background: rgba(30, 58, 138, 0.08);
}

.kw-kidolo-app-device {
  position: relative;
  z-index: 1;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 44px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
}

.kw-kidolo-app-screen {
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg-soft, #eef8fb);
}

.kw-kidolo-app-screen__top {
  position: relative;
  padding: 24px 20px 16px;
  background: linear-gradient(160deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
}

.kw-kidolo-app-screen__brand,
.kw-kidolo-app-screen__bell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kw-kidolo-app-screen__brand {
  gap: 8px;
}

.kw-kidolo-app-screen__brand span,
.kw-kidolo-app-screen__bell {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.kw-kidolo-app-screen__brand strong {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.kw-kidolo-app-screen__bell {
  position: absolute;
  top: 24px;
  right: 20px;
  border-radius: 999px;
}

.kw-kidolo-app-screen__bell small {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--navy, #1e3a8a);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.kw-kidolo-app-screen__top h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.kw-kidolo-app-screen__top p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  line-height: 1.35;
}

.kw-kidolo-app-screen__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 300px;
  padding: 14px;
}

.kw-kidolo-app-mini-card {
  border-radius: 16px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.kw-kidolo-app-mini-card--row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kw-kidolo-app-mini-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.kw-kidolo-app-mini-card__icon--green {
  background: #ecfdf5;
  color: #047857;
}

.kw-kidolo-app-mini-card__icon--blue {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-kidolo-app-mini-card strong,
.kw-kidolo-app-payment strong {
  display: block;
  color: var(--navy, #1e3a8a);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
}

.kw-kidolo-app-mini-card small {
  display: block;
  margin-top: 2px;
  color: var(--ink-3, #94a3b8);
  font-size: 11px;
  line-height: 1.25;
}

.kw-kidolo-app-mini-card__heart {
  margin-left: auto;
  color: #1d4ed8;
}

.kw-kidolo-app-mini-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--accent-ink, #047857);
}

.kw-kidolo-app-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.kw-kidolo-app-photos span {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
}

.kw-kidolo-app-photos span:nth-child(1) {
  background: #dbeafe;
}

.kw-kidolo-app-photos span:nth-child(2) {
  background: #fef3c7;
}

.kw-kidolo-app-photos span:nth-child(3) {
  background: #dcfce7;
}

.kw-kidolo-app-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  padding: 12px;
  background: var(--accent-soft, #d1fae5);
}

.kw-kidolo-app-payment span {
  color: var(--accent-ink, #047857);
}

.kw-kidolo-app-payment strong {
  flex: 1 1 auto;
  color: var(--accent-ink, #047857);
}

.kw-kidolo-app-payment em {
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--accent, #10b981);
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.kw-kidolo-app-content {
  order: 2;
}

.kw-kidolo-app-content h2 {
  margin: 16px 0 0;
  color: var(--navy, #1e3a8a);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

.kw-kidolo-app-content > p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 16.5px;
  line-height: 1.6;
  text-wrap: pretty;
}

.kw-kidolo-app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 28px;
}

.kw-kidolo-app-features article {
  display: flex;
  gap: 14px;
}

.kw-kidolo-app-features article > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-kidolo-app-features strong {
  display: block;
  color: var(--navy, #1e3a8a);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.kw-kidolo-app-features p {
  margin: 4px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 14px;
  line-height: 1.55;
}

.kw-kidolo-app-stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.kw-kidolo-app-stores span {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 148px;
  min-height: 48px;
  border: 1px solid rgba(30, 58, 138, 0.18);
  border-radius: 14px;
  padding: 8px 16px;
  background: #fff;
  color: var(--navy, #1e3a8a);
  box-shadow: 0 8px 22px -18px rgba(15, 23, 42, 0.45);
}

.kw-kidolo-app-stores small {
  color: var(--ink-3, #94a3b8);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
}

.kw-kidolo-app-stores strong {
  margin-top: 2px;
  color: var(--navy, #1e3a8a);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.kw-text-button-banner-section {
  width: 100%;
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .kw-text-button-banner-section {
    padding: 64px 0;
  }
}

.kw-text-button-banner-section .kw-text-button-banner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-text-button-banner-section .kw-text-button-banner--dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 0;
  overflow: hidden;
  border-radius: 34px;
  padding: 48px 28px;
  background: linear-gradient(150deg, var(--navy, #1e3a8a), var(--navy-deep, #102a64));
  box-shadow: none;
}

@media (min-width: 1024px) {
  .kw-text-button-banner-section .kw-text-button-banner--dark {
    flex-direction: row;
    padding: 64px;
  }
}

.kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__content {
  max-width: 640px;
  text-align: center;
}

@media (min-width: 1024px) {
  .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__content {
    text-align: left;
  }
}

.kw-text-button-banner-section .kw-text-button-banner--dark h2 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.kw-text-button-banner-section .kw-text-button-banner--dark p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.5;
}

.kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  border-radius: 999px;
  padding: 14px 28px;
  background: #fff;
  color: var(--accent, #10b981);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 28px -18px rgba(15, 23, 42, 0.56);
}

@media (max-width: 900px) {
  .kw-live-menu-section .kw-live-menu-grid,
  .kw-features-section .kw-feature-grid,
  .kw-kidolo-app-section__grid,
  .kw-kidolo-app-features {
    grid-template-columns: 1fr;
  }

  .kw-kidolo-app-phone {
    order: 2;
  }

  .kw-kidolo-app-content {
    order: 1;
  }

  .kw-live-menu-section .kw-live-menu-kitchen {
    display: none;
  }

  .kw-live-menu-section .kw-live-menu-day__label {
    display: none;
  }

  .kw-live-menu-section .kw-live-menu-day__short {
    display: inline;
  }

  .kw-staff-groups-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-staff-groups-strip__links {
    justify-content: flex-start;
  }
}

.kw-staff-section.kw-soft {
  position: relative;
  padding-top: 24px;
  padding-bottom: 96px;
}

.kw-staff-section .kw-section__head--staff {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kw-staff-section .kw-section__head--staff h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.kw-staff-section .kw-section__head--staff p {
  color: var(--ink-2, #64748b);
  font-size: 17px;
  line-height: 1.65;
}

.kw-staff-filters {
  justify-content: center;
  margin-top: 32px;
}

.kw-staff-filter {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--bg-soft, #eef8fb);
  color: var(--ink-2, #64748b);
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
}

.kw-staff-filter:hover,
.kw-staff-filter.is-active {
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 8px 20px -8px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-staff-section .kw-staff-directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.kw-staff-card {
  overflow: hidden;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-staff-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 22px 42px -20px rgba(15, 23, 42, 0.18);
}

.kw-staff-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.kw-staff-card__body {
  padding: 20px;
}

.kw-staff-card__body h3 {
  color: var(--navy, #1e3a8a);
  font-size: 17.5px;
  font-weight: 900;
  line-height: 1.25;
}

.kw-staff-card__title {
  margin-top: 2px;
  color: var(--ink-3, #94a3b8);
  font-size: 13px;
  line-height: 1.35;
}

.kw-staff-card__role {
  margin-top: 3px;
  color: var(--accent-ink, #047857);
  font-size: 13.5px;
  font-weight: 800;
}

.kw-staff-card__badges span {
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
  font-size: 11.5px;
  font-weight: 800;
}

.kw-staff-card__bio {
  color: var(--ink-2, #64748b);
  font-size: 14px;
  line-height: 1.55;
}

.kw-staff-card__link {
  margin-top: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--navy, #1e3a8a);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.kw-staff-card[hidden] {
  display: none;
}

.kw-staff-groups-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  border-radius: 24px;
  padding: 24px 28px;
  background: var(--accent-soft, #d1fae5);
}

.kw-staff-groups-strip h3 {
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.kw-staff-groups-strip p {
  margin: 4px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 14px;
  line-height: 1.45;
}

.kw-staff-groups-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.kw-staff-groups-strip__links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
  color: var(--navy, #1e3a8a);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px -8px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kw-staff-groups-strip__links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -14px rgba(15, 23, 42, 0.28);
}

.kw-modal-open {
  overflow: hidden;
}

.kw-staff-modal[hidden] {
  display: none !important;
}

.kw-staff-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.kw-staff-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.kw-staff-modal__panel {
  position: relative;
  z-index: 1;
  overflow: hidden auto;
  width: min(520px, 100%);
  max-height: 88vh;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.5);
}

.kw-staff-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy, #1e3a8a);
  box-shadow: 0 4px 12px -4px rgba(15, 23, 42, 0.3);
  cursor: pointer;
}

.kw-staff-modal__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-soft, #eef8fb);
}

.kw-staff-modal__media image-slot {
  width: 100%;
  height: 100%;
}

.kw-staff-modal__body {
  padding: 24px 28px 28px;
}

.kw-staff-modal__body h3 {
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-size: 23px;
  font-weight: 900;
  line-height: 1.16;
}

.kw-staff-modal__title {
  margin: 4px 0 0;
  color: var(--ink-3, #94a3b8);
  font-size: 14px;
}

.kw-staff-modal__role {
  margin: 4px 0 0;
  color: var(--accent-ink, #047857);
  font-size: 14px;
  font-weight: 800;
}

.kw-staff-modal__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.kw-staff-modal__badges span {
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
  font-size: 11.5px;
  font-weight: 800;
}

.kw-staff-modal__bio {
  margin: 16px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 15.5px;
  line-height: 1.65;
}

.kw-staff-modal__edu {
  margin-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 20px;
}

.kw-staff-modal__edu h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-size: 14px;
  font-weight: 900;
}

.kw-staff-modal__edu h4 svg {
  color: var(--accent-ink, #047857);
}

.kw-staff-modal__edu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.kw-staff-modal__edu li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-2, #64748b);
  font-size: 14px;
  line-height: 1.45;
}

.kw-staff-modal__edu li span {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--accent-ink, #047857);
  font-weight: 900;
}

.kw-events-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 112px;
}

.kw-events-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 76px;
  left: max(32px, calc((100% - 1200px) / 2));
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: var(--accent-soft, #d1fae5);
  opacity: 0.58;
  pointer-events: none;
}

.kw-events-section .kw-events-head,
.kw-events-section .kw-section__head--center {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.kw-events-section .kw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kw-events-section svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-events-section .kw-events {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: 32px 48px;
  margin-top: 48px;
}

.kw-events-section .kw-events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.kw-events-section .kw-event {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px 20px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px -14px rgba(15, 23, 42, 0.12);
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-events-section .kw-event:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 22px 42px -20px rgba(15, 23, 42, 0.18);
}

.kw-events-section .kw-event time {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 10px 22px -10px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-events-section .kw-event time strong {
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.kw-events-section .kw-event time span {
  margin-top: -10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.kw-events-section .kw-event h3 {
  color: var(--navy, #1e3a8a);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-events-section .kw-event__content {
  flex: 1 1 auto;
  min-width: 0;
}

.kw-events-section .kw-event p {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin-top: 8px;
  color: var(--ink-2, #64748b);
  font-size: 13.5px;
  line-height: 1.45;
}

.kw-events-section .kw-event p span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kw-events-section .kw-event p svg {
  width: 15px;
  height: 15px;
  color: var(--accent-ink, #047857);
}

.kw-events-section .kw-event__group {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.kw-events-section .kw-events__aside {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
  min-width: 0;
}

.kw-mini-calendar,
.kw-calendar-links,
.kw-events-sync {
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 16px 34px -18px rgba(15, 23, 42, 0.16);
}

.kw-mini-calendar {
  padding: 22px;
}

.kw-mini-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.kw-mini-calendar__header strong {
  color: var(--navy, #1e3a8a);
  font-size: 17px;
  font-weight: 900;
}

.kw-mini-calendar__header span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kw-mini-calendar__header i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: var(--ink-2, #64748b);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.kw-mini-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.kw-mini-calendar__dow {
  color: var(--ink-3, #94a3b8);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.kw-mini-calendar__empty,
.kw-mini-calendar__day {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  color: var(--ink-2, #64748b);
  font-size: 13px;
  font-weight: 800;
}

.kw-mini-calendar__day.is-highlighted {
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 10px 20px -12px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-calendar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.kw-calendar-links strong {
  color: var(--navy, #1e3a8a);
  font-size: 16px;
  font-weight: 900;
}

.kw-calendar-links a {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "icon label"
    "icon title";
  align-items: center;
  column-gap: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--navy, #1e3a8a);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kw-calendar-links a:hover {
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -18px rgba(15, 23, 42, 0.25);
}

.kw-calendar-links a span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
  font-size: 14px;
  font-weight: 900;
}

.kw-calendar-links a span svg {
  width: 18px;
  height: 18px;
}

.kw-calendar-links a[aria-label*="Apple"] span svg {
  fill: #1d1d1f;
  stroke: none;
}

.kw-calendar-links a[aria-label*="Google"] span svg rect:last-child {
  fill: #4285f4;
  stroke: none;
}

.kw-calendar-links a em {
  grid-area: label;
  color: var(--ink-3, #94a3b8);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.kw-calendar-links a {
  font-size: 14px;
  font-weight: 900;
}

.kw-events-sync {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.65), rgba(219, 234, 254, 0.55));
  color: var(--accent-ink, #047857);
  font-size: 13px;
  font-weight: 800;
}

.kw-events-sync span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
}

.kw-events-sync svg {
  width: 20px;
  height: 20px;
}

.kw-site--page main:has(.kw-events-section) {
  background: #fff;
}

.kw-site--page .kw-events-section.kw-section {
  width: min(100%, 1200px);
  padding-top: 152px;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}

.kw-site--page main:has(.kw-event-detail-section) {
  background: #fff;
}

.kw-event-detail-section {
  padding: 0 0 112px;
  background: #fff;
}

.kw-event-detail {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 176px 24px 0;
}

.kw-event-detail svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-event-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy, #1e3a8a);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.kw-event-detail__back:hover {
  opacity: 0.78;
}

.kw-event-detail__hero {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  border-radius: 28px;
  box-shadow: 0 30px 60px -28px rgba(15, 23, 42, 0.32);
}

.kw-event-detail__hero image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 2.5;
  min-height: 172px;
}

.kw-event-detail__hero image-slot::part(frame),
.kw-event-detail__hero image-slot::part(image) {
  border-radius: 28px;
}

.kw-event-detail__hero span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--accent, #10b981);
  color: #fff;
  font-size: 12.5px;
  font-weight: 900;
}

.kw-event-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  gap: 40px 54px;
  align-items: start;
  margin-top: 42px;
}

.kw-event-detail__content {
  min-width: 0;
}

.kw-event-detail__content h1 {
  color: var(--navy, #1e3a8a);
  font-family: var(--kw-display, "Bricolage Grotesque", sans-serif);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 900;
  line-height: 1.06;
  text-wrap: balance;
}

.kw-event-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  color: var(--ink-2, #64748b);
  font-size: 14.5px;
  font-weight: 600;
}

.kw-event-detail__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.kw-event-detail__meta svg {
  width: 16px;
  height: 16px;
  color: var(--accent-ink, #047857);
}

.kw-event-detail__content > p {
  margin-top: 18px;
  color: var(--ink-2, #64748b);
  font-size: 16.5px;
  line-height: 1.72;
  text-wrap: pretty;
}

.kw-event-pack {
  margin-top: 30px;
  border: 1.5px solid color-mix(in srgb, var(--accent, #10b981) 30%, transparent);
  border-radius: 24px;
  padding: 26px;
  background: var(--accent-soft, #d1fae5);
}

.kw-event-pack__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kw-event-pack__head > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
}

.kw-event-pack__head svg {
  width: 22px;
  height: 22px;
}

.kw-event-pack h2 {
  color: var(--navy, #1e3a8a);
  font-family: var(--kw-display, "Bricolage Grotesque", sans-serif);
  font-size: 19px;
  font-weight: 900;
}

.kw-event-pack ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.kw-event-pack li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy, #1e3a8a);
  font-size: 15px;
  line-height: 1.45;
}

.kw-event-pack li svg,
.kw-event-pack__note svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
  color: var(--accent-ink, #047857);
  stroke-width: 2.6;
}

.kw-event-pack__note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--accent-ink, #047857);
  font-size: 13.5px;
  font-weight: 700;
}

.kw-event-facts {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 24px 50px -28px rgba(15, 23, 42, 0.28);
}

.kw-event-facts h2 {
  color: var(--navy, #1e3a8a);
  font-family: var(--kw-display, "Bricolage Grotesque", sans-serif);
  font-size: 18px;
  font-weight: 900;
}

.kw-event-facts dl {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 22px 0 0;
}

.kw-event-facts dl div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "icon label"
    "icon value";
  column-gap: 13px;
  align-items: center;
}

.kw-event-facts dt {
  grid-area: label;
  color: var(--ink-3, #94a3b8);
  font-size: 12.5px;
  font-weight: 700;
}

.kw-event-facts dt svg {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 13px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-event-facts dd {
  grid-area: value;
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-size: 14.5px;
  font-weight: 900;
  line-height: 1.35;
}

.kw-event-facts__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 28px;
  border-radius: 999px;
  padding: 15px 18px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  box-shadow: 0 14px 28px -14px var(--accent-shadow, rgba(16, 185, 129, 0.45));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.kw-event-facts__button svg {
  width: 18px;
  height: 18px;
}

.kw-event-facts > p {
  margin: 12px 0 0;
  color: var(--ink-3, #94a3b8);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}

.kw-news-section {
  padding-top: 80px;
  padding-bottom: 112px;
}

.kw-news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.kw-news-section .kw-section__head--center {
  align-items: flex-start;
  max-width: 720px;
  margin: 0;
  text-align: left;
}

.kw-news-archive {
  flex: 0 0 auto;
}

.kw-news-pinned {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  border: 1.5px solid color-mix(in srgb, var(--accent, #10b981) 30%, transparent);
  border-radius: 24px;
  padding: 24px;
  background: var(--accent-soft, #d1fae5);
}

.kw-news-pinned__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 10px 22px -10px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-news-pinned__body {
  flex: 1 1 auto;
  min-width: 0;
}

.kw-news-pinned__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: var(--ink-3, #94a3b8);
  font-size: 13px;
  font-weight: 800;
}

.kw-news-pinned__meta span:not(.kw-pin):first-of-type {
  color: var(--accent-ink, #047857);
}

.kw-news-pinned__meta span:not(.kw-pin):last-child::before {
  content: "• ";
  color: var(--ink-3, #94a3b8);
}

.kw-news-pinned h3 {
  margin-top: 8px;
  color: var(--navy, #1e3a8a);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-news-pinned p {
  margin-top: 6px;
  color: var(--ink-2, #64748b);
  font-size: 15px;
  line-height: 1.6;
}

.kw-news-pinned__action {
  flex: 0 0 auto;
}

.kw-news-grid {
  gap: 24px;
  margin-top: 24px;
}

.kw-news-card,
.kw-album-card {
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-news-card:hover,
.kw-album-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 22px 42px -20px rgba(15, 23, 42, 0.18);
}

.kw-news-card__media,
.kw-album-card__cover {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.kw-news-card__body {
  padding: 24px;
}

.kw-news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-3, #94a3b8);
  font-size: 12.5px;
  font-weight: 800;
}

.kw-news-card__meta .kw-news-cat {
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-news-card__meta .kw-news-cat[data-cat="Jadłospis"] {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-news-card__meta .kw-news-cat[data-cat="Organizacja"] {
  background: #fef3c7;
  color: #b45309;
}

.kw-news-card__meta .kw-news-cat[data-cat="Kącik Artystyczny"] {
  background: #fce7f3;
  color: #be185d;
}

.kw-news-card__meta .kw-news-cat[data-cat="Sport"] {
  background: #ffedd5;
  color: #c2410c;
}

.kw-news-card__meta .kw-news-cat[data-cat="Ekologia"] {
  background: #dcfce7;
  color: #15803d;
}

.kw-news-card h3 {
  margin-top: 12px;
  color: var(--navy, #1e3a8a);
  font-size: 18.5px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-news-card p {
  flex: 1 1 auto;
  color: var(--ink-2, #64748b);
  font-size: 14.5px;
  line-height: 1.6;
}

.kw-news-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.kw-news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-ink, #047857);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
}

.kw-news-card__more span {
  transition: transform 0.2s ease;
}

.kw-news-card:hover .kw-news-card__more span {
  transform: translateX(4px);
}

.kw-news-detail-section {
  padding: 80px 0 8px;
  background: #fff;
}

.kw-site--page .kw-breadcrumb + .kw-news-detail-section {
  padding-top: 28px;
}

.kw-site--page main:has(.kw-news-detail-section) > .kw-breadcrumb--bar {
  padding-top: clamp(116px, 9vw, 144px);
}

.kw-news-detail {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: -12px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--accent-ink, #047857);
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}

.kw-news-detail__back:hover {
  background: #f1f5f9;
}

.kw-news-detail__back svg,
.kw-news-detail__meta svg,
.kw-news-detail-sidebox__all svg,
.kw-news-detail__share button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.kw-news-detail__header {
  max-width: 760px;
  margin-top: 30px;
}

.kw-news-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--ink-3, #94a3b8);
  font-size: 13.5px;
  font-weight: 700;
}

.kw-news-detail__meta > span:not(.kw-news-cat) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kw-news-cat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12.5px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.kw-news-cat[data-cat="Wydarzenia"] {
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-news-cat[data-cat="Jadłospis"] {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-news-cat[data-cat="Organizacja"] {
  background: #fef3c7;
  color: #b45309;
}

.kw-news-cat[data-cat="Kącik Artystyczny"] {
  background: #fce7f3;
  color: #be185d;
}

.kw-news-cat[data-cat="Sport"] {
  background: #ffedd5;
  color: #c2410c;
}

.kw-news-cat[data-cat="Ekologia"] {
  background: #dcfce7;
  color: #15803d;
}

.kw-news-detail__header h1 {
  margin: 16px 0 0;
  color: var(--navy, #1e3a8a);
  font-size: clamp(30px, 4.6vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.kw-news-detail__header > p {
  margin: 20px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 19px;
  line-height: 1.65;
  text-wrap: pretty;
}

.kw-news-detail__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.kw-news-detail__author image-slot {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.12);
}

.kw-news-detail__author span,
.kw-news-detail__author strong,
.kw-news-detail__author em {
  display: block;
}

.kw-news-detail__author strong {
  color: var(--navy, #1e3a8a);
  font-size: 14.5px;
}

.kw-news-detail__author em {
  color: var(--ink-3, #94a3b8);
  font-size: 13px;
  font-style: normal;
}

.kw-news-detail__hero {
  overflow: hidden;
  margin-top: 32px;
  border-radius: 24px;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.3);
}

.kw-news-detail__hero img,
.kw-news-detail__hero image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
}

.kw-news-detail__hero img {
  height: auto;
  object-fit: cover;
}

.kw-news-detail__hero image-slot::part(frame),
.kw-news-detail__hero image-slot::part(image) {
  width: 100%;
  height: 100%;
}

.kw-news-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

.kw-news-detail__content {
  min-width: 0;
}

.kw-news-detail__content > p {
  margin: 0 0 24px;
  color: #334155;
  font-size: 17px;
  line-height: 1.75;
  text-wrap: pretty;
}

.kw-news-detail__content h2 {
  margin: 8px 0 18px;
  color: var(--navy, #1e3a8a);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}

.kw-news-detail__content blockquote {
  margin: 8px 0 28px;
  border-left: 4px solid var(--accent, #10b981);
  padding: 4px 0 4px 20px;
}

.kw-news-detail__content blockquote p {
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.45;
}

.kw-news-detail__content blockquote footer {
  margin-top: 12px;
  color: var(--accent-ink, #047857);
  font-size: 14px;
  font-weight: 800;
}

.kw-news-detail-gallery {
  margin: 8px 0 28px;
}

.kw-news-detail-gallery > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.kw-news-detail-gallery image-slot {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1);
}

.kw-news-detail-gallery figcaption {
  margin-top: 10px;
  color: var(--ink-3, #94a3b8);
  font-size: 13.5px;
  text-align: center;
}

.kw-news-detail__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}

.kw-news-detail__tags span {
  margin-right: 4px;
  color: var(--ink-2, #64748b);
  font-size: 13.5px;
  font-weight: 800;
}

.kw-news-detail__tags em {
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--bg-soft, #f8fafc);
  color: var(--ink-2, #64748b);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
}

.kw-news-detail__sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kw-news-detail-sidebox {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.kw-news-detail-sidebox h2 {
  margin: 0 0 16px;
  color: var(--navy, #1e3a8a);
  font-size: 16px;
  font-weight: 900;
}

.kw-news-detail__share > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kw-news-detail__share a,
.kw-news-detail__share button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--bg-soft, #f8fafc);
  color: var(--accent-ink, #047857);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.kw-news-detail__share--mobile {
  display: none;
}

.kw-news-detail-recent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kw-news-detail-recent a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -8px;
  border-radius: 16px;
  padding: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.kw-news-detail-recent a:hover {
  background: #f8fafc;
}

.kw-news-detail-recent image-slot {
  display: block;
  flex: 0 0 64px;
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.kw-news-detail-recent span,
.kw-news-detail-recent strong,
.kw-news-detail-recent small {
  display: block;
}

.kw-news-detail-recent strong {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: var(--navy, #1e3a8a);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kw-news-detail-recent small {
  margin-top: 4px;
  color: var(--ink-3, #94a3b8);
  font-size: 12px;
}

.kw-news-detail-sidebox__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--accent-ink, #047857);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.kw-careers-section {
  width: 100%;
  padding: clamp(28px, 4vw, 54px) max(20px, calc((100% - 1200px) / 2)) clamp(76px, 8vw, 112px);
  background: #fff;
}

.kw-site--page .kw-breadcrumb + .kw-careers-section {
  padding-top: clamp(28px, 4vw, 46px);
}

.kw-careers {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(40px, 5vw, 56px);
  align-items: start;
}

.kw-careers__intro {
  position: sticky;
  top: 96px;
}

.kw-careers__intro h1 {
  margin: 16px 0 0;
  color: var(--navy, #1e3a8a);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  text-wrap: balance;
}

.kw-careers__intro > p {
  margin: 18px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 18px;
  line-height: 1.65;
  text-wrap: pretty;
}

.kw-careers__intro > h2 {
  margin: 34px 0 18px;
  color: var(--navy, #1e3a8a);
  font-size: 17px;
  font-weight: 900;
}

.kw-careers-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kw-careers-perk {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.kw-careers-perk > span,
.kw-careers-job__toggle i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-careers svg,
.kw-careers-section .kw-eyebrow svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.kw-careers-perk h3,
.kw-careers-perk p {
  margin: 0;
}

.kw-careers-perk h3 {
  color: var(--navy, #1e3a8a);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.kw-careers-perk p {
  margin-top: 5px;
  color: var(--ink-2, #64748b);
  font-size: 16px;
  line-height: 1.45;
}

.kw-careers__jobs > h2 {
  margin: 0;
  color: var(--navy, #1e3a8a);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
}

.kw-careers-jobs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.kw-careers-job {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 18px 36px -24px rgba(15, 23, 42, 0.22);
}

.kw-careers-job__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 24px 28px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.kw-careers-job__toggle strong,
.kw-careers-job__toggle em,
.kw-careers-job__toggle small {
  display: block;
}

.kw-careers-job__toggle strong {
  color: var(--navy, #1e3a8a);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-careers-job__toggle em {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  font-style: normal;
}

.kw-careers-job__toggle small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--bg-soft, #f8fafc);
  color: var(--ink-2, #64748b);
  font-size: 13px;
  font-weight: 800;
}

.kw-careers-job__toggle small:first-child {
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-careers-job__toggle small svg {
  width: 15px;
  height: 15px;
}

.kw-careers-job__toggle i {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.kw-careers-job.is-open .kw-careers-job__toggle i {
  transform: rotate(180deg);
}

.kw-careers-job__body {
  display: none;
  padding: 0 28px 28px;
}

.kw-careers-job.is-open .kw-careers-job__body {
  display: block;
}

.kw-careers-job__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  padding-top: 4px;
}

.kw-careers-job__lists h3 {
  margin: 0 0 14px;
  color: var(--navy, #1e3a8a);
  font-size: 16px;
  font-weight: 900;
}

.kw-careers-job__lists ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kw-careers-job__lists li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-2, #64748b);
  font-size: 17px;
  line-height: 1.45;
}

.kw-careers-job__lists li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent-ink, #047857);
  stroke-width: 2.5;
}

.kw-careers-job__apply {
  width: fit-content;
  margin-top: 28px;
}

.kw-careers-job__apply svg,
.kw-careers-cta .kw-button svg {
  width: 18px;
  height: 18px;
}

.kw-careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  border-radius: 24px;
  padding: 28px;
  background: var(--accent-soft, #d1fae5);
}

.kw-careers-cta h2,
.kw-careers-cta p {
  margin: 0;
}

.kw-careers-cta h2 {
  color: var(--navy, #1e3a8a);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.kw-careers-cta p {
  margin-top: 6px;
  color: var(--ink-2, #64748b);
  font-size: 16px;
  line-height: 1.45;
}

.kw-pin {
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--accent, #10b981);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.kw-news-documents {
  margin-top: 32px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.18);
}

.kw-news-documents__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kw-news-documents__head > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: var(--accent-soft, #d1fae5);
  color: var(--accent-ink, #047857);
}

.kw-news-documents h3 {
  color: var(--navy, #1e3a8a);
  font-size: 19px;
  font-weight: 900;
}

.kw-news-documents p {
  margin-top: 2px;
  color: var(--ink-3, #94a3b8);
  font-size: 13.5px;
}

.kw-news-documents__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.kw-news-document {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 12px 14px;
  background: var(--bg-soft, #f1f5f9);
  color: var(--navy, #1e3a8a);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.kw-news-document:hover {
  background: #fff;
  transform: translateY(-2px);
}

.kw-news-document__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
  background: #fef2f2;
  color: #dc2626;
}

.kw-news-document span:nth-child(2) {
  flex: 1 1 auto;
  min-width: 0;
}

.kw-news-document strong,
.kw-news-document em {
  display: block;
}

.kw-news-document strong {
  overflow: hidden;
  color: var(--navy, #1e3a8a);
  font-size: 14.5px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kw-news-document em {
  margin-top: 2px;
  color: var(--ink-3, #94a3b8);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
}

.kw-news-document__download {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 999px;
  color: var(--accent-ink, #047857);
  font-size: 18px;
  font-weight: 900;
}

.kw-gallery-grid {
  column-count: 3;
  column-gap: 16px;
  display: block;
  margin-top: 40px;
}

.kw-album-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  cursor: pointer;
}

.kw-album-card__cover {
  min-height: 220px;
}

.kw-album-card__cover strong {
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  font-size: 12.5px;
  font-weight: 900;
}

.kw-album-card__body {
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
}

.kw-album-card h3 {
  color: var(--navy, #1e3a8a);
  font-size: 17px;
  font-weight: 900;
}

.kw-album-card p {
  color: var(--ink-2, #64748b);
}

.kw-album-card .kw-badge {
  border-color: color-mix(in srgb, var(--accent, #10b981) 30%, transparent);
  background: #fff;
  color: var(--accent-ink, #047857);
}

@media (max-width: 1100px) {
  .kw-staff-section .kw-staff-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kw-site--page .kw-events-section.kw-section {
    padding-top: 96px;
  }

  .kw-events-section .kw-events {
    grid-template-columns: 1fr;
  }

  .kw-events-section .kw-events__aside {
    position: static;
  }

  .kw-event-detail-section {
    padding-top: 0;
  }

  .kw-event-detail__grid {
    grid-template-columns: 1fr;
  }

  .kw-event-facts {
    position: static;
  }
}

@media (max-width: 760px) {
  .kw-staff-section .kw-staff-directory-grid,
  .kw-news-grid {
    grid-template-columns: 1fr;
  }

  .kw-gallery-grid {
    column-count: 1;
  }

  .kw-news-pinned {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-news-pinned__action {
    align-self: flex-start;
  }

  .kw-site--page .kw-events-section.kw-section {
    padding-top: 72px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .kw-news-documents__grid {
    grid-template-columns: 1fr;
  }

  .kw-events-section .kw-event {
    align-items: flex-start;
    padding: 14px;
  }

  .kw-events-section .kw-event__group {
    display: none;
  }

  .kw-event-detail-section {
    padding: 0 0 80px;
  }

  .kw-event-detail {
    padding: 122px 16px 0;
  }

  .kw-event-detail__hero {
    border-radius: 22px;
  }

  .kw-event-detail__hero image-slot {
    aspect-ratio: 16 / 8;
    min-height: 168px;
  }

  .kw-event-detail__hero image-slot::part(frame),
  .kw-event-detail__hero image-slot::part(image) {
    border-radius: 22px;
  }

  .kw-event-detail__grid {
    gap: 28px;
    margin-top: 32px;
  }

  .kw-event-detail__content h1 {
    font-size: 32px;
  }

  .kw-event-pack,
  .kw-event-facts {
    border-radius: 20px;
    padding: 20px;
  }

  .kw-event-pack ul {
    grid-template-columns: 1fr;
  }

  .kw-mini-calendar,
  .kw-calendar-links {
    border-radius: 20px;
    padding: 16px;
  }
}

/* Public block parity overrides. Do not edit accepted header/footer below. */
.kw-features-section .kw-section__head--center {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.kw-features-section .kw-section__head--center h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.kw-features-section .kw-section__head--center p {
  font-size: 17px;
  line-height: 1.65;
}

.kw-features-section .kw-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  color: #fff;
  box-shadow: 0 10px 22px -10px var(--accent-shadow, rgba(16, 185, 129, 0.45));
}

.kw-features-section .kw-feature-card h3 {
  margin-top: 20px;
  color: var(--navy, #1e3a8a);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-features-section .kw-feature-card p {
  margin-top: 10px;
  color: var(--ink-2, #64748b);
  font-size: 15.5px;
  line-height: 1.65;
}

.kw-live-menu-section .kw-live-menu-panel::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -40px;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: var(--accent-glow, rgba(16, 185, 129, 0.22));
  filter: blur(48px);
  pointer-events: none;
}

.kw-live-menu-section .kw-live-menu-panel::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: 120px;
  height: 120px;
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.72) 2px, transparent 2.5px);
  background-size: 20px 20px;
}

.kw-live-menu-section .kw-live-menu-head,
.kw-live-menu-section .kw-live-menu-days,
.kw-live-menu-section .kw-live-menu-panels,
.kw-live-menu-section .kw-live-menu-note {
  position: relative;
  z-index: 1;
}

.kw-live-menu-section .kw-eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.kw-live-menu-section .live-dot {
  background: var(--accent, #10b981);
}

.kw-live-menu-section .kw-live-menu-days {
  overflow: visible;
}

.kw-live-menu-section .kw-live-menu-day {
  min-height: 48px;
  padding: 0 24px;
  font-size: 16px;
}

.kw-live-menu-section .kw-live-menu-day.is-active {
  transform: none;
}

.kw-live-menu-section .kw-live-menu-grid.is-active.menu-fade {
  animation: kw-menu-sweep 0.28s ease both;
}

@keyframes kw-menu-sweep {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.kw-live-menu-section .kw-live-meal__icon--breakfast {
  background: #fff7ed;
  color: #ea580c;
}

.kw-live-menu-section .kw-live-meal__icon--lunch {
  background: #ecfdf5;
  color: #047857;
}

.kw-live-menu-section .kw-live-meal__icon--snack {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-live-menu-section .kw-live-meal__icon--default {
  background: #f1f5f9;
  color: var(--navy, #1e3a8a);
}

.kw-staff-section--home.kw-soft {
  padding-top: 80px;
  padding-bottom: 112px;
  background: var(--bg-soft, #eef8fb);
}

.kw-staff-home__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-staff-section--home .kw-section__head--staff {
  max-width: 640px;
}

.kw-staff-section--home .kw-section__head--staff h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.kw-staff-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(560px, 100%);
  margin: 40px auto 0;
}

.kw-staff-home-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  text-align: center;
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 12px 28px -14px rgba(15, 23, 42, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kw-staff-home-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(15, 23, 42, 0.05),
    0 22px 42px -20px rgba(15, 23, 42, 0.18);
}

.kw-staff-home-card__avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--accent-soft, #d1fae5);
}

.kw-staff-home-card__avatar image-slot {
  width: 100%;
  height: 100%;
}

.kw-staff-home-card h3 {
  margin: 16px 0 0;
  color: var(--navy, #1e3a8a);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.kw-staff-home-card p,
.kw-staff-home-card small {
  display: block;
  margin: 5px 0 0;
  color: var(--ink-2, #64748b);
  font-size: 13.5px;
  line-height: 1.45;
}

.kw-staff-home-card p {
  color: var(--navy, #1e3a8a);
  font-weight: 700;
}

.kw-text-button-banner-section .kw-text-button-banner--dark {
  position: relative;
  isolation: isolate;
}

.kw-text-button-banner-section .kw-text-button-banner__glow {
  position: absolute;
  z-index: -1;
  top: -48px;
  right: -40px;
  width: 288px;
  height: 288px;
  border-radius: 999px;
  background: var(--accent-glow, rgba(16, 185, 129, 0.24));
  filter: blur(48px);
  pointer-events: none;
}

.kw-text-button-banner-section .kw-text-button-banner__pattern {
  position: absolute;
  z-index: -1;
  bottom: 12px;
  left: 16px;
  width: 120px;
  height: 120px;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.72) 2px, transparent 2.5px);
  background-size: 20px 20px;
}

.kw-text-button-banner-section .kw-text-button-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.kw-text-button-banner-section .kw-text-button-banner__badge span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent, #10b981);
}

@media (max-width: 760px) {
  .kw-live-menu-section .kw-live-menu-day {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .kw-staff-home-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer and fixed announcement stack restored from the Kidolo-Web template. */
.kw-site:has(.kw-alert) main {
  padding-top: 114px;
}

.kw-site--page:has(.kw-alert) main {
  padding-top: 0;
}

.kw-site--page .kw-breadcrumb {
  padding-top: clamp(36px, 4vw, 56px);
}

.kw-site--page .kw-breadcrumb--bar {
  width: 100%;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-left: max(20px, calc((100% - 1200px) / 2));
}

.kw-site--page .kw-breadcrumb + .kw-contact-page {
  padding-top: clamp(34px, 4vw, 52px);
}

.kw-site--page .kw-news-section {
  width: 100%;
  padding: 86px max(20px, calc((100% - 1200px) / 2)) 112px;
}

.kw-site--page .kw-breadcrumb + .kw-news-section {
  padding-top: 54px;
}

.kw-news-section > .kw-news-head,
.kw-news-section > .kw-news-pinned,
.kw-news-section > .kw-news-grid,
.kw-news-section > .kw-news-documents {
  width: min(1200px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.kw-news-section > .kw-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kw-news-section .kw-news-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
}

.kw-news-section .kw-news-card__media {
  display: block;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.kw-news-section .kw-news-card__media > img,
.kw-news-section .kw-news-card__media > image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.kw-news-section .kw-news-card__media > img {
  object-fit: cover;
}

.kw-news-section .kw-news-card__media > image-slot::part(frame),
.kw-news-section .kw-news-card__media > image-slot::part(image) {
  width: 100%;
  height: 100%;
}

.kw-news-section .kw-news-archive,
.kw-news-section .kw-news-pinned__action {
  border-radius: 999px;
  padding-inline: 22px;
  white-space: nowrap;
}

.kw-site--page .kw-cta {
  position: relative;
  overflow: hidden;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 78px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 26rem),
    linear-gradient(135deg, #1e3a8a 0%, #1e3a8a 54%, #164e63 100%);
  color: #fff;
  padding: clamp(42px, 6vw, 70px);
  box-shadow: 0 24px 56px -30px rgba(15, 23, 42, 0.48);
}

.kw-news-detail-section + .kw-cta {
  margin-top: clamp(72px, 6vw, 112px);
}

.kw-site--page .kw-cta::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 28px;
  width: 160px;
  height: 100px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.20) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.45;
}

.kw-site--page .kw-cta > * {
  position: relative;
  z-index: 1;
}

.kw-site--page .kw-cta .kw-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.kw-site--page .kw-cta h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 52px);
}

.kw-site--page .kw-cta p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.kw-site--page .kw-cta .kw-button {
  min-width: 220px;
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.kw-site--page .kw-cta .kw-button:hover {
  background: color-mix(in srgb, var(--accent) 8%, white);
  color: color-mix(in srgb, var(--accent) 84%, #064e3b);
}

.kw-enroll-section {
  width: 100%;
  padding: 92px max(20px, calc((100% - 1100px) / 2));
}

.kw-site--page .kw-enroll-section {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding: 92px max(24px, calc((100% - 1100px) / 2));
}

.kw-enroll-section .kw-enroll {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  width: min(1100px, 100%);
  margin: 0 auto;
  gap: clamp(40px, 6vw, 56px);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.kw-site--page .kw-enroll-section .kw-enroll {
  width: min(1100px, 100%);
  min-width: 0;
}

.kw-enroll__copy,
.kw-enroll-section .kw-enroll__form {
  min-width: 0;
}

.kw-enroll__copy h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
}

.kw-enroll__copy p {
  max-width: 450px;
  margin: 18px 0 0;
  color: #64748b;
  font-size: 16.5px;
  line-height: 1.7;
}

.kw-enroll__eyebrow {
  align-items: center;
  gap: 8px;
}

.kw-enroll__eyebrow svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.kw-enroll__reasons {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.kw-enroll__reasons li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.kw-enroll__reasons li span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.kw-enroll__phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #64748b;
  font-size: 14.5px;
  font-weight: 700;
}

.kw-enroll__phone svg {
  width: 18px;
  height: 18px;
  color: #047857;
  fill: currentColor;
}

.kw-enroll__phone a {
  color: var(--navy);
  font-weight: 900;
}

.kw-enroll-section .kw-enroll__form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  background: #fff;
  padding: clamp(26px, 4vw, 36px);
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.25);
}

.kw-enroll__form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kw-enroll__form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 800;
}

.kw-enroll__form label em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 500;
}

.kw-enroll__form input,
.kw-enroll__form textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 14px;
  background: #f8fafc;
  color: var(--navy);
  padding: 15px 18px;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.kw-enroll__form textarea {
  min-height: 112px;
  resize: vertical;
}

.kw-enroll__form input::placeholder,
.kw-enroll__form textarea::placeholder {
  color: #94a3b8;
}

.kw-enroll__form input:focus,
.kw-enroll__form textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.kw-enroll__form .kw-button {
  width: 100%;
  border-radius: 999px;
  margin-top: 2px;
}

.kw-enroll__note {
  margin: 0;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 980px) {
  .kw-news-section > .kw-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kw-site--page .kw-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-enroll-section .kw-enroll {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .kw-site--page .kw-news-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .kw-news-section > .kw-news-grid {
    grid-template-columns: 1fr;
  }

  .kw-enroll-section {
    padding-right: 14px;
    padding-left: 14px;
  }

.kw-enroll__form-row {
    grid-template-columns: 1fr;
  }
}

.kw-pricing-section {
  width: min(1080px, calc(100% - 40px));
  padding-top: 18px;
  padding-bottom: 96px;
}

.kw-site--page main:has(.kw-pricing-section) {
  background: #fff;
}

.kw-site--page .kw-pricing-section {
  width: min(1080px, calc(100% - 40px));
  padding-top: 18px;
}

.kw-pricing-head {
  margin-bottom: 48px;
}

.kw-pricing-head .kw-eyebrow {
  margin-inline: auto;
}

.kw-pricing-head .kw-eyebrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.kw-pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 3vw, 28px);
  width: min(820px, 100%);
  margin: 0 auto;
}

.kw-price-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background: #fff;
  padding: clamp(28px, 4vw, 34px);
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.16);
}

.kw-price-plan--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 30px 60px -28px color-mix(in srgb, var(--accent) 82%, #052e2b);
}

.kw-price-plan__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 40px);
  border-radius: 999px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  padding: 8px 16px;
  box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--accent) 80%, #052e2b);
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.kw-price-plan h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.kw-pricing-section .kw-price {
  margin: 14px 0 0;
}

.kw-pricing-section .kw-price strong {
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(36px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.kw-pricing-section .kw-price span {
  color: #64748b;
  font-size: 15px;
  font-weight: 700;
}

.kw-price-plan__sub {
  margin: 8px 0 0;
  color: color-mix(in srgb, var(--accent) 72%, #064e3b);
  font-size: 14px;
  font-weight: 800;
}

.kw-price-plan__features {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  list-style: none;
}

.kw-price-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.45;
}

.kw-price-plan__features li span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid color-mix(in srgb, var(--accent) 76%, #064e3b);
  border-radius: 999px;
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.kw-price-plan .kw-button {
  justify-content: center;
  width: 100%;
  margin-top: auto;
}

.kw-price-plan .kw-button span {
  margin-left: 8px;
}

.kw-price-plan .kw-button--secondary {
  border-color: #e2e8f0;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.kw-price-plan .kw-button--secondary:hover {
  border-color: color-mix(in srgb, var(--accent) 28%, #e2e8f0);
  background: color-mix(in srgb, var(--accent) 7%, white);
}

.kw-pricing-fees {
  margin-top: 92px;
}

.kw-pricing-fees h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.kw-pricing-fee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.kw-pricing-fee {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 116px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.22);
}

.kw-pricing-fee__icon,
.kw-pricing-bank__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
}

.kw-pricing-fee__icon {
  width: 46px;
  height: 46px;
}

.kw-pricing-fee__icon svg,
.kw-pricing-bank__icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.kw-pricing-fee__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.kw-pricing-fee__title strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.kw-pricing-fee__title span {
  color: color-mix(in srgb, var(--accent) 72%, #064e3b);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.kw-pricing-fee p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.kw-pricing-bank {
  margin-top: 38px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  padding: clamp(24px, 4vw, 32px);
}

.kw-pricing-bank__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kw-pricing-bank__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--accent) 80%, #052e2b);
}

.kw-pricing-bank h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.kw-pricing-bank__head p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13.5px;
}

.kw-pricing-bank__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.kw-pricing-bank__box {
  border-radius: 16px;
  background: #fff;
  padding: 18px 20px;
}

.kw-pricing-bank__box span {
  display: block;
  color: #64748b;
  font-size: 12.5px;
  font-weight: 800;
}

.kw-pricing-bank__box strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.kw-pricing-bank__note {
  margin: 20px 0 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.6;
}

.kw-gallery-section {
  width: min(1200px, calc(100% - 40px));
  padding-top: 30px;
  padding-bottom: 96px;
}

.kw-site--page main:has(.kw-gallery-section) {
  background: #fff;
}

.kw-site--page .kw-gallery-section {
  width: min(1200px, calc(100% - 40px));
  padding-top: 30px;
}

.kw-gallery-head {
  margin-bottom: 32px;
}

.kw-gallery-head .kw-eyebrow {
  margin-inline: auto;
}

.kw-gallery-head .kw-eyebrow svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.kw-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 40px;
}

.kw-gallery-filters button {
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.kw-gallery-filters button:hover {
  background: color-mix(in srgb, var(--accent) 10%, #f1f5f9);
  color: color-mix(in srgb, var(--accent) 78%, #064e3b);
}

.kw-gallery-filters button.is-active {
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 10px 22px -12px color-mix(in srgb, var(--accent) 82%, #052e2b);
}

.kw-gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}

.kw-gallery-tile {
  position: relative;
  display: block;
  height: var(--tile-height, 260px);
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 14px;
  background: #e9eef7;
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.28);
  cursor: zoom-in;
}

.kw-gallery-tile img,
.kw-gallery-tile image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.kw-gallery-tile img {
  object-fit: cover;
}

.kw-gallery-tile image-slot::part(frame) {
  width: 100%;
  height: 100%;
}

.kw-gallery-tile:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, white);
  outline-offset: 4px;
}

.kw-gallery-tile__zoom,
.kw-gallery-tile__label {
  position: absolute;
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.kw-gallery-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(30, 58, 138, 0.34);
  opacity: 0;
  transition: opacity .24s ease;
}

.kw-gallery-tile__zoom {
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.kw-gallery-tile__zoom svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.kw-gallery-tile__label {
  z-index: 2;
  inset: auto 0 0;
  padding: 34px 18px 14px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.62));
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
}

.kw-gallery-tile:hover::after,
.kw-gallery-tile:hover .kw-gallery-tile__zoom,
.kw-gallery-tile:hover .kw-gallery-tile__label {
  opacity: 1;
}

.kw-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
}

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

.kw-gallery-lightbox__panel {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1080px, 100%);
}

.kw-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  margin: 0 auto;
  border-radius: 24px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 34px 90px -36px rgba(0, 0, 0, 0.72);
}

.kw-gallery-lightbox__caption {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.kw-gallery-tile.is-hidden {
  display: none;
}

.kw-gallery-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 0;
  font-weight: 800;
  line-height: 0;
  box-shadow: 0 18px 44px -22px rgba(15, 23, 42, 0.7);
}

.kw-gallery-lightbox__close::before {
  content: "×";
  display: block;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.kw-gallery-rodo {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 56px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 28px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  padding: clamp(24px, 4vw, 36px);
}

.kw-gallery-rodo__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 18px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px -12px color-mix(in srgb, var(--accent) 82%, #052e2b);
}

.kw-gallery-rodo__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.kw-gallery-rodo p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.kw-gallery-rodo .kw-button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.kw-gallery-rodo .kw-button span {
  margin-left: 8px;
}

.kw-site--page main:has(.kw-staff-section) {
  background: #fff;
}

.kw-site--page .kw-staff-section.kw-soft {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  padding: 118px 0 96px;
  background: #fff;
}

.kw-site--page .kw-staff-section .kw-section__head--staff {
  max-width: 700px;
  margin-bottom: 46px;
}

.kw-site--page .kw-staff-section .kw-section__head--staff .kw-eyebrow {
  display: none;
}

.kw-site--page .kw-staff-section .kw-section__head--staff h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.08;
}

.kw-site--page .kw-staff-section .kw-section__head--staff p {
  max-width: 680px;
  margin-top: 18px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.55;
}

.kw-site--page .kw-staff-section .kw-staff-filters {
  gap: 10px;
  margin-top: 38px;
}

.kw-site--page .kw-staff-section .kw-staff-filter {
  padding: 12px 18px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 14px;
  line-height: 1;
}

.kw-site--page .kw-staff-section .kw-staff-filter:hover,
.kw-site--page .kw-staff-section .kw-staff-filter.is-active {
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 10px 22px -12px color-mix(in srgb, var(--accent) 82%, #052e2b);
}

.kw-site--page .kw-staff-section .kw-staff-directory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.kw-site--page .kw-staff-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 14px 32px -24px rgba(15, 23, 42, 0.34);
}

.kw-site--page .kw-staff-card__media {
  aspect-ratio: 1 / 1;
  background: #e8edf6;
}

.kw-site--page .kw-staff-card__body {
  padding: 20px 22px 22px;
}

.kw-site--page .kw-staff-card__body h3 {
  font-size: 19px;
  line-height: 1.18;
}

.kw-site--page .kw-staff-card__title {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13.5px;
}

.kw-site--page .kw-staff-card__role {
  margin-top: 6px;
  color: color-mix(in srgb, var(--accent) 76%, #064e3b);
  font-size: 14px;
  font-weight: 900;
}

.kw-site--page .kw-staff-card__badges {
  margin-top: 12px;
}

.kw-site--page .kw-staff-card__badges span {
  padding: 4px 10px;
  font-size: 12px;
}

.kw-site--page .kw-staff-card__bio {
  display: none;
}

.kw-site--page .kw-staff-card__link {
  margin-top: 18px;
  padding: 0;
  font-size: 15px;
}

@media (max-width: 860px) {
  .kw-pricing-plans,
  .kw-pricing-fee-grid,
  .kw-pricing-bank__grid {
    grid-template-columns: 1fr;
  }

  .kw-price-plan .kw-button {
    margin-top: 28px;
  }

  .kw-pricing-fees {
    margin-top: 58px;
  }

  .kw-gallery-masonry {
    column-count: 2;
  }

  .kw-gallery-rodo {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-gallery-rodo .kw-button {
    width: 100%;
    justify-content: center;
  }

  .kw-site--page .kw-staff-section .kw-staff-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .kw-gallery-section,
  .kw-site--page .kw-gallery-section {
    width: min(100% - 28px, 1200px);
  }

  .kw-gallery-masonry {
    column-count: 1;
  }

  .kw-gallery-tile {
    height: min(var(--tile-height, 260px), 300px);
  }

  .kw-site--page .kw-staff-section.kw-soft {
    width: min(100% - 28px, 1200px);
    padding-top: 72px;
  }

  .kw-site--page .kw-staff-section .kw-staff-directory-grid {
    grid-template-columns: 1fr;
  }

  .kw-site--page .kw-staff-section .kw-section__head--staff h2 {
    font-size: 32px;
  }
}

.kw-alert {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 42px;
}

.kw-site--page main:has(.kw-group-section) {
  padding-top: 0;
  background: #fff;
}

.kw-site--page:has(.kw-alert) main:has(.kw-group-section) {
  padding-top: 84px;
}

.kw-group-section {
  color: #1e3a8a;
}

.kw-group-section svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-group-hero {
  overflow: hidden;
  padding: 56px 0 72px;
  background: color-mix(in srgb, var(--accent) 13%, #eff6ff);
}

.kw-group-hero__inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-group-hero__inner::after {
  position: absolute;
  top: -64px;
  right: 16px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  content: "";
}

.kw-group-back {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 28px;
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 14.5px;
  font-weight: 750;
  text-decoration: none;
}

.kw-group-back:hover {
  color: var(--accent);
}

.kw-group-hero__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

.kw-group-hero__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 24px;
  background: linear-gradient(150deg, #34d399, var(--accent));
  color: #fff;
  box-shadow: 0 16px 32px -16px color-mix(in srgb, var(--accent) 85%, #052e2b);
}

.kw-group-hero__icon svg {
  width: 38px;
  height: 38px;
}

.kw-group-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 950;
  line-height: 1.08;
}

.kw-group-hero p {
  margin: 8px 0 0;
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 17px;
  font-weight: 900;
}

.kw-group-tabs {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(12px);
}

.kw-group-tabs > div {
  display: flex;
  gap: 8px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.kw-group-tabs > div::-webkit-scrollbar {
  display: none;
}

.kw-group-tabs a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 10px 16px;
  color: #475569;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.kw-group-tabs a:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.kw-group-content {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.kw-group-panel {
  scroll-margin-top: 140px;
  padding-top: 58px;
}

.kw-group-panel--last {
  padding-bottom: 72px;
}

.kw-group-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.12;
}

.kw-group-panel > p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 16.5px;
  line-height: 1.68;
}

.kw-group-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.kw-group-facts article,
.kw-group-teachers article,
.kw-group-schedule article,
.kw-group-feed article {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.34);
}

.kw-group-facts article {
  border-radius: 20px;
  padding: 20px;
}

.kw-group-facts span,
.kw-group-schedule__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, #ecfdf5);
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
}

.kw-group-facts small {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 12.5px;
  font-weight: 750;
}

.kw-group-facts strong {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 950;
}

.kw-group-teachers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.kw-group-teachers article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  border-radius: 24px;
  padding: 20px;
}

.kw-group-teacher__avatar {
  overflow: hidden;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  border: 4px solid #fff;
  border-radius: 999px;
  box-shadow: 0 14px 26px -18px rgba(15, 23, 42, 0.42);
}

.kw-group-teacher__avatar image-slot,
.kw-group-teacher__avatar image-slot::part(frame),
.kw-group-teacher__avatar image-slot::part(image) {
  width: 100%;
  height: 100%;
}

.kw-group-teachers h3,
.kw-group-schedule h3,
.kw-group-feed h3 {
  margin: 0;
  color: var(--navy);
  font-weight: 950;
  line-height: 1.2;
}

.kw-group-teachers h3 {
  font-size: 17.5px;
}

.kw-group-teachers p {
  margin: 4px 0 0;
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 13.5px;
  font-weight: 900;
}

.kw-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.kw-group-tags span,
.kw-group-panel__head > span {
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, #ecfdf5);
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 11.5px;
  font-weight: 900;
}

.kw-group-tags span {
  padding: 3px 10px;
}

.kw-group-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.kw-group-schedule article {
  display: grid;
  grid-template-columns: 46px 120px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-radius: 20px;
  padding: 16px 20px;
}

.kw-group-schedule article:nth-child(1) .kw-group-schedule__icon {
  background: #fef3c7;
  color: #b45309;
}

.kw-group-schedule article:nth-child(2) .kw-group-schedule__icon {
  background: #ecfdf5;
  color: #047857;
}

.kw-group-schedule article:nth-child(3) .kw-group-schedule__icon {
  background: #eff6ff;
  color: #1d4ed8;
}

.kw-group-schedule article:nth-child(4) .kw-group-schedule__icon {
  background: #dcfce7;
  color: #15803d;
}

.kw-group-schedule article:nth-child(5) .kw-group-schedule__icon {
  background: #fce7f3;
  color: #be185d;
}

.kw-group-schedule article:nth-child(6) .kw-group-schedule__icon {
  background: #f3e8ff;
  color: #6d28d9;
}

.kw-group-schedule strong {
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 14.5px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.kw-group-schedule h3 {
  font-size: 16px;
}

.kw-group-schedule p,
.kw-group-feed p {
  margin: 5px 0 0;
  color: #64748b;
  line-height: 1.55;
}

.kw-group-schedule p {
  font-size: 13.5px;
}

.kw-group-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kw-group-panel__head > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 12px;
}

.kw-group-panel__head i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.kw-group-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.kw-group-feed article {
  border-radius: 20px;
  padding: 20px;
}

.kw-group-feed small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 750;
}

.kw-group-feed h3 {
  margin-top: 8px;
  font-size: 16.5px;
}

.kw-group-feed p {
  font-size: 14.5px;
}

@media (max-width: 860px) {
  .kw-group-hero {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .kw-group-facts,
  .kw-group-teachers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .kw-group-hero__inner,
  .kw-group-tabs > div,
  .kw-group-content {
    width: min(100% - 28px, 1000px);
  }

  .kw-group-hero__title {
    align-items: flex-start;
  }

  .kw-group-hero__icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 18px;
  }

  .kw-group-hero__icon svg {
    width: 30px;
    height: 30px;
  }

  .kw-group-facts,
  .kw-group-teachers {
    grid-template-columns: 1fr;
  }

  .kw-group-schedule article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .kw-group-schedule strong {
    grid-column: 2;
    order: -1;
  }

  .kw-group-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.kw-popup--top-bar {
  position: fixed;
  inset: 42px 0 auto;
  z-index: 79;
}

.kw-site:has(.kw-alert) .kw-nav {
  top: 42px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar.is-visible) .kw-nav {
  top: 84px;
}

.kw-site:has(.kw-alert):has(.kw-popup--top-bar.is-visible) main {
  padding-top: 156px;
}

.kw-site--page main:has(.kw-schedule-section) {
  background: #fff;
}

.kw-site--page .kw-schedule-section.kw-soft {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  padding-top: 150px;
  padding-bottom: 112px;
  background: #f8fbfd;
}

.kw-schedule-head {
  width: min(1200px, 100%);
  max-width: none;
  justify-items: center;
  margin-bottom: 72px;
}

.kw-schedule-head .kw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kw-schedule-head .kw-eyebrow svg,
.kw-schedule-section svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-schedule-head h2 {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(44px, 3.6vw, 58px);
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.kw-site--page .kw-schedule-head h2 {
  font-size: clamp(44px, 3.6vw, 58px);
}

.kw-schedule-head p,
.kw-site--page .kw-schedule-head p {
  max-width: 1120px;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 980px) {
  .kw-schedule-head h2,
  .kw-site--page .kw-schedule-head h2,
  .kw-schedule-head p,
  .kw-site--page .kw-schedule-head p {
    white-space: nowrap;
  }
}

.kw-schedule-timeline {
  position: relative;
  width: min(960px, 100%);
  margin: 0 auto;
}

.kw-schedule-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: #dce6ef;
  transform: translateX(-50%);
}

.kw-schedule-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: center;
  min-height: 138px;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.58s ease var(--kw-reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--kw-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.kw-schedule-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kw-schedule-step__marker {
  z-index: 1;
  grid-column: 2;
  justify-self: center;
  width: 20px;
  height: 20px;
  border: 4px solid #f8fbfd;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 8%, transparent);
}

.kw-schedule-step__body {
  display: grid;
  gap: 14px;
}

.kw-schedule-step--left .kw-schedule-step__body {
  grid-column: 1;
  text-align: right;
}

.kw-schedule-step--right .kw-schedule-step__body {
  grid-column: 3;
  text-align: left;
}

.kw-schedule-step time {
  color: color-mix(in srgb, var(--accent) 72%, #064e3b);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.kw-schedule-step__card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  background: #fff;
  padding: 22px 28px;
  box-shadow: 0 18px 36px -28px rgba(15, 23, 42, 0.35);
}

.kw-schedule-step--left .kw-schedule-step__card {
  justify-content: flex-end;
  padding-left: 128px;
  text-align: right;
}

.kw-schedule-step--right .kw-schedule-step__card {
  justify-content: flex-start;
  padding-right: 128px;
  text-align: left;
}

.kw-schedule-step__icon {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--accent) 14%, transparent);
  pointer-events: none;
  transform: translateY(-50%);
}

.kw-schedule-step--left .kw-schedule-step__icon {
  left: 30px;
}

.kw-schedule-step--right .kw-schedule-step__icon {
  right: 30px;
}

.kw-schedule-step__icon svg {
  width: 76px;
  height: 76px;
  stroke-width: 1.5;
}

.kw-schedule-step__card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-schedule-step__card p {
  margin: 9px 0 0;
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .kw-site--page .kw-schedule-section.kw-soft {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  .kw-schedule-head {
    margin-bottom: 44px;
  }

  .kw-schedule-head h2,
  .kw-site--page .kw-schedule-head h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .kw-schedule-head p,
  .kw-site--page .kw-schedule-head p {
    font-size: 16px;
  }

  .kw-schedule-timeline {
    width: min(100%, 620px);
  }

  .kw-schedule-timeline::before {
    left: 18px;
  }

  .kw-schedule-step {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 0;
    margin-top: 22px;
  }

  .kw-schedule-step:first-child {
    margin-top: 0;
  }

  .kw-schedule-step__marker {
    grid-column: 1;
  }

  .kw-schedule-step--left .kw-schedule-step__body,
  .kw-schedule-step--right .kw-schedule-step__body {
    grid-column: 2;
    text-align: left;
  }

  .kw-schedule-step--left .kw-schedule-step__card,
  .kw-schedule-step--right .kw-schedule-step__card {
    padding-right: 86px;
    padding-left: 20px;
    text-align: left;
  }

  .kw-schedule-step--left .kw-schedule-step__icon,
  .kw-schedule-step--right .kw-schedule-step__icon {
    right: 20px;
    left: auto;
  }

  .kw-schedule-step__card {
    min-height: 96px;
    border-radius: 18px;
    padding: 20px;
  }

  .kw-schedule-step__icon svg {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kw-schedule-step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.kw-site--page main:has(.kw-reviews-section) {
  padding-top: 0;
  background: #fff;
}

.kw-site--page:has(.kw-alert) main:has(.kw-reviews-section) {
  padding-top: 84px;
}

.kw-reviews-section,
.kw-site--page .kw-reviews-section.kw-section {
  width: min(1200px, calc(100% - 40px));
  padding-top: 88px;
  padding-bottom: 96px;
}

.kw-reviews-section svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kw-reviews-head {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kw-reviews-head .kw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 16px;
  border-radius: 999px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--accent) 10%, #ecfdf5);
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
  font-size: 13px;
  font-weight: 750;
}

.kw-reviews-head .kw-eyebrow svg {
  width: 16px;
  height: 16px;
}

.kw-reviews-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.08;
}

.kw-reviews-head p {
  max-width: 660px;
  margin: 18px auto 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.55;
}

.kw-reviews-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(760px, 100%);
  margin: 52px auto 0;
}

.kw-reviews-stats article {
  border-radius: 18px;
  padding: 28px 24px;
  background: #f8fafc;
  text-align: center;
}

.kw-reviews-stats [data-kw-counter-card] {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.56s ease var(--kw-counter-delay, 0ms),
    transform 0.64s cubic-bezier(0.22, 1, 0.36, 1) var(--kw-counter-delay, 0ms);
  will-change: opacity, transform;
}

.kw-reviews-stats [data-kw-counter-card].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.kw-reviews-stats span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, #ecfdf5);
  color: color-mix(in srgb, var(--accent) 74%, #064e3b);
}

.kw-reviews-stats span svg {
  width: 24px;
  height: 24px;
}

.kw-reviews-stats strong {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.kw-reviews-stats small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 13.5px;
}

.kw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.kw-review-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  break-inside: avoid;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 14px 34px -26px rgba(15, 23, 42, 0.4);
}

.kw-review-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.kw-review-card__stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
}

.kw-review-card > p {
  margin: 18px 0 0;
  color: #334155;
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.62;
}

.kw-review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.kw-review-card__avatar {
  overflow: hidden;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
}

.kw-review-card__avatar image-slot,
.kw-review-card__avatar image-slot::part(frame),
.kw-review-card__avatar image-slot::part(image) {
  width: 100%;
  height: 100%;
}

.kw-review-card footer strong {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 850;
}

.kw-review-card footer span {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.35;
}

.kw-reviews-cta {
  margin-top: 52px;
  border-radius: 24px;
  padding: 42px 32px;
  background: color-mix(in srgb, var(--accent) 10%, #ecfdf5);
  text-align: center;
}

.kw-reviews-cta h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.16;
}

.kw-reviews-cta p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 16px;
}

.kw-reviews-cta .kw-button {
  gap: 10px;
  margin-top: 28px;
}

.kw-reviews-cta .kw-button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 980px) {
  .kw-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .kw-reviews-section,
  .kw-site--page .kw-reviews-section.kw-section {
    width: min(100% - 28px, 1200px);
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .kw-reviews-head h2 {
    font-size: 32px;
  }

  .kw-reviews-head p {
    font-size: 16px;
  }

  .kw-reviews-stats,
  .kw-reviews-grid {
    grid-template-columns: 1fr;
  }

  .kw-review-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kw-reviews-stats [data-kw-counter-card] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.kw-footer {
  display: block;
  width: 100%;
  max-width: none;
  margin: clamp(72px, 8vw, 116px) 0 0;
  padding: 0 clamp(20px, 5vw, 56px) 38px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  color: var(--kw-ink-2);
}

.kw-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(420px, 2fr) minmax(220px, 0.9fr);
  gap: clamp(42px, 6vw, 104px);
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 64px 0 54px;
}

.kw-footer__brand {
  max-width: 330px;
}

.kw-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.kw-footer__brand-link strong {
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.kw-footer__mark {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  background: var(--accent);
  filter: drop-shadow(0 14px 22px rgba(16, 185, 129, 0.2));
}

.kw-footer__mark::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 3px solid #fff;
  border-radius: 999px;
}

.kw-footer__mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 -11px 0 #fff,
    0 11px 0 #fff,
    11px 0 0 #fff,
    -11px 0 0 #fff,
    8px 8px 0 #fff,
    -8px 8px 0 #fff,
    8px -8px 0 #fff,
    -8px -8px 0 #fff;
  transform: translate(-50%, -50%) scale(0.48);
}

.kw-footer__brand p {
  margin: 22px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.kw-footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.kw-footer__socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 16px;
  background: #f7fbff;
  color: var(--navy);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.kw-footer__socials a:hover {
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  transform: translateY(-2px);
}

.kw-footer__socials svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.kw-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: clamp(36px, 5vw, 78px);
}

.kw-footer__column,
.kw-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kw-footer__column strong,
.kw-footer__contact strong {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
}

.kw-footer__column a,
.kw-footer__contact a,
.kw-footer__contact span {
  display: block;
  margin: 0 0 13px;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.kw-footer__column a:hover,
.kw-footer__contact a:hover {
  color: var(--accent);
}

.kw-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  color: #64748b;
  font-size: 15px;
  font-weight: 400;
}

.kw-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kw-footer__powered::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--accent) 0 3px, transparent 4px),
    conic-gradient(from 0deg, transparent 0 18deg, var(--accent) 18deg 34deg, transparent 34deg 72deg, var(--accent) 72deg 88deg, transparent 88deg 126deg, var(--accent) 126deg 142deg, transparent 142deg 180deg, var(--accent) 180deg 196deg, transparent 196deg 234deg, var(--accent) 234deg 250deg, transparent 250deg 288deg, var(--accent) 288deg 304deg, transparent 304deg 360deg);
}

.kw-footer__powered strong {
  color: var(--accent);
  font-weight: 900;
}

@media (max-width: 980px) {
  .kw-careers {
    grid-template-columns: 1fr;
  }

  .kw-careers__intro {
    position: static;
  }

  .kw-news-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kw-news-detail__sidebar {
    position: static;
  }

  .kw-news-detail__sidebar .kw-news-detail__share {
    display: none;
  }

  .kw-news-detail__share--mobile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }

  .kw-news-detail__share--mobile > span {
    color: var(--navy, #1e3a8a);
    font-size: 14px;
    font-weight: 800;
  }

  .kw-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kw-footer__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .kw-careers-section {
    padding-inline: 14px;
  }

  .kw-careers__intro h1 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .kw-careers-job__toggle {
    padding: 22px 20px;
  }

  .kw-careers-job__toggle strong {
    font-size: 19px;
  }

  .kw-careers-job__body {
    padding: 0 20px 22px;
  }

  .kw-careers-job__lists {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .kw-careers-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .kw-careers-cta .kw-button {
    justify-content: center;
    width: 100%;
  }

  .kw-news-detail-section {
    padding-top: 48px;
  }

  .kw-news-detail {
    width: min(100% - 28px, 1140px);
  }

  .kw-news-detail__header h1 {
    font-size: clamp(30px, 12vw, 40px);
  }

  .kw-news-detail__header > p {
    font-size: 17px;
  }

  .kw-news-detail__hero {
    border-radius: 18px;
  }

  .kw-news-detail__hero img,
  .kw-news-detail__hero image-slot {
    aspect-ratio: 16 / 10;
  }

  .kw-news-detail-gallery > div {
    grid-template-columns: 1fr;
  }

  .kw-footer {
    padding-inline: 20px;
  }

  .kw-footer__columns {
    grid-template-columns: 1fr;
  }

  .kw-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Configurable embedded block backgrounds. */
.kw-site--page .kw-breadcrumb--bar,
.kw-site--page .kw-breadcrumb--has-bg,
.kw-breadcrumb--bar,
.kw-breadcrumb--has-bg {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-bottom: clamp(30px, 3vw, 44px);
  padding-left: max(20px, calc((100% - 1200px) / 2));
}

.kw-site--page .kw-breadcrumb--bar,
.kw-site--page .kw-breadcrumb--has-bg {
  min-height: clamp(106px, 7vw, 138px);
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}

.kw-site--page main:has(.kw-news-detail-section) > .kw-breadcrumb--bar,
.kw-site--page main:has(.kw-news-detail-section) > .kw-breadcrumb--has-bg {
  min-height: clamp(118px, 7vw, 148px);
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}

.kw-site--page main:has(.kw-news-detail-section) > .kw-breadcrumb {
  display: none;
}

.kw-site--page main:has(.kw-news-detail-section) {
  padding-top: 72px;
}

.kw-site--page:has(.kw-alert) main:has(.kw-news-detail-section) {
  padding-top: 114px;
}

.kw-site--page:has(.kw-alert):has(.kw-popup--top-bar.is-visible) main:has(.kw-news-detail-section) {
  padding-top: 156px;
}

.kw-news-breadcrumb-inline {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: clamp(112px, 7vw, 142px);
  place-items: center;
  background: color-mix(in srgb, var(--accent, #10b981) 8%, white);
}

.kw-news-breadcrumb-inline__inner {
  position: static;
  display: flex;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  gap: 12px;
  transform: none;
  color: var(--kw-ink-3, #64748b);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.kw-news-breadcrumb-inline__inner a {
  color: inherit;
  text-decoration: none;
}

.kw-news-breadcrumb-inline__inner strong {
  color: var(--kw-blue, #1e3a8a);
  font: inherit;
}

.kw-news-breadcrumb-inline__inner span {
  color: color-mix(in srgb, var(--kw-ink-3, #64748b) 70%, white);
}

.kw-breadcrumb--bg-none {
  background: transparent;
}

.kw-breadcrumb--bg-mint {
  background: color-mix(in srgb, var(--accent, #10b981) 8%, white);
}

.kw-breadcrumb--bg-soft {
  background: var(--bg-soft, #f8fafc);
}

.kw-breadcrumb--bg-white {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

.kw-breadcrumb--bg-custom {
  background: var(--breadcrumb-bg, color-mix(in srgb, var(--accent, #10b981) 8%, white));
}

.kw-news-detail-section + .kw-text-button-banner-section {
  padding-top: clamp(88px, 7vw, 128px);
}

.kw-text-button-banner-section--bg-mint,
.kw-text-button-banner-section--bg-soft,
.kw-text-button-banner-section--bg-white,
.kw-text-button-banner-section--bg-custom {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - 1200px) / 2));
  padding-left: max(20px, calc((100% - 1200px) / 2));
}

.kw-text-button-banner-section--bg-mint {
  background: color-mix(in srgb, var(--accent, #10b981) 8%, white);
}

.kw-text-button-banner-section--bg-soft {
  background: var(--bg-soft, #f8fafc);
}

.kw-text-button-banner-section--bg-white {
  background: #fff;
}

.kw-text-button-banner-section--bg-custom {
  background: var(--text-button-section-bg, transparent);
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner {
  width: min(1200px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 96px);
  min-height: 0;
  padding: clamp(48px, 5vw, 72px);
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__content {
  max-width: 680px;
  text-align: left;
}

.kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
  flex: 0 0 auto;
  justify-self: auto;
}

@media (max-width: 900px) {
  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark {
    align-items: flex-start;
    flex-direction: column;
  }

  .kw-site--page .kw-text-button-banner-section .kw-text-button-banner--dark .kw-text-button-banner__button {
    width: 100%;
  }
}

/* Vue subpage parity: current Twig renderer using the same shell proportions. */
.kw-nav__mobile {
  display: none;
  position: relative;
}

@media (min-width: 1101px) {
  .kw-nav__mobile {
    display: none !important;
  }
}

.kw-nav__mobile summary {
  list-style: none;
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 16px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.kw-nav__mobile summary::-webkit-details-marker {
  display: none;
}

.kw-nav__mobile summary:hover {
  background: rgba(15, 23, 42, 0.06);
}

.kw-nav__mobile-panel {
  position: fixed;
  top: 72px;
  right: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  max-height: calc(100vh - 92px);
  overflow: auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  box-shadow: 0 28px 70px -32px rgba(15, 23, 42, 0.38);
}

.kw-nav__mobile-panel a {
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.kw-nav__mobile-panel a:hover,
.kw-nav__mobile-panel a.is-active {
  background: var(--accent-soft, #ecfdf5);
  color: var(--accent-ink, #047857);
}

.kw-nav__mobile-child {
  margin-left: 12px;
  color: var(--kw-ink-2) !important;
  font-size: 14px !important;
}

.kw-nav__mobile-actions {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  padding-top: 12px;
}

.kw-site--page .kw-nav {
  min-height: 86px;
}

.kw-site--page .kw-breadcrumb {
  padding-top: 122px;
  padding-bottom: 18px;
  font-size: 14px;
}

.kw-site--page:has(.kw-alert) .kw-breadcrumb {
  padding-top: 42px;
  padding-bottom: 22px;
}

.kw-site--page .kw-breadcrumb--bar,
.kw-site--page .kw-breadcrumb--has-bg {
  padding-top: 130px;
  padding-bottom: 18px;
}

.kw-site--page:has(.kw-alert) .kw-breadcrumb--bar,
.kw-site--page:has(.kw-alert) .kw-breadcrumb--has-bg {
  padding-top: 46px;
  padding-bottom: 22px;
}

.kw-site--page .kw-breadcrumb + .kw-section:not(.kw-soft) {
  padding-top: 86px;
}

.kw-site--page:has(.kw-alert) .kw-breadcrumb + .kw-section:not(.kw-soft) {
  padding-top: 112px;
}

.kw-site--page .kw-section + .kw-section {
  padding-top: 78px;
}

/* Softer spacing rhythm for subpages: more whitespace between blocks and list rows. */
.kw-site--page .kw-section + .kw-section {
  padding-top: 92px;
}

.kw-site--page .kw-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.kw-site--page .kw-section__head {
  gap: 8px;
  margin-bottom: 40px;
}

.kw-site--page .kw-meal-list,
.kw-site--page .kw-events,
.kw-site--page .kw-timeline,
.kw-site--page .kw-position-list {
  gap: 18px;
}

.kw-feature-grid,
.kw-staff-grid,
.kw-review-grid,
.kw-contact__grid,
.kw-pricing-grid,
.kw-news-grid,
.kw-gallery-grid {
  gap: 24px;
}

.kw-gallery-masonry {
  column-gap: 22px;
}

.kw-gallery-tile {
  margin-bottom: 24px;
}

.kw-site--page .kw-section__head--center,
.kw-site--page .kw-section__head--staff {
  gap: 18px;
  justify-items: center;
  margin-bottom: 54px;
  text-align: center;
}

.kw-footer {
  display: block;
  max-width: none;
  margin: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  padding: 0;
}

.kw-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(260px, 2fr) minmax(190px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 42px;
}

.kw-footer__brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: var(--kw-ink-2);
  font-size: 14.5px;
  line-height: 1.7;
}

.kw-footer__brand-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: var(--navy) !important;
  font-size: 18px;
  font-weight: 900 !important;
}

.kw-footer__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--accent-400, #34d399), var(--accent, #10b981));
  box-shadow: 0 14px 28px -18px var(--accent-shadow, rgba(16, 185, 129, 0.55));
}

.kw-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.kw-footer__socials a {
  display: grid !important;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-soft, #f8fafc);
  color: var(--navy) !important;
  margin: 0 !important;
}

.kw-footer__socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.kw-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 26px;
}

.kw-footer__column strong,
.kw-footer__contact strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.kw-footer__column a,
.kw-footer__contact a,
.kw-footer__contact span {
  display: block;
  margin-top: 12px;
  color: var(--kw-ink-2);
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
}

.kw-footer__column a:hover,
.kw-footer__contact a:hover {
  color: var(--accent-ink, #047857);
}

.kw-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  padding: 22px 0 30px;
  color: var(--kw-ink-3);
  font-size: 13.5px;
}

.kw-footer__powered strong {
  color: var(--accent-ink, #047857);
}

.kw-testimonials-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.10), transparent 30%);
}

.kw-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.kw-testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px -38px rgba(15, 23, 42, 0.35);
}

.kw-testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.kw-testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.kw-testimonial-card p {
  flex: 1;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
}

.kw-testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.kw-testimonial-card__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 999px;
  background: #eaf3ff;
}

.kw-testimonial-card strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.kw-testimonial-card span {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 900px) {
  .kw-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .kw-nav {
    grid-template-columns: 1fr auto;
  }

  .kw-nav__links,
  .kw-nav__actions {
    display: none;
  }

  .kw-nav__mobile {
    display: block;
  }

  .kw-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .kw-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .kw-site--page .kw-breadcrumb,
  .kw-site--page .kw-breadcrumb--bar,
  .kw-site--page .kw-breadcrumb--has-bg {
    padding-top: 92px;
  }

  .kw-footer__inner,
  .kw-footer__columns,
  .kw-footer__bottom {
    grid-template-columns: 1fr;
  }

  .kw-footer__bottom {
    display: grid;
    justify-items: start;
  }
}

/* Keep public-page breadcrumbs visually separated from the fixed top navigation. */
.kw-site--page .kw-breadcrumb {
  margin-top: 22px;
  margin-bottom: 38px;
}

.kw-site--page:has(.kw-alert) .kw-breadcrumb {
  margin-top: 28px;
}

.kw-site--page .kw-breadcrumb + .kw-section {
  padding-top: 24px;
}

/* Mobile viewport containment: keep Kidolo Web storefront inside 320-430px screens. */
html,
body,
.kw-site {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 620px) {
  .kw-alert {
    padding: 10px 16px;
    font-size: 13px;
    line-height: 1.35;
  }

  .kw-site:has(.kw-alert) main,
  .kw-site:has(.kw-alert):has(.kw-popup--top-bar) main {
    padding-top: 0;
  }

  .kw-site:has(.kw-alert) .kw-nav,
  .kw-site:has(.kw-alert):has(.kw-popup--top-bar) .kw-nav,
  .kw-nav {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
    overflow: hidden;
  }

  .kw-brand {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .kw-brand__logo {
    width: min(138px, 48vw);
    height: 34px;
    object-fit: contain;
  }

  .kw-nav__actions,
  .kw-nav__links {
    display: none !important;
  }

  .kw-nav button[aria-label="Menu"] {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    padding: 0;
  }

  .kw-hero {
    width: min(100% - 28px, 1200px);
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 58px;
    gap: 30px;
  }

  .kw-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 12vw, 44px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .kw-hero p,
  .kw-hero__lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.62;
  }

  .kw-eyebrow {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }

  .kw-hero__actions {
    align-items: stretch;
  }

  .kw-hero__actions .kw-button {
    width: 100%;
  }

  .kw-hero-frame,
  .kw-hero-frame > image-slot,
  .kw-image-placeholder,
  .kw-map-placeholder {
    min-height: 260px;
    border-radius: 24px;
  }

  .kw-floating-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .kw-section,
  .kw-features-section__inner,
  .kw-live-menu-section,
  .kw-enroll {
    width: min(100% - 28px, 1200px);
  }
}

@media (max-width: 390px) {
  .kw-alert {
    font-size: 12.5px;
  }

  .kw-nav {
    padding-inline: 12px;
  }

  .kw-brand__logo {
    width: min(128px, 46vw);
    height: 32px;
  }

  .kw-hero h1 {
    font-size: clamp(32px, 11.5vw, 40px);
  }

  .kw-section,
  .kw-features-section__inner,
  .kw-live-menu-section,
  .kw-enroll {
    width: min(100% - 24px, 1200px);
  }
}

@media (max-width: 620px) {
  .kw-site:has(.kw-alert) .kw-nav,
  .kw-site:has(.kw-alert):has(.kw-popup--top-bar) .kw-nav,
  .kw-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 20;
    overflow: visible;
    background: rgba(255, 255, 255, 0.96);
  }

  .kw-brand,
  .kw-brand__logo {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .kw-nav button[aria-label="Menu"] {
    display: inline-grid !important;
    place-items: center;
    color: var(--navy);
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 620px) {
  .kw-nav > *,
  .kw-nav::before {
    transform: none !important;
  }

  .kw-nav::before {
    display: none !important;
  }

  .kw-nav .kw-brand {
    display: flex !important;
    align-items: center;
    min-width: 0;
    width: auto;
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .kw-nav .kw-brand__logo {
    display: block !important;
    width: min(138px, 48vw) !important;
    height: auto !important;
    max-height: 38px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .kw-nav .kw-nav__mobile {
    display: block !important;
    justify-self: end;
    min-width: 0;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .kw-nav .kw-nav__mobile summary {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--navy);
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
  }
}

@media (max-width: 620px) {
  .kw-nav .kw-nav__mobile {
    display: block !important;
    position: relative !important;
    z-index: 50 !important;
    justify-self: end !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
  }

  .kw-nav .kw-nav__mobile summary {
    position: relative !important;
    display: grid !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    place-items: center !important;
    overflow: hidden !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: transparent !important;
    box-shadow: 0 10px 24px -18px rgba(15, 23, 42, 0.35) !important;
  }

  .kw-nav .kw-nav__mobile summary::before {
    content: "";
    display: block;
    width: 22px;
    height: 16px;
    background:
      linear-gradient(var(--navy), var(--navy)) 0 0 / 22px 2.5px no-repeat,
      linear-gradient(var(--navy), var(--navy)) 0 7px / 22px 2.5px no-repeat,
      linear-gradient(var(--navy), var(--navy)) 0 14px / 22px 2.5px no-repeat;
  }

  .kw-nav .kw-nav__mobile[open] summary::before {
    height: 22px;
    background:
      linear-gradient(var(--navy), var(--navy)) center / 22px 2.5px no-repeat,
      linear-gradient(var(--navy), var(--navy)) center / 2.5px 22px no-repeat;
    transform: rotate(45deg);
  }
}

@media (max-width: 620px) {
  .kw-site .kw-nav,
  .kw-site:has(.kw-alert) .kw-nav,
  .kw-site:has(.kw-alert):has(.kw-popup--top-bar) .kw-nav {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 18px !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .kw-site .kw-nav .kw-brand {
    position: relative !important;
    z-index: 60 !important;
    display: flex !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    width: auto !important;
    max-width: calc(100% - 64px) !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .kw-site .kw-nav .kw-brand__logo {
    display: block !important;
    width: min(150px, 52vw) !important;
    max-width: 150px !important;
    height: auto !important;
    max-height: 42px !important;
    object-fit: contain !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }

  .kw-site .kw-nav .kw-nav__links,
  .kw-site .kw-nav .kw-nav__actions {
    display: none !important;
  }

  .kw-site .kw-nav .kw-nav__mobile {
    position: relative !important;
    z-index: 70 !important;
    display: block !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .kw-site .kw-nav .kw-nav__mobile summary {
    position: relative !important;
    display: block !important;
    width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -999px !important;
    overflow: hidden !important;
    cursor: pointer !important;
  }

  .kw-site .kw-nav .kw-nav__mobile summary::before,
  .kw-site .kw-nav .kw-nav__mobile summary::after {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    display: block !important;
    width: 22px !important;
    height: 2.5px !important;
    border-radius: 999px !important;
    background: var(--navy) !important;
    opacity: 1 !important;
  }

  .kw-site .kw-nav .kw-nav__mobile summary::before {
    top: 15px !important;
    box-shadow: 0 7px 0 var(--navy) !important;
  }

  .kw-site .kw-nav .kw-nav__mobile summary::after {
    top: 29px !important;
  }

  .kw-site .kw-nav .kw-nav__mobile[open] summary::before {
    top: 22px !important;
    box-shadow: none !important;
    transform: rotate(45deg) !important;
  }

  .kw-site .kw-nav .kw-nav__mobile[open] summary::after {
    top: 22px !important;
    transform: rotate(-45deg) !important;
  }
}
