/* =========================================================
   AKN PROJECTS — OUR WORK PAGE
   ========================================================= */

.page-work { background: var(--white); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Shared ---------- */
.wk-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.wk-eyebrow--light { color: var(--gold-light); }

.wk-heading {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.9vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
}
.wk-heading--light { color: var(--white); }

.wk-copy {
  font-size: 13.8px;
  line-height: 1.8;
  color: rgba(12,31,37,0.66);
  margin: 0 0 14px;
}
.wk-copy--light { color: rgba(255,255,255,0.66); }

.wk-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.35s var(--ease), opacity 0.3s var(--ease);
}
.wk-link:hover { gap: 13px; opacity: 0.85; }

.wk-pin {
  display: inline-flex;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--gold);
}
.wk-pin svg { width: 100%; height: 100%; }

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.wk-hero {
  position: relative;
  isolation: isolate;
  margin-top: var(--header-h);
  min-height: clamp(430px, 40vw, 580px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.wk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/services/our-work-banner.webp') center right / cover no-repeat;
}

.wk-hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(8,24,29,0.95) 0%,
      rgba(8,24,29,0.9) 24%,
      rgba(8,24,29,0.7) 38%,
      rgba(8,24,29,0.32) 50%,
      rgba(8,24,29,0.08) 62%,
      rgba(8,24,29,0) 76%),
    linear-gradient(0deg,
      rgba(8,24,29,0.94) 0%,
      rgba(8,24,29,0.6) 17%,
      rgba(8,24,29,0.1) 32%,
      rgba(8,24,29,0) 48%);
}

.wk-hero-inner {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 54px 48px 0;
}
.wk-hero-text { max-width: 520px; }

.wk-hero-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0 32px;
}

.wk-hero-stats { display: flex; align-items: center; }
.wk-hero-stats li { position: relative; padding: 0 34px; }
.wk-hero-stats li:first-child { padding-left: 0; }
.wk-hero-stats li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(217,180,138,0.32);
}
.wk-hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.14;
}
.wk-hero-stats .wk-stat-word { font-size: 25px; }
.wk-hero-stats span { font-size: 12.4px; color: rgba(255,255,255,0.7); }

.wk-hero-script {
  margin: 0;
  text-align: right;
  font-family: "Dancing Script", var(--font-display), cursive;
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* =========================================================
   FEATURED PROJECT
   ========================================================= */
.wk-featured { background: var(--cream); padding: 58px 0 44px; }

.wk-featured-inner {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 46px;
  align-items: center;
}
.wk-featured-inner > * { min-width: 0; }

.wk-featured-media {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 10;
}
.wk-featured-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.wk-featured-media:hover img { transform: scale(1.04); }

.wk-featured-title {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.6vw, 33px);
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 10px;
}

.wk-featured-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.4px;
  color: rgba(12,31,37,0.7);
  margin: 0 0 22px;
}

.wk-spec { margin: 0 0 18px; }
.wk-spec-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(12,31,37,0.08);
}
.wk-spec-row:first-child { border-top: 1px solid rgba(12,31,37,0.08); }
.wk-spec dt {
  font-size: 12.6px;
  font-weight: 600;
  color: var(--dark);
}
.wk-spec dd {
  margin: 0;
  font-size: 12.8px;
  color: var(--gold);
}
.wk-spec dd i { font-style: normal; color: rgba(12,31,37,0.25); margin: 0 6px; }

.wk-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
}
.wk-featured-note {
  margin: 0;
  text-align: right;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.9;
  text-transform: uppercase;
  color: rgba(12,31,37,0.5);
}

/* =========================================================
   EXPLORE — filters + grid
   ========================================================= */
.wk-explore { background: var(--cream); padding: 6px 0 66px; }

.wk-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.wk-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.wk-filter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(12,31,37,0.72);
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.1);
  border-radius: 4px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.wk-filter:hover { border-color: rgba(178,134,87,0.5); color: var(--gold); }
.wk-filter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.wk-search { position: relative; }
.wk-search input {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  width: 260px;
  padding: 12px 44px 12px 16px;
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.12);
  border-radius: 4px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wk-search input::placeholder { color: rgba(12,31,37,0.42); }
.wk-search input:focus {
  outline: none;
  border-color: rgba(178,134,87,0.6);
  box-shadow: 0 0 0 3px rgba(178,134,87,0.12);
}
.wk-search-ico {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--gold);
  pointer-events: none;
}
.wk-search-ico svg { width: 100%; height: 100%; }

.wk-explore-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.wk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.wk-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(12,31,37,0.06);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 34px -28px rgba(12,31,37,0.45);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.wk-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178,134,87,0.4);
  box-shadow: 0 30px 56px -32px rgba(12,31,37,0.45);
}
.wk-card[hidden] { display: none; }

.wk-card-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream); }
.wk-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.wk-card:hover .wk-card-media img { transform: scale(1.07); }

.wk-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 18px;
}
.wk-card-body h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.35;
}
.wk-card-body p {
  font-size: 12.2px;
  color: var(--gold);
  margin: 0;
}

.wk-card-arrow {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(178,134,87,0.45);
  overflow: hidden;
  transition: color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.wk-card-arrow svg { width: 14px; height: 14px; position: relative; z-index: 1; }
.wk-card-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.wk-card:hover .wk-card-arrow { color: var(--white); border-color: transparent; transform: translateX(3px); }
.wk-card:hover .wk-card-arrow::before { transform: scale(1); opacity: 1; }

.wk-empty {
  margin: 26px 0 0;
  font-size: 13.6px;
  color: rgba(12,31,37,0.6);
}

/* =========================================================
   BEFORE & AFTER
   ========================================================= */
.wk-ba { background: var(--white); padding: 66px 0; }

.wk-ba-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}
.wk-ba-head-right { display: flex; flex-direction: column; align-items: flex-start; }
.wk-ba-head-right .wk-copy { max-width: 430px; }

.wk-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.wk-ba-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: var(--dark);
  margin-bottom: 14px;
  user-select: none;
  box-shadow: 0 18px 40px -30px rgba(12,31,37,0.55);
}
.wk-ba-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wk-ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid rgba(251,250,247,0.9);
}
.wk-ba-before-wrap img { width: auto; }

.wk-ba-tag {
  position: absolute;
  bottom: 12px;
  z-index: 3;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(8,24,29,0.72);
  backdrop-filter: blur(4px);
}
.wk-ba-tag--before { left: 12px; }
.wk-ba-tag--after { right: 12px; }

.wk-ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  background: rgba(251,250,247,0.95);
  box-shadow: 0 6px 18px rgba(8,24,29,0.35);
  pointer-events: none;
  transition: transform 0.2s var(--ease);
}
.wk-ba-handle svg { width: 18px; height: 18px; }
.wk-ba-frame:hover .wk-ba-handle { transform: translate(-50%, -50%) scale(1.08); }

.wk-ba-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.wk-ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 44px; height: 100%; }
.wk-ba-range::-moz-range-thumb { width: 44px; height: 100%; border: 0; background: transparent; }

.wk-ba-item h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 3px;
}
.wk-ba-item p { font-size: 12.2px; color: var(--gold); margin: 0; }

/* =========================================================
   PROJECT SPOTLIGHT
   ========================================================= */
.wk-spotlight {
  padding: 66px 0;
  background:
    linear-gradient(180deg, rgba(8,24,29,0.93), rgba(8,24,29,0.96)),
    url('../images/bg-footer.png') center / cover no-repeat;
}

.wk-spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr 0.62fr;
  gap: 38px;
  align-items: center;
}
.wk-spotlight-inner > * { min-width: 0; }

.wk-spotlight-text .wk-heading { margin-bottom: 14px; }
.wk-spotlight-text .wk-copy { margin-bottom: 22px; }

.wk-spotlight-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(217,180,138,0.22);
}
.wk-spotlight-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.wk-spotlight-media:hover img { transform: scale(1.05); }

.wk-meta-row { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.wk-meta-row:first-child { padding-top: 0; }
.wk-meta-row span {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(217,180,138,0.85);
  margin-bottom: 5px;
}
.wk-meta-row strong {
  font-family: var(--font-body);
  font-size: 13.4px;
  font-weight: 500;
  color: var(--white);
}

.wk-spotlight-script {
  margin: 22px 0 0;
  font-family: "Dancing Script", var(--font-display), cursive;
  font-size: 22px;
  line-height: 1.35;
  color: rgba(255,255,255,0.86);
}

/* =========================================================
   DETAILS
   ========================================================= */
.wk-details { background: var(--cream); padding: 62px 0; }

.wk-details-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.wk-details-head .wk-copy { max-width: 420px; margin: 0; }

.wk-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.wk-detail figure {
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 2.6;
  background: var(--white);
}
.wk-detail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.wk-detail:hover img { transform: scale(1.06); }
.wk-detail h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 5px;
}
.wk-detail p { font-size: 12.6px; line-height: 1.6; color: rgba(12,31,37,0.6); margin: 0; }

/* =========================================================
   PROUDLY SERVING
   ========================================================= */
.wk-areas { background: #faf8f4; padding: 58px 0; }

.wk-areas-inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.25fr;
  gap: 40px;
  align-items: center;
}
.wk-areas-inner > * { min-width: 0; }

.wk-areas-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 12px;
}
.wk-areas-intro .wk-copy { max-width: 330px; }

.wk-areas-map { display: flex; justify-content: center; }
.wk-areas-map img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(12,31,37,0.14));
  transition: transform 0.6s var(--ease);
}
.wk-areas-map img:hover { transform: translateY(-4px) scale(1.02); }

.wk-areas-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.wk-areas-list { display: flex; flex-direction: column; gap: 13px; }
.wk-areas-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13.4px;
  color: rgba(12,31,37,0.78);
}
.wk-areas-list li:hover .wk-pin { transform: translateY(-2px); }
.wk-areas-list .wk-pin { transition: transform 0.35s var(--ease); }

/* =========================================================
   CTA
   ========================================================= */
.wk-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 62px 0;
  display: flex;
  align-items: center;
  min-height: 290px;
}
.wk-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(6,14,18,0.3) 0%, rgba(6,14,18,0.12) 45%, rgba(6,14,18,0.26) 100%),
    url('../images/CTA-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.wk-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 42px;
  border-radius: 4px;
  background: rgba(12,31,37,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(217,180,138,0.26);
}
.wk-cta-eyebrow {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}
.wk-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.22;
  margin: 0 0 10px;
}
.wk-cta-copy {
  font-size: 13.4px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 400px;
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .wk-hero-inner { padding: 44px 32px 0; }
  .wk-hero-text { max-width: 64%; }
  .wk-hero-bar { padding: 32px 0 26px; }
  .wk-hero-stats li { padding: 0 22px; }

  .wk-featured-inner { grid-template-columns: 1fr; gap: 28px; }
  .wk-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-ba-grid { grid-template-columns: repeat(2, 1fr); }
  .wk-ba-head, .wk-details-head { grid-template-columns: 1fr; gap: 16px; }

  .wk-spotlight-inner { grid-template-columns: 1fr 1fr; }
  .wk-spotlight-media { grid-column: 1 / -1; order: -1; aspect-ratio: 16 / 8; }

  .wk-details-grid { grid-template-columns: repeat(2, 1fr); }

  .wk-areas-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .wk-areas-map { grid-row: span 2; align-self: center; }
  .wk-areas-intro .wk-copy { max-width: none; }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 720px) {
  .wk-hero { min-height: 0; }
  .wk-hero-bg { background-position: center; }
  .wk-hero-veil {
    background: linear-gradient(0deg, rgba(8,24,29,0.97) 0%, rgba(8,24,29,0.9) 46%, rgba(8,24,29,0.72) 72%, rgba(8,24,29,0.5) 100%);
  }
  .wk-hero-inner { padding: 36px 24px 0; }
  .wk-hero-text { max-width: none; }

  .wk-hero-bar { flex-direction: column; align-items: flex-start; gap: 18px; padding: 30px 0 26px; }
  .wk-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 0; width: 100%; }
  .wk-hero-stats li { padding: 0 16px; }
  .wk-hero-stats li:nth-child(odd) { padding-left: 0; }
  .wk-hero-stats li:nth-child(odd)::before { display: none; }
  .wk-hero-stats strong { font-size: 24px; }
  .wk-hero-stats .wk-stat-word { font-size: 21px; }
  .wk-hero-script { text-align: left; font-size: 20px; }

  .wk-featured { padding: 44px 0 34px; }
  .wk-featured-media { aspect-ratio: 4 / 3; }
  .wk-spec-row { grid-template-columns: 1fr; gap: 3px; }
  .wk-featured-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wk-featured-foot .btn { width: 100%; justify-content: center; }
  .wk-featured-note { text-align: left; }

  .wk-explore { padding: 4px 0 48px; }
  .wk-tools { flex-direction: column; align-items: stretch; gap: 16px; margin-bottom: 26px; }
  .wk-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0 -24px;
    padding: 0 24px 2px;
  }
  .wk-filters::-webkit-scrollbar { display: none; }
  .wk-filters li { flex: 0 0 auto; }
  .wk-search input { width: 100%; }

  .wk-explore-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wk-grid { grid-template-columns: 1fr; gap: 16px; }
  .wk-card-media { aspect-ratio: 4 / 2.9; }

  .wk-ba { padding: 46px 0; }
  .wk-ba-grid { grid-template-columns: 1fr; gap: 22px; }
  .wk-ba-frame { aspect-ratio: 4 / 3; }

  .wk-spotlight { padding: 46px 0; }
  .wk-spotlight-inner { grid-template-columns: 1fr; gap: 24px; }
  .wk-spotlight-media { aspect-ratio: 4 / 3; order: -1; }
  .wk-spotlight-text .btn { width: 100%; justify-content: center; }
  .wk-spotlight-script { text-align: left; }

  .wk-details { padding: 46px 0; }
  .wk-details-grid { grid-template-columns: 1fr; gap: 18px; }
  .wk-detail figure { aspect-ratio: 4 / 2.4; }

  .wk-areas { padding: 44px 0; }
  .wk-areas-inner { grid-template-columns: 1fr; gap: 24px; }
  .wk-areas-map { grid-row: auto; }
  .wk-areas-map img { max-width: 190px; }
  .wk-areas-lists { gap: 12px 16px; }

  .wk-cta { padding: 44px 0; min-height: 0; }
  .wk-cta-panel { flex-direction: column; align-items: flex-start; gap: 20px; padding: 26px 22px; }
  .wk-cta-panel .btn { width: 100%; justify-content: center; }
  .wk-cta-copy { max-width: none; }
}
