/* ka-default-theme.css — fallback theme styling for K&A modules.
 *
 * This loads on EVERY site that activates ka-divi-modules. Site Tokens (when
 * present via wes-agent-bridge) override the CSS variables below.
 *
 * Purpose: a test build / fresh client install should NEVER look like a 5%
 * unstyled page. This file gives every K&A module reasonable typography,
 * spacing, color contrast, and visual hierarchy out of the box.
 *
 * Override strategy: every value uses CSS custom property with a fallback —
 * `var(--ka-token-brand-color-primary, #c9a35a)` — so when the bridge emits
 * brand tokens, this file gets out of the way automatically.
 */

/* ============================================================ Tokens ===== */

:root {
  /* Brand colors — fallbacks when Site Tokens aren't loaded */
  --ka-color-primary:    var(--ka-token-brand-color-primary,  #c9a35a);
  --ka-color-dark:       var(--ka-token-brand-color-dark,     #1c1d23);
  --ka-color-cream:      var(--ka-token-brand-color-cream,    #f5efe0);
  --ka-color-muted:      var(--ka-token-brand-color-muted,    #6b6f7a);
  --ka-color-white:      var(--ka-token-brand-color-white,    #ffffff);
  --ka-color-link:       var(--ka-token-brand-color-link,     #2a5fa3);
  --ka-color-ink:        #15161b;
  --ka-color-text:       #2c2e36;
  --ka-color-text-light: rgba(255, 255, 255, 0.92);
  --ka-color-overlay:    rgba(0, 0, 0, 0.55);
  --ka-color-overlay-soft: rgba(0, 0, 0, 0.35);
  --ka-color-overlay-strong: rgba(0, 0, 0, 0.75);

  /* Typography */
  --ka-font-heading: var(--ka-token-font-heading, "Playfair Display", "Times New Roman", Georgia, serif);
  --ka-font-body:    var(--ka-token-font-body,    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif);
  --ka-font-mono:    var(--ka-token-font-mono,    "JetBrains Mono", Menlo, Consolas, monospace);

  /* Radii */
  --ka-radius-sm:   var(--ka-token-radius-sm,   6px);
  --ka-radius-md:   var(--ka-token-radius-md,   12px);
  --ka-radius-lg:   var(--ka-token-radius-lg,   24px);
  --ka-radius-pill: var(--ka-token-radius-pill, 999px);

  /* Shadows */
  --ka-shadow-sm: var(--ka-token-shadow-sm, 0 2px 8px rgba(0,0,0,.08));
  --ka-shadow-md: var(--ka-token-shadow-md, 0 8px 24px rgba(0,0,0,.12));
  --ka-shadow-lg: var(--ka-token-shadow-lg, 0 16px 48px rgba(0,0,0,.18));

  /* Spacing */
  --ka-space-unit:      var(--ka-token-space-unit,      8px);
  --ka-space-section-y: var(--ka-token-space-section-y, 96px);
  --ka-space-section-x: var(--ka-token-space-section-x, 32px);
}

/* ============================================================ Resets ===== */

.ka_header_bar *,
.ka_overlay_menu *,
.ka_hero_slider *,
.ka_hero_slide *,
.ka_location_grid *,
.ka_location_card *,
.ka_services_strip *,
.ka_services_item *,
.ka_brand_slider *,
.ka_brand_slide * {
  box-sizing: border-box;
}

/* =========================================================== Header ==== */

.ka_header_bar {
  /* background, padding, border-bottom now live in the module's Design-tab
     attributes (saved block) — edit them in the Visual Builder, not here. */
  position: relative;
  color: var(--ka-color-text-light);
  min-height: 72px;
  display: flex;
  align-items: center;
}
/* Specificity bumped to .ka_header_bar … so these beat the style.scss VB
   baseline (which sets the grid to flex + the quote button blue). 3-column
   grid: hamburger left, logo centered, search + quote pinned right. */
.ka_header_bar .ka_header_bar__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: calc(var(--ka-space-unit) * 3);
  width: 100%;
}
.ka_header_bar .ka_header_bar__hamburger { justify-self: start; }
.ka_header_bar .ka_header_bar__logo { justify-self: center; }
.ka_header_bar__hamburger {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  transition: opacity .15s ease;
}
.ka_header_bar__hamburger:hover { opacity: 0.7; }
.ka_header_bar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.ka_header_bar__logo {
  font-family: var(--ka-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.ka_header_bar__logo img {
  /* max-height now in the logo element's Design-tab Sizing attribute. */
  display: block;
  width: auto;
}
.ka_header_bar .ka_header_bar__right {
  display: flex;
  align-items: center;
  gap: calc(var(--ka-space-unit) * 2);
  justify-self: end;
}
.ka_header_bar .ka_header_bar__search {
  /* background + border-radius now in the search element's Design-tab attributes. */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.7);
}
.ka_header_bar .ka_header_bar__search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: inherit;
  font-family: var(--ka-font-body);
  font-size: 14px;
  min-width: 220px;
}
.ka_header_bar__search input::placeholder { color: rgba(255,255,255,0.5); }
.ka_header_bar .ka_header_bar__quickquote {
  /* background, color, font, border-radius now in the quickQuoteButton element's
     Design-tab attributes (gold pill) — edit in the VB. Only layout + interaction
     state (padding, cursor, transition, shadow) stay here. */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--ka-shadow-sm);
}
.ka_header_bar .ka_header_bar__quickquote:hover {
  transform: translateY(-1px);
  box-shadow: var(--ka-shadow-md);
}

/* Mobile: keep the header bar inside the viewport (the 220px search min-width
   otherwise forces horizontal scroll at small widths). Search shrinks, the
   quick-quote collapses to its icon, gaps tighten. */
@media (max-width: 700px) {
  .ka_header_bar__grid { gap: 10px; }
  .ka_header_bar__right { gap: 8px; min-width: 0; }
  .ka_header_bar__search { flex: 1 1 auto; min-width: 0; padding: 8px 12px; }
  .ka_header_bar__search input { min-width: 0; width: 100%; font-size: 13px; }
  .ka_header_bar__quickquote { padding: 9px 12px; }
  .ka_header_bar__quickquote-label { display: none; }
}

/* ==================================================== Overlay menu ==== */

/* WES mega menu — full-screen overlay matching the legacy code-built design.
   position/inset/z-index use !important to beat Divi core's
   `.et_pb_module { position: relative }` (same-specificity tie that otherwise
   collapses the overlay to an in-flow zero-height element). */
.ka_overlay_menu {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99000 !important;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  /* Native-design: base background-color (#14121a) now comes from the module's
     saved block attribute (VB Design tab). The radial-dot texture stays here as a
     bridge-layer overlay (not expressible as a simple Divi background). */
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: opacity .25s ease, visibility .25s ease;
}
.ka_overlay_menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  animation: ka-overlay-fade .25s ease;
}
@keyframes ka-overlay-fade { from { opacity: 0; } to { opacity: 1; } }

/* Click-to-close layer behind the centered panel (transparent; the container
   carries the dark backdrop). */
.ka_overlay_menu__backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  cursor: pointer;
}
/* Native-design: panel padding + max-width come from saved block attributes
   (Design tab). Kept: positioning, centering, flex layout, min-height. */
.ka_overlay_menu .ka_overlay_menu__panel {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.ka_overlay_menu__close {
  position: absolute;
  top: 28px;
  right: 40px;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  line-height: 1;
  cursor: pointer;
  transition: all .15s ease;
}
.ka_overlay_menu__close:hover {
  color: #d4a24e;
  background: rgba(212, 162, 78, 0.25);
  border-color: #d4a24e;
}
/* Native-design: title font family/size/weight/color/letter-spacing come from
   saved block attributes (Design tab). Kept: order, margin, text-transform,
   text-align (kept structural — not migrated to the font group). */
.ka_overlay_menu__title {
  order: 0;
  margin: 0 0 56px;
  text-transform: uppercase;
  text-align: center;
}
/* Cards before quicklinks (matches the legacy section order). */
.ka_overlay_menu .ka_overlay_menu__cards {
  order: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin: 0 0 48px;
}
/* Quicklink rows styled as the legacy bordered link cards. */
.ka_overlay_menu__quicklinks {
  order: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 -48px;
  padding: 32px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.ka_overlay_menu__quicklinks--row2 { order: 3; border-top: 0; }
.ka_overlay_menu__quicklinks a {
  display: block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "AR One Sans", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-decoration: none;
  transition: all .15s ease;
}
.ka_overlay_menu__quicklinks a:hover {
  background: rgba(212, 162, 78, 0.1);
  border-color: #d4a24e;
  color: #d4a24e;
}
.ka_overlay_menu__quicklinks a strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Spectral", serif;
  font-size: 16px;
  font-weight: 700;
  color: #d4a24e;
}
.ka_overlay_menu__bottom-ctas {
  order: 4;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
/* Native-design: both bottom CTAs are driven by saved block attributes (Design
   tab) — primary (gold bg, dark text) and secondary (gold border, transparent,
   white text), incl. padding + radius. Kept here: shared structural box +
   transition, plus specificity-raised hovers (generated rules are 0,2,0). */
.ka_overlay_menu__cta {
  display: inline-block;
  text-decoration: none;
  transition: background .15s ease;
}
.ka_overlay_menu .ka_overlay_menu__cta:hover { background: #e6be6e; }
.ka_overlay_menu .ka_overlay_menu__cta--secondary:hover { background: rgba(212, 162, 78, 0.1); }

/* ---- Card (image / heading / lead / sublist / CTA) ---- */
/* Native-design: background / border / border-radius now come from saved block
   attributes (VB Design tab). Kept here: structural display/overflow + hover. */
.ka_overlay_menu_card {
  display: block;
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.ka_overlay_menu_card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(212, 162, 78, 0.4);
  transform: translateY(-2px);
}
.ka_overlay_menu_card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 3px solid #d4a24e;
  overflow: hidden;
}
.ka_overlay_menu_card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ka_overlay_menu_card .ka_overlay_menu_card__body { padding: 28px 28px 32px; }
.ka_overlay_menu_card__description p { margin: 0; }
/* Native-design: title/description fonts come from saved block attributes (Design tab).
   Kept here: structural margins + line-height. */
.ka_overlay_menu_card__title {
  margin: 0 0 8px;
}
.ka_overlay_menu_card__description {
  margin: 0 0 20px;
  line-height: 1.5;
}
.ka_overlay_menu_card__sublist ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin: 0 0 24px !important; /* beat Divi content-area <ul> margin/padding injection */
  padding: 0 !important;
  list-style: none;
}
.ka_overlay_menu_card__sublist li { margin: 0 !important; }
.ka_overlay_menu_card__sublist li { margin: 0; }
/* Native-design: sublist font family/size/color come from the sublist container's
   block bodyFont attribute (Design tab) and inherit to these links. Kept here:
   structural flex/min-height/padding/line-height + transition. */
.ka_overlay_menu_card__sublist a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 0;
  line-height: 26px;
  text-decoration: none;
  transition: color .15s ease;
}
/* Specificity raised above the generated bodyFont link rule (0,3,1) so the gold
   hover survives now that the base link color is Design-tab generated. */
.ka_overlay_menu .ka_overlay_menu_card .ka_overlay_menu_card__sublist a:hover { color: #d4a24e; }
.ka_overlay_menu_card__sublist a::before {
  content: "\203A";
  margin-right: 6px;
  color: #d4a24e;
  opacity: 0.5;
  transition: opacity .15s ease;
}
.ka_overlay_menu_card__sublist a:hover::before { opacity: 1; }
/* Native-design: cta font family/size/weight/color/letter-spacing come from saved
   block attributes (Design tab). Kept here: structural layout + gold underline accent
   + uppercase transform. */
.ka_overlay_menu_card__cta {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid #d4a24e;
  text-transform: uppercase;
  text-decoration: none;
}
/* Specificity raised above the generated cta rule (max 0,3,0 on cards 1/2) so the
   gold->white hover survives now that the base cta color is Design-tab generated. */
.ka_overlay_menu .ka_overlay_menu_card .ka_overlay_menu_card__cta:hover { color: #fff; border-color: #fff; }

@media (max-width: 980px) {
  .ka_overlay_menu__cards { grid-template-columns: 1fr; gap: 24px; }
  .ka_overlay_menu__quicklinks { grid-template-columns: 1fr 1fr; }
  .ka_overlay_menu__panel { padding: 72px 24px 40px; }
}

body.ka-overlay-menu-open { overflow: hidden; }

/* ====================================================== Hero slider ==== */
/* WES-native hero theme. Styles the ACTUAL render DOM (__inner / __image /
   __overlay / __status / __eyebrow / __title / __subtitle / __buttons) and the
   JS state class (.is-active). Brand gold comes from --ka-color-primary (Site
   Token). Replaces the older theme that targeted the stale __content / __sub /
   .active classes the current render no longer emits. */

/* A hero slider is inherently full-bleed: neutralize the WRAPPING Divi section/row
   default padding (54px / 27px) + row max-width so a page can place the block with
   NO layout CSS of its own (keeps the page 100% native). Scoped via :has() so only
   sections/rows that actually contain a hero slider are affected. */
.et_pb_section:has(.ka_hero_slider) { padding-top: 0 !important; padding-bottom: 0 !important; }
.et_pb_row:has(.ka_hero_slider) { padding-top: 0 !important; padding-bottom: 0 !important; width: 100% !important; max-width: 100% !important; }
.et_pb_row:has(.ka_hero_slider) > .et_pb_column { padding: 0 !important; }

.ka_hero_slider {
  position: relative;
  width: 100%;
  height: 640px;
  min-height: 640px;
  overflow: hidden;
  background: var(--ka-color-dark);
}
.ka_hero_slider__stage { position: relative; width: 100%; height: 100%; }

.ka_hero_slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.ka_hero_slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 1; }
/* Before the rotation script binds, show the first slide. */
.ka_hero_slider:not([data-ka-slider-bound]) .ka_hero_slide:first-child {
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* 2-class to beat bundle.css `.ka_hero_slide .ka_hero_slide__inner{display:block}`
   so the copy flex-centers (matches legacy). */
.ka_hero_slide .ka_hero_slide__inner {
  position: relative; width: 100%; height: 100%; display: flex; align-items: center;
}

/* Photo on __image; ONE 105deg scrim keeps copy readable (no double-dark overlay). */
.ka_hero_slide__image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.ka_hero_slide__image::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, rgba(20,18,22,.85) 0%, rgba(20,18,22,.55) 50%, rgba(20,18,22,.25) 100%);
}

/* Copy column — block flow so the status pill + eyebrow sit inline on one row. */
.ka_hero_slide__overlay {
  position: relative; z-index: 1; max-width: 720px; margin: 0;
  padding: 120px 64px 120px 80px; color: #fff; display: block;
}

.ka_hero_slide__status {
  display: inline-flex; align-items: center; gap: 8px; vertical-align: baseline;
  margin-bottom: 24px; font-family: "AR One Sans", sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  padding: 7px 14px; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; backdrop-filter: blur(8px);
}
.ka_hero_slide__status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25); animation: ka-hero-pulse 2s ease-in-out infinite;
}
@keyframes ka-hero-pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

.ka_hero_slide__eyebrow {
  display: inline-block; vertical-align: baseline; margin-left: 10px;
  font-family: "AR One Sans", sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ka-color-primary);
  padding: 6px 14px; border: 1px solid var(--ka-color-primary); border-radius: 2px;
  margin-bottom: 24px;
}
.ka_hero_slide__overlay > .ka_hero_slide__eyebrow:first-child { margin-left: 0; }
.ka_hero_slide__status + .ka_hero_slide__eyebrow { margin-left: 0; }

.ka_hero_slide__title {
  width: 100%; color: #fff; font-family: "Spectral", serif;
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; line-height: 1.05;
  letter-spacing: -.02em; margin: 0 0 20px; text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.ka_hero_slide__title em { font-style: italic; font-weight: 500; color: var(--ka-color-primary); }

.ka_hero_slide__subtitle {
  color: #f5f1ea; font-family: "AR One Sans", sans-serif; font-size: 16px;
  line-height: 1.5; margin: 0 0 32px; max-width: 560px;
}
.ka_hero_slide__subtitle p { margin: 0; }

.ka_hero_slide__buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.ka_hero_slide__button--primary {
  display: inline-flex; align-items: center; border: none; background: var(--ka-color-primary);
  color: #1a1d21; padding: 16px 32px; font-family: "AR One Sans", sans-serif; font-weight: 700;
  text-decoration: none; letter-spacing: .06em; font-size: 14px; text-transform: uppercase;
  border-radius: 2px; transition: all .2s ease; min-height: 48px;
  box-shadow: 0 1px 2px rgba(28,26,31,.1), 0 2px 6px rgba(28,26,31,.08);
}
.ka_hero_slide__button--primary::after {
  content: "\2192"; display: inline-block; margin-left: 10px; transition: transform .2s ease;
}
.ka_hero_slide__button--primary:hover { background: #E6BE6E; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(28,26,31,.18); }
.ka_hero_slide__button--primary:hover::after { transform: translateX(4px); }

.ka_hero_slide__button--secondary {
  display: inline-flex; align-items: center; background: transparent; color: #fff; padding: 16px 32px;
  font-family: "AR One Sans", sans-serif; font-weight: 700; text-decoration: none; letter-spacing: .06em;
  font-size: 14px; text-transform: uppercase; border-radius: 2px; border: 1px solid rgba(255,255,255,.4);
  transition: all .2s ease; min-height: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 1px 3px rgba(0,0,0,.18);
}
.ka_hero_slide__button--secondary:hover { background: rgba(255,255,255,.08); border-color: #fff; transform: translateY(-2px); }

.ka_hero_slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(20,18,22,.35); color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); transition: all .2s ease;
}
.ka_hero_slider__arrow:hover { background: var(--ka-color-primary); color: #1a1d21; border-color: var(--ka-color-primary); }
.ka_hero_slider__arrow--prev { left: 24px; }
.ka_hero_slider__arrow--next { right: 24px; }

.ka_hero_slider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 0; z-index: 3; }
.ka_hero_slider__dot { width: 44px; height: 44px; border-radius: 50%; background: transparent; border: 0; cursor: pointer; padding: 0; position: relative; }
.ka_hero_slider__dot::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); transition: background .15s; }
.ka_hero_slider__dot:hover::after { background: rgba(255,255,255,.7); }
.ka_hero_slider__dot[aria-selected="true"]::after { background: var(--ka-color-primary); }

@media (max-width: 880px) {
  .ka_hero_slider { height: auto; min-height: 520px; }
  .ka_hero_slide__overlay { padding: 88px 28px 96px; }
  .ka_hero_slide__title { font-size: clamp(32px, 8vw, 42px); }
  .ka_hero_slider__arrow { width: 40px; height: 40px; font-size: 22px; }
  .ka_hero_slider__arrow--prev { left: 10px; }
  .ka_hero_slider__arrow--next { right: 10px; }
}

/* =================================================== Location grid ==== */

.ka_location_grid {
  padding: calc(var(--ka-space-unit) * 8) var(--ka-space-section-x);
  background: var(--ka-color-cream);
}
.ka_location_grid__inner { max-width: 1280px; margin: 0 auto; }
.ka_location_grid__title {
  font-family: var(--ka-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 12px 0;
  color: var(--ka-color-ink);
  text-align: center;
}
.ka_location_grid__grid {
  display: grid;
  grid-template-columns: repeat(var(--ka-grid-cols, 4), 1fr);
  gap: calc(var(--ka-space-unit) * 3);
  margin-top: calc(var(--ka-space-unit) * 4);
}
@media (max-width: 1024px) { .ka_location_grid__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ka_location_grid__grid { grid-template-columns: 1fr; } }

.ka_location_card {
  background: #fff;
  border-radius: var(--ka-radius-md);
  overflow: hidden;
  box-shadow: var(--ka-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ka_location_card:hover { transform: translateY(-4px); box-shadow: var(--ka-shadow-lg); }
.ka_location_card__image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
/* The module renders an <img> child (not a CSS background), so the img itself
   must fill the fixed-height frame — otherwise each photo keeps its own aspect
   ratio and the cards' photos render at different pixel heights. */
.ka_location_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ka_location_card__body { padding: calc(var(--ka-space-unit) * 3); }
.ka_location_card__name {
  font-family: var(--ka-font-heading);
  font-size: 1.4rem;
  margin: 0 0 8px 0;
  color: var(--ka-color-ink);
}
.ka_location_card__address,
.ka_location_card__hours,
.ka_location_card__phone {
  font-size: 14px;
  color: var(--ka-color-text);
  margin: 4px 0;
  opacity: 0.85;
}
.ka_location_card__phone a { color: inherit; text-decoration: none; }
.ka_location_card__status {
  display: inline-flex;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1a6a32;
  background: #dcf2e3;
  padding: 4px 12px;
  border-radius: var(--ka-radius-pill);
}
.ka_location_card__buttons {
  display: flex;
  gap: 8px;
  margin-top: calc(var(--ka-space-unit) * 2);
}
.ka_location_card__button {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: var(--ka-radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s ease;
}
.ka_location_card__button--primary {
  background: var(--ka-color-ink);
  color: #fff;
}
.ka_location_card__button--secondary {
  background: transparent;
  color: var(--ka-color-ink);
  border: 1px solid var(--ka-color-ink);
}
.ka_location_card__button:hover { opacity: 0.85; }

/* ========================================================= Footer ==== */
/* Dark Theme-Builder footer (section carries the .wes-footer class). Divi's
   default link colour is bright blue; brand links read as dim cream with a
   gold hover. Headings stay white (set inline per column). */
.wes-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color 0.15s ease; }
.wes-footer a:hover { color: #d4a24e; }

/* =================================================== Services strip ==== */

.ka_services_strip {
  padding: calc(var(--ka-space-unit) * 8) var(--ka-space-section-x);
  background: var(--ka-color-dark);
  color: var(--ka-color-text-light);
}
.ka_services_strip__inner { max-width: 1280px; margin: 0 auto; }
.ka_services_strip__head { text-align: center; margin-bottom: calc(var(--ka-space-unit) * 4); }
.ka_services_strip__title {
  font-family: var(--ka-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
}
.ka_services_strip__grid {
  display: grid;
  grid-template-columns: repeat(var(--ka-grid-cols, 5), 1fr);
  gap: calc(var(--ka-space-unit) * 3);
}
@media (max-width: 1024px) { .ka_services_strip__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ka_services_strip__grid { grid-template-columns: 1fr; } }

.ka_services_item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.ka_services_item__icon {
  width: 48px;
  height: 48px;
  color: var(--ka-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ka_services_item__icon svg { width: 100%; height: 100%; }
.ka_services_item__title {
  font-family: var(--ka-font-heading);
  font-size: 1.2rem;
  margin: 0;
}
.ka_services_item__description {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ====================================================== Brand slider ==== */

.ka_brand_slider {
  padding: calc(var(--ka-space-unit) * 10) var(--ka-space-section-x);
  background: var(--ka-color-cream);
}
.ka_brand_slider__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  border-radius: var(--ka-radius-lg);
  padding: calc(var(--ka-space-unit) * 6);
  box-shadow: var(--ka-shadow-md);
  min-height: 360px;
}

.ka_brand_slide {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: calc(var(--ka-space-unit) * 5);
  align-items: center;
}
.ka_brand_slide.active { display: grid; }
@media (max-width: 900px) { .ka_brand_slide { grid-template-columns: 1fr; } }
.ka_brand_slide__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: var(--ka-radius-md);
}
.ka_brand_slide__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ka-color-primary);
  margin-bottom: 12px;
}
.ka_brand_slide__title {
  font-family: var(--ka-font-heading);
  font-size: 2rem;
  margin: 0 0 12px 0;
}
.ka_brand_slide__content { color: var(--ka-color-text); line-height: 1.6; }
.ka_brand_slide__featured {
  margin: calc(var(--ka-space-unit) * 2) 0;
  padding: calc(var(--ka-space-unit) * 2);
  background: var(--ka-color-cream);
  border-radius: var(--ka-radius-md);
}
.ka_brand_slide__buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

/* ============================================================ Common ==== */

/* Centralize all K&A buttons for unstyled-test consistency */
.ka_button, .ka_cta__button, .ka_editorial_band__button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--ka-radius-pill);
  font-family: var(--ka-font-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  background: var(--ka-color-primary);
  color: var(--ka-color-ink);
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: var(--ka-shadow-sm);
}
.ka_button:hover, .ka_cta__button:hover, .ka_editorial_band__button:hover {
  transform: translateY(-1px);
  box-shadow: var(--ka-shadow-md);
}
.ka_button--secondary, .ka_cta__button--secondary, .ka_editorial_band__button--secondary {
  background: transparent;
  color: var(--ka-color-ink);
  border: 2px solid var(--ka-color-ink);
  box-shadow: none;
}

/* Default section padding for any K&A wrapper that doesn't specify */
[class*="ka_"][class*="_section"] {
  padding: var(--ka-space-section-y) var(--ka-space-section-x);
}

/* Quick Quote modal — bridge plugin emits this in wp_footer */
.wes-quote-modal,
.ka-quick-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 99500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wes-quote-modal.is-open,
.ka-quick-quote-modal.is-open { display: flex; }
.wes-quote-modal__backdrop,
.ka-quick-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: var(--ka-color-overlay-strong);
  backdrop-filter: blur(4px);
}
.wes-quote-modal__panel,
.ka-quick-quote-modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--ka-radius-lg);
  padding: calc(var(--ka-space-unit) * 5);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--ka-shadow-lg);
}
.wes-quote-modal__close,
.ka-quick-quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--ka-color-muted);
  border-radius: var(--ka-radius-sm);
  transition: background .15s ease;
}
.wes-quote-modal__close:hover,
.ka-quick-quote-modal__close:hover { background: rgba(0,0,0,0.06); }

/* ============================================================================
 * ka/editorial-band — WES variants (G-3)
 *
 * Adds two first-class variants the VB exposes via the "Band Variant" content
 * field (slug -> ka_editorial_band--<slug> class):
 *   - wes-intro : white-background editorial band (intro/origin/story).
 *   - wes-why   : cream-background editorial band (heritage/why-statement).
 *
 * These rules use 2-class specificity (.ka_editorial_band--<v> .ka_editorial_band__<x>)
 * so the variant beats single-class skin rules at equal specificity. They mirror
 * the legacy .wes-intro-editorial / .wes-why-editorial look (and the existing skin
 * --theme-wes-intro / --theme-wes-why values in toolkit/ka_skins.py). Variant CSS
 * intentionally lives INSIDE the module so the bandVariant field is EFFECTIVE
 * (Module-Completeness Standard §5.3). The old --theme-wes-* classes still work
 * for legacy content but ship from the skin file; new content should use bandVariant.
 * ============================================================================ */
.ka_editorial_band--wes-intro,
.ka_editorial_band--wes-why {
  padding: clamp(64px, 8vw, 112px) 0;
  overflow: hidden;
  /* match OLD .wes-intro-editorial inherited body font + color exactly */
  font-family: 'AR One Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1c1c1e;
}
.ka_editorial_band--wes-intro { background: #fff; }
.ka_editorial_band--wes-why   { background: #fbf6ec; }

/* Body column: BLOCK display matches OLD .wes-intro-editorial-copy (the base bundle
 * makes .ka_editorial_band__body a flex column, which messes with widths inside the variant). */
.ka_editorial_band--wes-intro .ka_editorial_band__body,
.ka_editorial_band--wes-why .ka_editorial_band__body {
  display: block;
}

.ka_editorial_band--wes-intro .ka_editorial_band__inner,
.ka_editorial_band--wes-why .ka_editorial_band__inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  box-sizing: border-box;
  /* CRITICAL: the base bundle applies direction:rtl on .ka_editorial_band--image-right
   * to flip the visual order while keeping DOM order image-first. The variant render
   * already emits DOM body-first when imageSide=right (so visual = body|image without
   * rtl trick), so we MUST cancel the rtl here or the layout flips wrong (image ends
   * up on the LEFT instead of RIGHT). User caught this 2026-06-01 -- the broken page
   * was the rtl + DOM-reorder colliding. */
  direction: ltr !important;
}
.ka_editorial_band--wes-intro .ka_editorial_band__inner > *,
.ka_editorial_band--wes-why .ka_editorial_band__inner > * {
  direction: ltr;
}

/* Image column matches OLD .wes-intro-editorial-image: capped width, right-edge
 * justified when image is on the right (the default). The justify-self pair
 * matches the OLD's "image hugs the outer edge of the band" composition. */
.ka_editorial_band--wes-intro .ka_editorial_band__image,
.ka_editorial_band--wes-why .ka_editorial_band__image {
  min-width: 0;
  max-width: 520px;
  width: 100%;
  justify-self: end;
  position: relative;
}
/* OLD .wes-intro-editorial-image::before -- decorative gold-border square, bottom-left, behind the photo. */
.ka_editorial_band--wes-intro .ka_editorial_band__image::before {
  content: ''; position: absolute; left: -24px; bottom: -24px; width: 120px; height: 120px;
  border: 2px solid #D4A24E; opacity: .4; z-index: -1; border-radius: 8px;
}
.ka_editorial_band--wes-intro.ka_editorial_band--image-right .ka_editorial_band__image,
.ka_editorial_band--wes-why.ka_editorial_band--image-right .ka_editorial_band__image {
  justify-self: end;
}
.ka_editorial_band--wes-intro:not(.ka_editorial_band--image-right) .ka_editorial_band__image,
.ka_editorial_band--wes-why:not(.ka_editorial_band--image-right) .ka_editorial_band__image {
  justify-self: start;
}
.ka_editorial_band--wes-intro .ka_editorial_band__image img,
.ka_editorial_band--wes-why .ka_editorial_band__image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 64px; /* OLD .wes-intro-editorial-image > img -- creates the "rounded
                          top/bottom, straight sides" capsule shape the user noticed.
                          The base ka_editorial_band img has border-radius 4px; the
                          variant overrides to match the legacy WES editorial-band. */
  aspect-ratio: 4 / 5;  /* OLD renders 512x640; the natural webp is 1536x1536 but
                          OLD's CSS implies a 4:5 portrait crop via the layout grid.
                          Forcing this here so the variant matches OLD pixel for pixel. */
  object-fit: cover;
  width: 100%;
  /* OLD two-layer drop-shadow for visible elevation (shadow_audit min visibility). */
  filter: drop-shadow(0 6px 12px rgba(28,26,31,0.18)) drop-shadow(0 22px 44px rgba(28,26,31,0.28));
}

.ka_editorial_band--wes-intro .ka_editorial_band__body,
.ka_editorial_band--wes-why .ka_editorial_band__body {
  min-width: 0;
  position: relative;
}

.ka_editorial_band--wes-intro .ka_editorial_band__section-mark,
.ka_editorial_band--wes-why .ka_editorial_band__section-mark {
  display: flex;            /* OLD .wes-section-mark uses flex; restoring for parity */
  align-items: center;
  gap: 12px;
  font-family: 'AR One Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B58A3D;
  margin: 0 0 24px;
  padding: 0;
  line-height: 1.7;
  width: auto;              /* let flex determine intrinsic width */
  align-self: flex-start;   /* in the flex-column body, don't stretch to full width */
}
.ka_editorial_band--wes-intro .ka_editorial_band__section-mark__num,
.ka_editorial_band--wes-why .ka_editorial_band__section-mark__num {
  display: inline-block;    /* OLD .wes-section-num is implicit inline-block via flex item */
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;          /* mirror OLD .wes-section-num 13px exactly */
  color: #B58A3D;
  opacity: 0.85;
  /* DO NOT reset letter-spacing here -- OLD .wes-section-num INHERITS the parent
   * .wes-section-mark letter-spacing (0.18em x 12px = 2.16px). The structural
   * verifier caught my earlier 'letter-spacing: 0' as a mismatch (2.16px vs normal). */
  margin: 0;
  padding: 0;
  position: static;
  top: auto;
  /* line-height: inherit so the numeral takes its parent's 1.7 line-height,
   * giving it the same rect.h as the section-mark row. Without this, the
   * numeral's bounding rect collapses to 13px and the verifier flags the diff. */
  line-height: inherit;
}
.ka_editorial_band--wes-intro .ka_editorial_band__eyebrow,
.ka_editorial_band--wes-why .ka_editorial_band__eyebrow {
  display: block;
  font-family: 'AR One Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B58A3D;
  margin-bottom: 16px;
}
.ka_editorial_band--wes-intro .ka_editorial_band__title,
.ka_editorial_band--wes-why .ka_editorial_band__title {
  font-family: 'Spectral', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1c1c1e;
  margin: 0 0 24px;
}
.ka_editorial_band--wes-intro .ka_editorial_band__title em,
.ka_editorial_band--wes-why .ka_editorial_band__title em,
.ka_editorial_band--wes-intro .ka_editorial_band__title-em,
.ka_editorial_band--wes-why .ka_editorial_band__title-em {
  font-style: italic;
  color: #B58A3D;
}
/* Gap 14l fix: with inlineEditor:richText on the title, the user can apply
 * italic via the VB toolbar (Ctrl+I) and the editor inserts a plain <em>
 * with no inline styles. This rule paints those <em>s italic-gold for the
 * wes-intro and wes-why variants -- so the user no longer needs to type
 * <em style="..."> inline. The legacy inline-style approach still works for
 * backward compatibility (CSS color is inherited from the inline style if
 * present). The base ka_editorial_band__title em (non-variant) keeps the
 * Divi default styling. */
.ka_editorial_band--wes-intro .ka_editorial_band__content,
.ka_editorial_band--wes-why .ka_editorial_band__content {
  font-family: 'AR One Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4a4540;
  /* OLD .wes-dropcap fills the full copy column (616px); only the <p>s cap at 55ch.
     The base bundle shrinks __content (max-width 56ch + flex align-start) → text wrapped
     wrong. Stretch it full-width and drop the container cap so wrap matches OLD. */
  max-width: none;
  align-self: stretch;
  width: 100%;
  margin-bottom: 0;
}
.ka_editorial_band--wes-intro .ka_editorial_band__content p,
.ka_editorial_band--wes-why .ka_editorial_band__content p {
  margin: 0 0 20px;
  max-width: 55ch;
}
.ka_editorial_band--wes-intro .ka_editorial_band__content em,
.ka_editorial_band--wes-why .ka_editorial_band__content em {
  font-style: italic;
  color: #1c1c1e;
  font-weight: 500;
}

.ka_editorial_band--wes-intro .ka_editorial_band__buttons,
.ka_editorial_band--wes-why .ka_editorial_band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* OLD .wes-hero-cta pattern -- gold fill + uppercase tracking + dark text.
 * Mirrors toolkit/ka_skins.py:480-498 verbatim so the variant button visually
 * matches the legacy CTA. */
.ka_editorial_band--wes-intro .ka_editorial_band__button,
.ka_editorial_band--wes-why .ka_editorial_band__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4A24E;
  color: #1a1d21;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: 'AR One Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 48px;
  border: 0; /* override the base .ka_editorial_band__button 2px border (OLD .wes-hero-cta has none) */
  box-shadow: 0 1px 2px rgba(28,26,31,.1), 0 2px 6px rgba(28,26,31,.08);
  transition: all .2s ease;
}
/* OLD .wes-hero-cta arrow span — primary only (the ghost has no arrow). */
.ka_editorial_band--wes-intro .ka_editorial_band__button:not(.ka_editorial_band__button--secondary)::after,
.ka_editorial_band--wes-why .ka_editorial_band__button:not(.ka_editorial_band__button--secondary)::after {
  content: "\2192"; display: inline-block; transition: transform .2s ease;
}
.ka_editorial_band--wes-intro .ka_editorial_band__button:not(.ka_editorial_band__button--secondary):hover::after,
.ka_editorial_band--wes-why .ka_editorial_band__button:not(.ka_editorial_band__button--secondary):hover::after {
  transform: translateX(4px);
}
.ka_editorial_band--wes-intro .ka_editorial_band__section-mark__num,
.ka_editorial_band--wes-why .ka_editorial_band__section-mark__num { margin-right: 12px; }
.ka_editorial_band--wes-intro .ka_editorial_band__button:hover,
.ka_editorial_band--wes-why .ka_editorial_band__button:hover {
  background: #E6BE6E;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(184, 134, 50, 0.40);
}
.ka_editorial_band--wes-intro .ka_editorial_band__button--secondary,
.ka_editorial_band--wes-why .ka_editorial_band__button--secondary {
  background: transparent;
  color: #1c1c1e;
  border: 1px solid #1c1c1e;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.ka_editorial_band--wes-intro .ka_editorial_band__button--secondary:hover,
.ka_editorial_band--wes-why .ka_editorial_band__button--secondary:hover {
  background: #1c1c1e;
  color: #fff;
  border-color: #1c1c1e;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  transform: translateY(-2px);
}

/* Drop-cap modifier on the first paragraph of .ka_editorial_band__content--dropcap.
 * Mirrors toolkit/ka_skins.py:459-468 so the dropcap looks identical to OLD. */
.ka_editorial_band__content--dropcap > p:first-of-type::first-letter {
  font-family: 'Spectral', serif;
  font-size: 5.4em;
  font-weight: 700;
  line-height: 1;
  float: left;
  margin: 0.04em 0.12em 0 -0.04em;
  color: #B58A3D;
  text-shadow: 0 2px 0 rgba(212, 162, 78, 0.12);
}

/* ----------------------------------------------------------------------------
 * G-17: italic-serif numeral inside the section-mark.
 * Renders alongside the regular section-mark text in a single .__section-mark
 * row. The numeral inherits the gold tracking from the row but adds the legacy
 * italic-serif treatment that distinguishes the number from the prose label.
 * -------------------------------------------------------------------------- */
.ka_editorial_band__section-mark__num {
  display: inline-block;
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.45em;
  letter-spacing: 0;
  color: #B58A3D;
  line-height: 1;
  margin-right: 2px;
}
/* Older variant-scoped rule kept for the OUTSIDE-variant case (e.g. modules using
 * the default theme without wes-intro/wes-why); the wes-intro/wes-why specific
 * rules above already override to match OLD .wes-section-num exactly. */

/* ============================================================================
 * G-2: arched SVG textPath seal ("EST. 1962" wax-stamp / brand seal).
 * Activated when Enable Seal = on AND Seal Type = "arched".
 * Mirrors the legacy .wes-seal CSS in toolkit/wes_pages.py so the same
 * geometry, gold tracking, and italic-serif year render INSIDE the module.
 * The seal block sits absolutely inside .ka_editorial_band__body (set above
 * to position:relative for the WES variants); on the default theme its
 * position is static, so the page author can move it via Design > Position.
 * ============================================================================ */
/* The arched seal lives inside the image column, anchored to the image's
 * bottom-left corner with a -20px offset on both axes (matches the legacy
 * .wes-intro-editorial-image > [position:absolute;bottom:-20px;left:-20px] mount).
 * The mount carries the white circular pad + shadow; the seal itself stays
 * a clean 130x130 circle inside. */
.ka_editorial_band__image { position: relative; }
.ka_editorial_band__seal-mount {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 14px;
  border-radius: 50%;
  /* Two-layer shadow matches OLD .wes-shadow-2xl exactly (structural_parity diff 6). */
  box-shadow: 0 12px 24px rgba(28, 26, 31, 0.16), 0 36px 72px rgba(28, 26, 31, 0.26);
  z-index: 3;
}
.ka_editorial_band__seal--arched {
  position: relative;
  width: 130px;
  height: 130px;
  pointer-events: none;
  /* OLD .wes-seal has line-height 27.2px inherited from body context.
   * The structural verifier was reporting line-height 0px because the
   * et_pb_module wrapper resets it. Restore the OLD value here. */
  line-height: 1.7;
  font-family: 'AR One Sans', system-ui, sans-serif;
  font-size: 16px;
}
.ka_editorial_band__seal--arched .ka_editorial_band__seal-circle {
  line-height: 1.7;
}
.ka_editorial_band__seal-circle {
  position: absolute;
  inset: 0;
  border: 1.5px solid #D4A24E; /* lighter gold, matches OLD .wes-seal-circle exactly (structural_parity diff 8) */
  border-radius: 50%;
}
.ka_editorial_band__seal-circle--inner {
  inset: 7px;
  border: 1px solid #D4A24E;
  opacity: 0.4;
}
.ka_editorial_band__seal-text {
  position: absolute;
  inset: 0;
}
.ka_editorial_band__seal-text svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ka_editorial_band__seal-text text {
  fill: #B58A3D;
  font-family: 'Spectral', serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ka_editorial_band__seal-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 22px;
}
.ka_editorial_band__seal-est {
  font-family: 'AR One Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #B58A3D;
  text-transform: uppercase;
}
.ka_editorial_band__seal-year {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1;
  margin: 1px 0;
}
.ka_editorial_band__seal-bar {
  width: 20px;
  height: 1px;
  background: #B58A3D;
}
/* Mobile: shrink the arched seal so it doesn't crowd the column. */
@media (max-width: 768px) {
  .ka_editorial_band__seal--arched {
    width: 108px;
    height: 108px;
    bottom: 8px;
    right: 8px;
  }
  .ka_editorial_band__seal-year { font-size: 20px; }
  .ka_editorial_band__seal-text text { font-size: 9px; letter-spacing: 0.10em; }
  .ka_editorial_band__seal-est { font-size: 7px; }
  .ka_editorial_band__seal-bar { width: 16px; }
}

/* =================================================== Contact page (M2/WES-4) ====
   Native-rebuild skin variants for the Contact page sections. Documented ≤5%
   residual skin (per the Module-Completeness Standard); the modules themselves
   stay VB-editable. Brand fonts hard-named to pixel-match the legacy classic-Divi
   render (Spectral heading / AR One Sans body). */

/* §1 Hero "Get in touch." — banner-hero with no image as a solid dark band, centered. */
.ka_banner_hero--theme-wes-contact-hero { background: #23222a; }
.ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__inner { min-height: 380px; }
.ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__inner::before { display: none; }
.ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__overlay {
  max-width: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 380px;
  padding: 80px 32px;
}
.ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__title {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 16px;
}
.ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__subtitle {
  font-family: "AR One Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #f5f1ea;
  max-width: 780px;
  margin: 0 auto;
  opacity: 1;
}

/* §2 Live counter status — section header + 4 photo-header status cards. */
.ka_location_grid--wes-contact-status { background: #ffffff; padding: 128px var(--ka-space-section-x); }
.ka_location_grid--wes-contact-status .ka_location_grid__inner { max-width: 1200px; }
.ka_location_grid--wes-contact-status .ka_location_grid__title {
  font-family: "Spectral", Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #1c1c1e;
  text-align: center;
  margin: 6px 0 0;
}
.ka_location_grid--wes-contact-status .ka_location_grid__title em { color: #B58A3D; font-style: italic; }
.ka_location_grid--wes-contact-status .ka_location_grid__subtitle {
  font-family: "AR One Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #4a4540;
  text-align: center;
  max-width: 720px;
  margin: 12px auto 0;
}
.ka_location_grid--wes-contact-status .ka_location_grid__grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}
.ka_location_grid--wes-contact-status .ka_location_card {
  position: relative;
  box-shadow: var(--ka-shadow-md);
}
.ka_location_grid--wes-contact-status .ka_location_card__image { height: 248px; }
.ka_location_grid--wes-contact-status .ka_location_card__status {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  z-index: 2;
  background: rgba(20, 20, 22, 0.72);
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.ka_location_grid--wes-contact-status .ka_location_card__status.is-open {
  background: #dcf2e3;
  color: #1a6a32;
}
.ka_location_grid--wes-contact-status .ka_location_card__status.is-closed {
  background: rgba(20, 20, 22, 0.72);
  color: #ffffff;
}
.ka_location_grid--wes-contact-status .ka_location_card__status-next {
  font-family: "AR One Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #B58A3D;
  margin: 0 0 6px;
}
.ka_location_grid--wes-contact-status .ka_location_card__name { font-family: "Spectral", Georgia, serif; }
.ka_location_grid--wes-contact-status .ka_location_card__phone a { color: #B58A3D; font-weight: 700; }

/* §3 Contact info grid — 2x2 plain info cards (no photo, no pill). */
.ka_location_grid--wes-contact-info { background: #ffffff; padding: 92px var(--ka-space-section-x); }
.ka_location_grid--wes-contact-info .ka_location_grid__grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.ka_location_grid--wes-contact-info .ka_location_card { box-shadow: var(--ka-shadow-md); }
.ka_location_grid--wes-contact-info .ka_location_card__status { display: none; }
.ka_location_grid--wes-contact-info .ka_location_card__body { padding: 32px; }
.ka_location_grid--wes-contact-info .ka_location_card__name {
  font-family: "Spectral", Georgia, serif;
  font-size: 28px;
}
.ka_location_grid--wes-contact-info .ka_location_card__phone a { color: #B58A3D; font-weight: 700; }

/* Contact §2 eyebrow (divi/text) — "01 Live counter status". */
.kcs-mark {
  font-family: "AR One Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: #B58A3D;
  margin: 0;
}
.kcs-mark .kcs-num { color: #D4A24E; margin-right: 8px; }

/* §4 CTA — match legacy .wes-cta-band vertical rhythm (72px top/bottom). */
.ka_cta--theme-wes { padding: 72px 32px; }

@media (max-width: 1024px) {
  .ka_location_grid--wes-contact-status .ka_location_grid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ka_location_grid--wes-contact-status .ka_location_grid__grid,
  .ka_location_grid--wes-contact-info .ka_location_grid__grid { grid-template-columns: 1fr; }
  .ka_banner_hero--theme-wes-contact-hero .ka_banner_hero__title { font-size: 36px; }
}
/* ============ §2 Stats band — ka/stat-counters == legacy .wes-stats-band ============ */
.ka_stat_counters {
  background: #1c1a1f; color: #fff;
  padding: clamp(72px,9vw,104px) 24px; border-bottom: 3px solid #D4A24E;
}
.ka_stat_counters .ka_stat_counters__inner {
  max-width: 1300px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center;
}
.ka_stat_counters .ka_stat_counters__inner > .ka_stat_counter {
  position: relative; padding: 0 16px; flex: initial; text-align: center;
}
.ka_stat_counters .ka_stat_counter:not(:last-child)::after {
  content: ''; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 60px; background: rgba(255,255,255,.12);
}
.ka_stat_counters .ka_stat_counter .ka_stat_counter__value {
  display: block; font-family: 'Spectral', serif; font-size: clamp(40px,4.5vw,56px);
  font-weight: 800; line-height: 1; color: #D4A24E; margin-bottom: 8px;
}
.ka_stat_counters .ka_stat_counter__value::after {
  content: ''; display: block; width: 32px; height: 2px; background: rgba(212,162,78,.5); margin: 12px auto 0;
}
.ka_stat_counters .ka_stat_counter__number { font-variant-numeric: tabular-nums; }
.ka_stat_counters .ka_stat_counter .ka_stat_counter__label {
  margin-top: 0; font-family: 'AR One Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.ka_stat_counters .ka_stat_counter__sub {
  font-family: 'AR One Sans', sans-serif; font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px;
}
@media (max-width: 980px) {
  .ka_stat_counters .ka_stat_counters__inner { grid-template-columns: repeat(2,1fr); gap: 32px 24px; }
  .ka_stat_counters .ka_stat_counter:nth-child(2)::after { display: none; }
}
@media (max-width: 600px) {
  .ka_stat_counters { padding: 32px 16px; }
  .ka_stat_counters .ka_stat_counters__inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}
/* §2 stats: K suffix on the same line, full-size. The count-up JS strips
   trailing non-numerics from __number, so "10K" is split into number "10" +
   suffix "K". __value stays block so the underline ::after stacks below;
   number + suffix render inline so the K sits beside the digits (not wrapped). */
.ka_stat_counters .ka_stat_counter__number { display: inline; }
.ka_stat_counters .ka_stat_counter__suffix {
  display: inline; font-size: 1em; font-weight: 800; opacity: 1; color: #D4A24E; font-family: 'Spectral', serif;
}

/* ============ §4 Services strip — ka/services-strip == legacy .wes-services-strip ============ */
.ka_services_strip {
  padding: clamp(72px,9vw,104px) 24px; background: #1c1a1f;
  border-bottom: 1px solid rgba(255,255,255,.06); color: #fff;
}
.ka_services_strip .ka_services_strip__inner { max-width: 1500px; margin: 0 auto; }
.ka_services_strip .ka_services_strip__grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
}
.ka_services_strip .ka_services_strip__grid > .ka_services_item {
  position: relative; text-align: center; padding: 8px 24px; color: #fff;
}
.ka_services_strip .ka_services_strip__grid > .ka_services_item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.08);
}
.ka_services_strip .ka_services_item__inner { gap: 0; }
.ka_services_strip .ka_services_item__icon {
  color: #D4A24E; margin-bottom: 12px; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
}
.ka_services_strip .ka_services_item__title {
  font-family: 'AR One Sans', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 6px;
}
.ka_services_strip .ka_services_item__description {
  font-family: 'AR One Sans', sans-serif; font-size: 12px; line-height: 1.5;
  color: rgba(255,255,255,.6); margin: 0;
}
@media (max-width: 980px) {
  .ka_services_strip .ka_services_strip__grid { grid-template-columns: repeat(2,1fr); gap: 24px 8px; }
  .ka_services_strip .ka_services_strip__grid > .ka_services_item:nth-child(even)::after { display: none; }
  .ka_services_strip .ka_services_strip__grid > .ka_services_item:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .ka_services_strip { padding: 32px 16px; }
  .ka_services_strip .ka_services_strip__grid { grid-template-columns: 1fr; gap: 24px; }
  .ka_services_strip .ka_services_strip__grid > .ka_services_item::after { display: none !important; }
}

/* ============ §6 Brand marquee — ka/marquee == legacy .wes-brand-marquee ============ */
.ka_marquee {
  overflow: hidden; padding: 48px 0; background: #fff;
  border-top: 1px solid #e0d7c5; border-bottom: 1px solid #e0d7c5; position: relative;
}
.ka_marquee::before, .ka_marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ka_marquee::before { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.ka_marquee::after  { right: 0; background: linear-gradient(to left, #fff, rgba(255,255,255,0)); }
.ka_marquee .ka_marquee__track { display: flex; gap: 80px; align-items: center; width: max-content; }
.ka_marquee .ka_marquee__item img, .ka_marquee .ka_marquee__track img {
  height: 80px; width: auto; object-fit: contain; opacity: .75; flex-shrink: 0;
  transition: opacity .25s ease;
}
.ka_marquee .ka_marquee__item img:hover { opacity: 1; }
.ka_marquee .ka_marquee__title {
  font-family: 'Spectral', serif; font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: #4a4540; text-align: center; margin: 0 0 32px;
}

/* ============ §5 Category tiles — ka/category-tiles == legacy .wes-cat-hero ============ */
.ka_category_tiles *, .ka_category_tile * { box-sizing: border-box; }
.ka_category_tiles { padding: clamp(64px,8vw,96px) 24px; background: #fbf6ec; }
.ka_category_tiles .ka_category_tiles__inner { max-width: 1500px; margin: 0 auto; }
.ka_category_tiles .ka_category_tiles__head { text-align: center; margin-bottom: 56px; }
.ka_category_tiles .ka_category_tiles__section-mark {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin-bottom: 24px;
}
.ka_category_tiles .ka_category_tiles__section-mark__num { font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_category_tiles .ka_category_tiles__title {
  font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700;
  line-height: 1.1; color: #1c1c1e; margin: 0 0 12px;
}
.ka_category_tiles .ka_category_tiles__title-em { font-style: italic; color: #B58A3D; }
.ka_category_tiles .ka_category_tiles__lede {
  font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540;
  max-width: 65ch; margin: 0 auto;
}
.ka_category_tiles .ka_category_tiles__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ka_category_tiles .ka_category_tiles__grid > .ka_category_tile { min-width: 0; margin: 0; }
/* tiles */
.ka_category_tile .ka_category_tile__link {
  position: relative; display: block; aspect-ratio: 3/4; background: #222 center/cover no-repeat;
  text-decoration: none; color: #fff; overflow: hidden; border-radius: 2px; transition: transform .3s ease;
}
.ka_category_tile .ka_category_tile__link::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 45%, rgba(0,0,0,.15) 100%);
}
.ka_category_tile .ka_category_tile__link:hover { transform: translateY(-6px); }
.ka_category_tile .ka_category_tile__link:hover::before {
  background: linear-gradient(to top, rgba(20,18,22,.95) 0%, rgba(20,18,22,.7) 45%, rgba(212,162,78,.25) 100%);
}
.ka_category_tile .ka_category_tile__num {
  position: absolute; top: 24px; right: 32px; font-family: 'Spectral', serif; font-style: italic;
  font-size: 14px; font-weight: 600; color: #D4A24E; letter-spacing: .04em; z-index: 2; opacity: .85;
}
.ka_category_tile .ka_category_tile__num::before {
  content: ''; display: block; width: 24px; height: 1px; background: #D4A24E; margin-bottom: 6px; margin-left: auto; opacity: .6;
}
.ka_category_tile .ka_category_tile__inner {
  position: relative; height: 100%; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 1;
}
.ka_category_tile .ka_category_tile__eyebrow {
  font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #D4A24E; margin-bottom: 8px;
}
.ka_category_tile .ka_category_tile__title {
  font-family: 'Spectral', serif; font-size: clamp(28px,3vw,36px); font-weight: 700; line-height: 1.1; color: #fff; margin: 0 0 12px;
}
.ka_category_tile .ka_category_tile__text {
  font-family: 'AR One Sans', sans-serif; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.88); margin: 0 0 20px;
}
.ka_category_tile .ka_category_tile__sublist {
  display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 0 0 24px; padding: 0; list-style: none;
  font-family: 'AR One Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.7);
}
.ka_category_tile .ka_category_tile__sublist li { padding-right: 12px; border-right: 1px solid rgba(255,255,255,.18); }
.ka_category_tile .ka_category_tile__sublist li:last-child { border-right: 0; }
.ka_category_tile .ka_category_tile__cta {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'AR One Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #D4A24E;
}
.ka_category_tile .ka_category_tile__cta::after { content: '\2192'; transition: transform .2s ease; }
.ka_category_tile .ka_category_tile__link:hover .ka_category_tile__cta::after { transform: translateX(6px); }
@media (max-width: 980px) {
  .ka_category_tiles .ka_category_tiles__grid { grid-template-columns: 1fr; gap: 20px; }
  .ka_category_tile .ka_category_tile__link { aspect-ratio: 16/10; }
}
/* §5 G1 fix: kill Divi's auto-injected decoration spacing on the header elements. */
.ka_category_tiles .ka_category_tiles__head,
.ka_category_tiles .ka_category_tiles__section-mark,
.ka_category_tiles .ka_category_tiles__title,
.ka_category_tiles .ka_category_tiles__lede { padding: 0 !important; min-height: 0 !important; }
.ka_category_tiles .ka_category_tiles__section-mark { margin: 0 0 24px !important; }
/* §5 G1 fix (cont.): the section-mark numeral span gets Divi's auto 96px padding + block display. */
.ka_category_tiles .ka_category_tiles__section-mark__num {
  padding: 0 !important; display: inline !important; min-height: 0 !important;
}

/* ============ §7 Showroom poster — ka/poster--wes == legacy .wes-poster ============ */
.ka_poster.ka_poster--wes { position: relative; min-height: 560px; background: #222; overflow: hidden; display: flex; align-items: center; }
.ka_poster--wes .ka_poster__inner { position: static; width: 100%; }
.ka_poster--wes .ka_poster__image { position: absolute; inset: 0; z-index: 0; margin: 0; background: #222 center/cover no-repeat; }
.ka_poster--wes .ka_poster__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ka_poster--wes .ka_poster__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(20,18,22,.85) 0%, rgba(20,18,22,.4) 60%, rgba(20,18,22,.15) 100%);
}
.ka_poster--wes .ka_poster__overlay {
  position: relative; z-index: 1; max-width: 640px; margin-left: clamp(24px,8vw,120px);
  padding: 80px 24px; color: #fff; display: block;
}
.ka_poster--wes .ka_poster__section-mark {
  display: flex; align-items: center; gap: 12px; font-family: 'AR One Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E;
  margin: 0 0 24px; padding: 0 !important; min-height: 0 !important;
}
.ka_poster--wes .ka_poster__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_poster--wes .ka_poster__title {
  font-family: 'Spectral', serif; font-size: clamp(36px,4.5vw,64px); font-weight: 700; line-height: 1.05;
  letter-spacing: -.02em; color: #fff; margin: 0 0 24px;
}
.ka_poster--wes .ka_poster__title-em { font-style: italic; color: #D4A24E; }
.ka_poster--wes .ka_poster__overlay > p, .ka_poster--wes .ka_poster__overlay .ka_poster__content {
  font-family: 'AR One Sans', sans-serif; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.85); margin: 0 0 32px;
}
.ka_poster--wes .ka_poster__content p { font-size: 16px; line-height: 1.6; margin: 0; }
.ka_poster--wes .ka_poster__buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ka_poster--wes .ka_poster__button {
  display: inline-flex; align-items: center; border: 0; background: #D4A24E; color: #1a1d21;
  padding: 16px 32px; font-family: 'AR One Sans', sans-serif; font-weight: 700; text-decoration: none;
  letter-spacing: .06em; font-size: 14px; text-transform: uppercase; border-radius: 2px; min-height: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 1px 3px rgba(0,0,0,.18); transition: all .2s ease;
}
.ka_poster--wes .ka_poster__button:not(.ka_poster__button--secondary)::after { content: '\2192'; display: inline-block; margin-left: 10px; transition: transform .2s ease; }
.ka_poster--wes .ka_poster__button:not(.ka_poster__button--secondary):hover::after { transform: translateX(4px); }
.ka_poster--wes .ka_poster__button:hover { background: #E6BE6E; transform: translateY(-2px); }
.ka_poster--wes .ka_poster__button--secondary {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4);
}
.ka_poster--wes .ka_poster__button--secondary:hover { background: rgba(255,255,255,.08); border-color: #fff; }
@media (max-width: 600px) {
  .ka_poster.ka_poster--wes { min-height: 460px; }
  .ka_poster--wes .ka_poster__overlay { margin-left: 24px; margin-right: 24px; padding: 56px 0; }
}
/* §7 poster: let the body fill the overlay (base bundle caps __content width -> wrong wrap/height). */
.ka_poster--wes .ka_poster__content, .ka_poster--wes .ka_poster__overlay > p {
  max-width: none !important; width: auto !important; padding: 0 !important; min-height: 0 !important;
}

/* ============ §8 Manifesto — ka/manifesto == legacy .wes-manifesto (NM-14) ============ */
.ka_manifesto { background: #23222a; color: #fff; padding: clamp(80px,10vw,128px) 24px; position: relative; overflow: hidden; }
.ka_manifesto .ka_manifesto__inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.ka_manifesto .ka_manifesto__eyebrow {
  display: inline-flex; align-items: center; gap: 16px; font-family: 'AR One Sans', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E;
  margin: 0 0 32px; padding: 0 !important; min-height: 0 !important;
}
.ka_manifesto .ka_manifesto__eyebrow::before, .ka_manifesto .ka_manifesto__eyebrow::after { content: ''; width: 40px; height: 1px; background: #D4A24E; }
.ka_manifesto .ka_manifesto__text {
  /* NOTE: the frozen :8120 baseline renders this <p> at 16px — its
     clamp(28px,3.5vw,46px) is ignored because the baseline has a higher-specificity
     rule on <p> elements (same quirk the §7 poster body hit). Matched to 16px for
     pixel parity. NEEDS HUMAN CONFIRM: the intended size is likely the larger clamp;
     if so, re-baseline and restore the clamp here. */
  font-family: 'Spectral', serif; font-size: 16px; font-weight: 500; line-height: 1.35;
  color: #fff; margin: 0; letter-spacing: -.01em; padding: 0 !important;
}
.ka_manifesto .ka_manifesto__text em { font-style: italic; color: #D4A24E; }
.ka_manifesto .ka_manifesto__sig { font-family: 'Spectral', serif; font-style: italic; font-size: 18px; color: rgba(255,255,255,.6); margin-top: 40px; padding: 0 !important; }
@media (max-width: 600px) { .ka_manifesto { padding: 64px 20px; } .ka_manifesto .ka_manifesto__text { font-size: 24px; } }

/* ============ §9 Pullquote — ka/pullquote == legacy .wes-pullquote (HG-2) ============ */
.ka_pullquote { padding: clamp(80px,10vw,128px) 24px; background: #fff; position: relative; }
.ka_pullquote::before {
  content: '\201C'; position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Spectral', serif; font-size: 240px; font-weight: 700; color: #D4A24E; opacity: .15; line-height: 1; pointer-events: none;
}
.ka_pullquote .ka_pullquote__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.ka_pullquote .ka_pullquote__stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; color: #D4A24E; }
.ka_pullquote .ka_pullquote__quote {
  font-family: 'Spectral', serif; font-style: italic; font-size: clamp(24px,2.5vw,34px); font-weight: 500;
  line-height: 1.4; color: #1c1c1e; margin: 0 !important; border: 0 !important; padding: 0 !important;
  max-width: none !important; width: 100%;
}
.ka_pullquote .ka_pullquote__rule { width: 60px; height: 2px; background: #D4A24E; margin: 0 auto 24px; }
.ka_pullquote .ka_pullquote__avatar {
  width: 56px; height: 56px; border-radius: 50%; background: #fbf6ec; border: 2px solid #D4A24E; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-family: 'Spectral', serif; font-weight: 700; color: #B58A3D; font-size: 22px;
}
.ka_pullquote .ka_pullquote__attribution {
  display: block; font-family: 'AR One Sans', sans-serif; font-style: normal; font-size: 15px; font-weight: 700; color: #1c1c1e; letter-spacing: .02em;
}
.ka_pullquote .ka_pullquote__role { font-family: 'AR One Sans', sans-serif; font-size: 14px; color: #4a4540; margin-top: 4px; font-weight: 400; }
@media (max-width: 600px) { .ka_pullquote { padding: 64px 24px; } .ka_pullquote .ka_pullquote__quote { font-size: 22px; } }
/* §9 G1 fix: kill Divi's auto-injected padding on pullquote sub-elements. */
.ka_pullquote .ka_pullquote__stars,
.ka_pullquote .ka_pullquote__rule,
.ka_pullquote .ka_pullquote__avatar,
.ka_pullquote .ka_pullquote__attribution,
.ka_pullquote .ka_pullquote__role { padding: 0 !important; min-height: 0 !important; }
.ka_pullquote .ka_pullquote__avatar { padding: 0 !important; width: 56px; height: 56px; }

/* ============ §10 Why-us text band — ka/text-columns == legacy .wes-why-editorial (NM-10) ============ */
.ka_text_columns { padding: clamp(96px,11vw,144px) 24px; background: #fbf6ec; }
.ka_text_columns .ka_text_columns__inner { max-width: 1100px; margin: 0 auto; }
.ka_text_columns .ka_text_columns__section-mark {
  display: flex; align-items: center; gap: 12px; font-family: 'AR One Sans', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; min-height: 0 !important;
}
.ka_text_columns .ka_text_columns__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_text_columns .ka_text_columns__title {
  font-family: 'Spectral', serif; font-size: clamp(34px,4.5vw,56px); font-weight: 700; line-height: 1.1;
  letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 48px; max-width: 24ch; padding: 0 !important;
}
.ka_text_columns .ka_text_columns__title-em { font-style: italic; color: #B58A3D; }
.ka_text_columns .ka_text_columns__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.ka_text_columns .ka_text_columns__col p { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.7; color: #4a4540; margin: 0 0 16px; max-width: 55ch; }
.ka_text_columns .ka_text_columns__col p:last-child { margin-bottom: 0; }
.ka_text_columns .ka_text_columns__col em { font-style: italic; color: #1c1c1e; font-weight: 500; }
@media (max-width: 980px) { .ka_text_columns .ka_text_columns__cols { grid-template-columns: 1fr; gap: 0; } .ka_text_columns .ka_text_columns__col p { max-width: none; } }

/* ============ §11 Four Counters — ka/location-grid + card == legacy .wes-counters (HG-3) ============ */
.ka_location_grid { background: #fbf6ec; padding: clamp(80px,9vw,128px) 24px; }
.ka_location_grid .ka_location_grid__inner { max-width: 1400px; margin: 0 auto; }
.ka_location_grid .ka_location_grid__head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.ka_location_grid .ka_location_grid__section-mark {
  display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important;
}
.ka_location_grid .ka_location_grid__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_location_grid .ka_location_grid__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 16px; }
.ka_location_grid .ka_location_grid__headline em { font-style: italic; color: #B58A3D; }
.ka_location_grid .ka_location_grid__subtitle { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; max-width: 60ch; margin: 0 auto; }
.ka_location_grid .ka_location_grid__subtitle p { margin: 0; }
.ka_location_grid .ka_location_grid__status-row { display: flex; justify-content: center; margin-top: 24px; }
.ka_location_grid .ka_location_grid__status {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid rgba(28,26,31,.12);
  color: #1c1c1e; box-shadow: var(--ka-shadow-md); border-radius: 999px; padding: 7px 14px; font-family: 'AR One Sans', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.ka_location_grid .ka_location_grid__status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.25); }
.ka_location_grid .ka_location_grid__stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 1100px; margin: 0 auto 64px; padding: 24px 0;
  border-top: 1px solid rgba(28,26,31,.08); border-bottom: 1px solid rgba(28,26,31,.08);
}
.ka_location_grid .ka_location_grid__stat { text-align: center; padding: 8px 16px; border-right: 1px solid rgba(28,26,31,.06); }
.ka_location_grid .ka_location_grid__stat:last-child { border-right: 0; }
.ka_location_grid .ka_location_grid__stat strong { display: block; font-family: 'Spectral', serif; font-size: clamp(28px,3vw,40px); font-weight: 700; color: #1c1c1e; line-height: 1; margin-bottom: 6px; }
.ka_location_grid .ka_location_grid__stat span { display: block; font-family: 'AR One Sans', sans-serif; font-size: 12px; letter-spacing: .04em; color: #4a4540; text-transform: uppercase; font-weight: 500; }
.ka_location_grid .ka_location_grid__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
/* cards */
.ka_location_grid .ka_location_grid__grid > .ka_location_card { min-width: 0; }
.ka_location_card .ka_location_card__inner { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--ka-shadow-md); transition: box-shadow .25s ease, transform .25s ease; display: flex; flex-direction: column; height: 100%; }
.ka_location_card .ka_location_card__inner:hover { box-shadow: var(--ka-shadow-lg); transform: translateY(-2px); }
.ka_location_card .ka_location_card__image { position: relative; aspect-ratio: 16/9; height: auto !important; min-height: 0 !important; overflow: hidden; background: #f5f1ea; }
.ka_location_card .ka_location_card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ka_location_card .ka_location_card__badge { position: absolute; top: 16px; left: 16px; background: rgba(26,29,33,.85); color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; }
.ka_location_card .ka_location_card__badge--flagship { background: #D4A24E; color: #1a1d21; }
.ka_location_card .ka_location_card__body { padding: 28px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.ka_location_card .ka_location_card__name { font-family: 'Spectral', serif; font-size: 28px; font-weight: 700; color: #1c1c1e; margin: 0 0 4px; letter-spacing: -.01em; }
.ka_location_card .ka_location_card__detail { font-family: 'AR One Sans', sans-serif; font-size: 13px; line-height: 1.5; color: #B58A3D; margin: 0 0 20px; font-weight: 500; letter-spacing: .02em; padding: 0 !important; }
.ka_location_card .ka_location_card__meta { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.ka_location_card .ka_location_card__meta li { display: flex; align-items: flex-start; gap: 10px; font-family: 'AR One Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #1c1c1e; }
.ka_location_card .ka_location_card__icon { flex-shrink: 0; color: #B58A3D; width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; margin-top: 3px; }
.ka_location_card .ka_location_card__buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(28,26,31,.06); }
.ka_location_card .ka_location_card__button { display: inline-flex; align-items: center; gap: 6px; background: #1c1c1e; color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 10px 16px; border-radius: 2px; text-decoration: none; transition: all .2s ease; box-shadow: var(--ka-shadow-md); border: 0; }
.ka_location_card .ka_location_card__button:hover { background: #B58A3D; color: #1a1d21; transform: translateY(-1px); }
.ka_location_card .ka_location_card__button--secondary { background: transparent; color: #1c1c1e; border: 1px solid rgba(28,26,31,.18); box-shadow: none; }
.ka_location_card .ka_location_card__button--secondary:hover { background: #1c1c1e; color: #fff; border-color: #1c1c1e; }
@media (max-width: 980px) {
  .ka_location_grid .ka_location_grid__grid { grid-template-columns: 1fr; gap: 24px; }
  .ka_location_grid .ka_location_grid__stats { grid-template-columns: repeat(2,1fr); gap: 16px 0; padding: 20px 0; }
  .ka_location_grid .ka_location_grid__stat:nth-child(2) { border-right: 0; }
}

/* ============ §12 Featured Brands slider — ka/brand-slider == legacy .wes-brslider (HG-4) ============ */
.ka_brand_slider { background: #fff; padding: clamp(80px,9vw,128px) 24px; }
.ka_brand_slider .ka_brand_slider__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.ka_brand_slider .ka_brand_slider__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; }
.ka_brand_slider .ka_brand_slider__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_brand_slider .ka_brand_slider__title { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 14px; }
.ka_brand_slider .ka_brand_slider__title em { font-style: italic; color: #B58A3D; }
.ka_brand_slider .ka_brand_slider__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; margin: 0; }
.ka_brand_slider .ka_brand_slider__box { position: relative; background: #23222a; border-radius: 16px; overflow: hidden; min-height: 480px; box-shadow: var(--ka-shadow-lg); max-width: 1400px; margin: 0 auto; }
.ka_brand_slider .ka_brand_slider__stage { position: relative; min-height: 480px; }
.ka_brand_slider .ka_brand_slide { display: block !important; position: absolute; inset: 0; opacity: 0; transform: translateX(20px); transition: opacity .55s ease, transform .55s ease; pointer-events: none; }
.ka_brand_slider .ka_brand_slide.is-active, .ka_brand_slider .ka_brand_slide[data-ka-active] { display: block !important; opacity: 1; transform: none; pointer-events: auto; position: relative; }
.ka_brand_slider .ka_brand_slide:first-child:not(.is-active):not([data-ka-active]) { position: relative; opacity: 1; }
.ka_brand_slider .ka_brand_slide__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; min-height: 480px; height: 100%; }
.ka_brand_slide .ka_brand_slide__image { background-size: cover; background-position: center; position: relative; }
.ka_brand_slide .ka_brand_slide__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ka_brand_slide .ka_brand_slide__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,34,42,.30) 0%, rgba(35,34,42,.05) 50%, transparent 100%); }
.ka_brand_slide .ka_brand_slide__featured { position: absolute; bottom: 24px; left: 24px; background: rgba(255,255,255,.96); padding: 14px 18px; border-radius: 8px; box-shadow: var(--ka-shadow-md); z-index: 2; max-width: 280px; }
.ka_brand_slide .ka_brand_slide__featured-label, .ka_brand_slide .ka_brand_slide__featured > :first-child { font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; color: #B58A3D; margin-bottom: 4px; text-transform: uppercase; }
.ka_brand_slide .ka_brand_slide__featured-name { font-family: 'Spectral', serif; font-size: 14px; font-weight: 600; line-height: 1.2; color: #1c1c1e; margin-bottom: 4px; }
.ka_brand_slide .ka_brand_slide__featured-price { font-family: 'AR One Sans', sans-serif; font-size: 14px; font-weight: 700; color: #1c1c1e; }
.ka_brand_slide .ka_brand_slide__body { padding: clamp(40px,5vw,72px); display: flex; flex-direction: column; justify-content: center; color: #fff; gap: 18px; }
.ka_brand_slide .ka_brand_slide__tag { font-family: 'AR One Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; }
.ka_brand_slide .ka_brand_slide__title { font-family: 'Spectral', serif; font-size: clamp(36px,4.5vw,56px); font-weight: 700; line-height: 1; letter-spacing: -.02em; color: #fff; margin: 0; }
.ka_brand_slide .ka_brand_slide__content { font-family: 'AR One Sans', sans-serif; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0; max-width: 48ch; }
.ka_brand_slide .ka_brand_slide__content p { margin: 0; }
.ka_brand_slide .ka_brand_slide__stats { display: flex; gap: 24px; font-family: 'AR One Sans', sans-serif; font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
.ka_brand_slide .ka_brand_slide__stat { display: flex; align-items: baseline; gap: 4px; }
.ka_brand_slide .ka_brand_slide__stat > :first-child { font-family: 'Spectral', serif; font-style: italic; font-size: 20px; font-weight: 700; color: #D4A24E; }
.ka_brand_slide .ka_brand_slide__buttons { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.ka_brand_slide .ka_brand_slide__button { display: inline-flex; align-items: center; gap: 8px; background: #D4A24E; color: #1a1d21; padding: 14px 28px; font-family: 'AR One Sans', sans-serif; font-weight: 700; text-decoration: none; letter-spacing: .06em; font-size: 13px; text-transform: uppercase; border-radius: 2px; border: 0; transition: all .2s ease; }
.ka_brand_slide .ka_brand_slide__button:hover { background: #E6BE6E; transform: translateY(-2px); }
.ka_brand_slider .ka_brand_slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.95); color: #1c1c1e; border: 0; cursor: pointer; font-size: 28px; line-height: 1; box-shadow: var(--ka-shadow-md); z-index: 3; }
.ka_brand_slider .ka_brand_slider__arrow:hover { background: #D4A24E; color: #1a1d21; }
.ka_brand_slider .ka_brand_slider__arrow--prev { left: 16px; }
.ka_brand_slider .ka_brand_slider__arrow--next { right: 16px; }
.ka_brand_slider .ka_brand_slider__dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; z-index: 3; }
.ka_brand_slider .ka_brand_slider__dot { width: auto; min-height: 24px; min-width: 24px; background: transparent; border: 0; padding: 10px 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ka_brand_slider .ka_brand_slider__dot::after { content: ''; display: block; width: 36px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.30); transition: background .2s ease; }
.ka_brand_slider .ka_brand_slider__dot[aria-selected="true"]::after, .ka_brand_slider .ka_brand_slider__dot.is-active::after { background: #D4A24E; }
@media (max-width: 980px) {
  .ka_brand_slider .ka_brand_slide__inner { grid-template-columns: 1fr; grid-template-rows: 240px 1fr; }
  .ka_brand_slide .ka_brand_slide__body { padding: 32px 28px 80px; }
}

/* ============ §13-17/§21 Product sliders/cards — ka/product-slider + card (G-12) ============ */
.ka_product_slider { background: #fbf6ec; padding: clamp(80px,9vw,128px) 24px; }
.ka_product_slider .ka_product_slider__title { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 auto 40px; text-align: center; max-width: 680px; }
.ka_product_slider .ka_product_grid, .ka_product_slider .ka_product_slider__grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.ka_product_slider .ka_product_slider__slider { max-width: 1400px; margin: 0 auto; overflow: hidden; position: relative; }
.ka_product_slider .ka_product_slider__slider .ka_slider__inner { display: flex !important; gap: 20px !important; overflow-x: auto !important; transform: none !important; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.ka_product_slider .ka_product_slider__slider .ka_slide { flex: 0 0 clamp(240px, 23vw, 300px) !important; width: clamp(240px,23vw,300px) !important; scroll-snap-align: start; opacity: 1 !important; } 
.ka_product_slider .ka_product_slider__slider .ka_slide { position: static !important; transform: none !important; inset: auto !important; }
.ka_product_slider .ka_product_slider__empty { max-width: 1400px; margin: 0 auto; text-align: center; color: #4a4540; font-family: 'AR One Sans', sans-serif; }
/* card */
.ka_product_card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--ka-shadow-md); transition: box-shadow .25s ease, transform .25s ease; display: flex; flex-direction: column; position: relative; text-decoration: none; color: inherit; }
.ka_product_card:hover { box-shadow: var(--ka-shadow-lg); transform: translateY(-3px); }
.ka_product_card .ka_product_card__image { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; background: #fbf6ec; }
.ka_product_card .ka_product_card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ka_product_card:hover .ka_product_card__image img { transform: scale(1.06); }
.ka_product_card .ka_product_card__stock { position: absolute; top: 12px; left: 12px; background: rgba(22,163,74,.95); color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
.ka_product_card .ka_product_card__stock--out { background: rgba(212,162,78,.95); color: #1a1d21; }
.ka_product_card .ka_product_card__badge { position: absolute; top: 12px; right: 12px; background: #1c1c1e; color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; }
.ka_product_card .ka_product_card__badge--new { background: #D4A24E; color: #1a1d21; }
.ka_product_card .ka_product_card__badge--off-percent, .ka_product_card .ka_product_card__badge--sale { background: #dc2626; color: #fff; }
.ka_product_card .ka_product_card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ka_product_card .ka_product_card__brand { font-family: 'AR One Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B58A3D; margin-bottom: 8px; }
.ka_product_card .ka_product_card__title { font-family: 'Spectral', serif; font-size: 17px; font-weight: 600; line-height: 1.3; color: #1c1c1e; margin: 0 0 12px; letter-spacing: -.01em; }
.ka_product_card .ka_product_card__price { font-family: 'Spectral', serif; font-size: 18px; font-weight: 700; color: #1c1c1e; margin-bottom: auto; padding-bottom: 16px; letter-spacing: -.01em; }
.ka_product_card .ka_product_card__price del { color: #4a4540; font-size: 14px; font-weight: 400; margin-left: 6px; }
.ka_product_card .ka_product_card__price ins { text-decoration: none; }
.ka_product_card .ka_product_card__cta { display: inline-block; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #1c1c1e; padding-top: 12px; border-top: 1px solid rgba(28,26,31,.06); }
.ka_product_card:hover .ka_product_card__cta { color: #B58A3D; }
@media (max-width: 1024px) { .ka_product_slider .ka_product_slider__slider, .ka_product_slider .ka_product_slider__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .ka_product_slider .ka_product_slider__slider, .ka_product_slider .ka_product_slider__grid { grid-template-columns: 1fr; } }
/* product-slider rich header (section-mark + em-headline + lede) */
.ka_product_slider .ka_product_slider__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.ka_product_slider .ka_product_slider__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; }
.ka_product_slider .ka_product_slider__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_product_slider .ka_product_slider__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 14px; }
.ka_product_slider .ka_product_slider__headline em { font-style: italic; color: #B58A3D; }
.ka_product_slider .ka_product_slider__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; margin: 0; }

/* §15 rail header is left-aligned with controls on the right (vs §14 centered) */
.ka_product_slider--rail .ka_product_slider__head { text-align: left; max-width: none; margin: 0 0 32px; }

/* ============ §16 Top of the Stack — ka/product-ranking == legacy .wes-stack (G-12) ============ */
.ka_product_ranking { background: #fff; padding: clamp(80px,9vw,128px) 24px; }
.ka_product_ranking .ka_ranking__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.ka_product_ranking .ka_ranking__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; }
.ka_product_ranking .ka_ranking__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_product_ranking .ka_ranking__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 14px; }
.ka_product_ranking .ka_ranking__headline em { font-style: italic; color: #B58A3D; }
.ka_product_ranking .ka_ranking__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; margin: 0; }
.ka_product_ranking .ka_ranking__row {
  display: grid; grid-template-columns: 80px 120px 1fr 160px; align-items: center; gap: 24px; padding: 24px 8px;
  border-bottom: 1px solid rgba(28,26,31,.10); text-decoration: none; color: inherit; max-width: 1280px; margin: 0 auto;
  transition: background .2s ease;
}
.ka_product_ranking .ka_ranking__row:first-of-type { border-top: 1px solid rgba(28,26,31,.10); }
.ka_product_ranking .ka_ranking__row:hover { background: #fbf6ec; }
.ka_product_ranking .ka_ranking__rank { font-family: 'Spectral', serif; font-style: italic; font-size: 48px; font-weight: 700; line-height: 1; color: #D4A24E; opacity: .85; text-align: center; }
.ka_product_ranking .ka_ranking__image { width: 96px; height: 96px; border-radius: 8px; box-shadow: var(--ka-shadow-sm); background: #fbf6ec center/cover no-repeat; overflow: hidden; display: block; }
.ka_product_ranking .ka_ranking__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ka_product_ranking .ka_ranking__info { min-width: 0; display: flex; flex-direction: column; }
.ka_product_ranking .ka_ranking__brand { font-family: 'AR One Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B58A3D; margin-bottom: 6px; }
.ka_product_ranking .ka_ranking__name { font-family: 'Spectral', serif; font-size: 20px; font-weight: 600; line-height: 1.25; color: #1c1c1e; margin: 0 0 8px; letter-spacing: -.01em; }
.ka_product_ranking .ka_ranking__price { font-family: 'Spectral', serif; font-size: 18px; font-weight: 700; color: #1c1c1e; }
.ka_product_ranking .ka_ranking__cta { display: inline-flex; align-items: center; justify-content: center; background: #1c1c1e; color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 12px 20px; border-radius: 2px; text-decoration: none; }
.ka_product_ranking .ka_ranking__cta:hover { background: #B58A3D; color: #1a1d21; }
@media (max-width: 768px) { .ka_product_ranking .ka_ranking__row { grid-template-columns: 56px 1fr; } .ka_product_ranking .ka_ranking__image, .ka_product_ranking .ka_ranking__cta { display: none; } }

/* §17 Deals variant: dark band, 3-col, deal-card treatment (no stock pill / CTA). Keyed off the off-percent ribbon. */
.ka_product_slider:has(.ka_product_card__badge--off-percent) { background: #23222a; }
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_slider__headline { color: #fff; }
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_slider__lede { color: rgba(255,255,255,.7); }
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_grid { grid-template-columns: repeat(3,1fr); }
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_card__stock,
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_card__cta { display: none; }
.ka_product_slider:has(.ka_product_card__badge--off-percent) .ka_product_card__price del { color: #9a958c; }

/* ============ §23/§20 CTA band — ka/cta == legacy .wes-cta-band ============ */
.ka_cta { background: #23222a; color: #fff; text-align: center; padding: 72px 32px; }
.ka_cta .ka_cta__inner { max-width: 760px; margin: 0 auto; }
.ka_cta .ka_cta__title { font-family: 'Spectral', serif; font-size: clamp(28px,3.5vw,42px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #fff; margin: 0 0 12px; }
.ka_cta .ka_cta__content { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #e6dfd1; max-width: 680px; margin: 0 auto 28px; }
.ka_cta .ka_cta__content p { margin: 0; }
.ka_cta .ka_cta__button { display: inline-flex; align-items: center; background: #D4A24E !important; color: #1a1d21 !important; padding: 16px 32px; font-family: 'AR One Sans', sans-serif; font-weight: 700; letter-spacing: .06em; font-size: 14px; text-transform: uppercase; border-radius: 2px; text-decoration: none; min-height: 48px; box-shadow: 0 4px 12px rgba(0,0,0,.25); transition: all .2s ease; }
.ka_cta .ka_cta__button:hover { background: #E6BE6E !important; transform: translateY(-2px); }
@media (max-width: 600px) { .ka_cta { padding: 48px 20px; } .ka_cta .ka_cta__title { font-size: 28px; } .ka_cta .ka_cta__content { font-size: 16px; } }

/* ============ §19 A Day at the Counter — ka/timeline == legacy .wes-day (HG-5) ============ */
.ka_timeline { background: #fbf6ec; padding: clamp(80px,9vw,128px) 24px; }
.ka_timeline .ka_timeline__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.ka_timeline .ka_timeline__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; }
.ka_timeline .ka_timeline__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_timeline .ka_timeline__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 14px; }
.ka_timeline .ka_timeline__headline em { font-style: italic; color: #B58A3D; }
.ka_timeline .ka_timeline__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; margin: 0; }
.ka_timeline .ka_timeline__rail { max-width: 960px; margin: 0 auto; position: relative; }
.ka_timeline .ka_timeline__rail::before { content: ''; position: absolute; left: 120px; top: 14px; bottom: 54px; width: 2px; background: linear-gradient(to bottom, #D4A24E 0%, #D4A24E 92%, rgba(212,162,78,.2) 100%); }
.ka_timeline .ka_timeline_item { display: block; }
.ka_timeline .ka_timeline_item .ka_timeline_item__inner { display: grid; grid-template-columns: 104px 1fr; gap: 32px; align-items: start; padding-bottom: 40px; position: relative; }
.ka_timeline .ka_timeline_item__marker { display: block !important; min-width: 104px; white-space: nowrap; border: 0 !important; background: transparent !important; border-radius: 0 !important; position: relative; text-align: right; padding-top: 4px; font-family: 'Spectral', serif; font-style: italic; font-size: 18px; font-weight: 700; color: #B58A3D; letter-spacing: -.01em; }
.ka_timeline .ka_timeline_item__marker::after { content: ''; position: absolute; left: 110px; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 2px solid #D4A24E; box-shadow: var(--ka-shadow-sm); z-index: 2; }
.ka_timeline .ka_timeline_item__body { background: #fff; padding: 22px 26px 20px; border-radius: 8px; box-shadow: var(--ka-shadow-md); }
.ka_timeline .ka_timeline_item__title { font-family: 'Spectral', serif; font-size: 22px; font-weight: 700; line-height: 1.2; color: #1c1c1e; margin: 0 0 10px; letter-spacing: -.01em; }
.ka_timeline .ka_timeline_item__content { font-family: 'AR One Sans', sans-serif; font-size: 15px; line-height: 1.65; color: #4a4540; margin: 0 0 12px; }
.ka_timeline .ka_timeline_item__content p { margin: 0; }
.ka_timeline .ka_timeline_item__callout { display: inline-block; padding: 6px 12px; background: #fbf6ec; border-left: 2px solid #D4A24E; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; color: #1c1c1e; letter-spacing: .02em; }
@media (max-width: 700px) { .ka_timeline .ka_timeline__rail::before { display: none; } .ka_timeline .ka_timeline_item .ka_timeline_item__inner { grid-template-columns: 1fr; gap: 8px; } .ka_timeline .ka_timeline_item__marker { text-align: left; padding-top: 0; } .ka_timeline .ka_timeline_item__marker::after { display: none; } }

/* ============ §18 Project Bundles — ka/project-bundles == legacy .wes-bundles ============ */
.ka_project_bundles { background: #fff; padding: clamp(80px,9vw,128px) 24px; }
.ka_project_bundles .ka_project_bundles__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.ka_project_bundles .ka_project_bundles__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 16px; padding: 0 !important; }
.ka_project_bundles .ka_project_bundles__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_project_bundles .ka_project_bundles__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #1c1c1e; margin: 0 0 14px; }
.ka_project_bundles .ka_project_bundles__headline em { font-style: italic; color: #B58A3D; }
.ka_project_bundles .ka_project_bundles__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: #4a4540; margin: 0; }
.ka_project_bundles .ka_project_bundles__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 1400px; margin: 0 auto; }
.ka_project_bundles .ka_project_bundles__grid > .ka_project_bundle { min-width: 0; }
.ka_project_bundle .ka_project_bundle__inner { position: relative; background: #fbf6ec; border-radius: 12px; padding: 32px 32px 28px; border: 1px solid rgba(28,26,31,.06); box-shadow: var(--ka-shadow-md); overflow: hidden; height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.ka_project_bundle .ka_project_bundle__inner:hover { box-shadow: var(--ka-shadow-lg); transform: translateY(-2px); }
.ka_project_bundle .ka_project_bundle__inner::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #D4A24E; }
.ka_project_bundle.ka_project_bundle--accent-blue .ka_project_bundle__inner::before { background: #1f6feb; }
.ka_project_bundle.ka_project_bundle--accent-purple .ka_project_bundle__inner::before { background: #7c3aed; }
.ka_project_bundle .ka_project_bundle__use-case { font-family: 'AR One Sans', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B58A3D; margin-bottom: 8px; display: block; }
.ka_project_bundle .ka_project_bundle__title { font-family: 'Spectral', serif; font-size: 24px; font-weight: 700; line-height: 1.15; color: #1c1c1e; margin: 0 0 16px; letter-spacing: -.01em; }
.ka_project_bundle .ka_project_bundle__features { list-style: none; padding: 0; margin: 0 0 20px; }
.ka_project_bundle .ka_project_bundle__features li { font-family: 'AR One Sans', sans-serif; font-size: 14px; line-height: 1.5; color: #4a4540; padding: 7px 0 7px 22px; position: relative; border-bottom: 1px solid rgba(28,26,31,.06); }
.ka_project_bundle .ka_project_bundle__features li::before { content: '+'; position: absolute; left: 0; color: #B58A3D; font-weight: 700; }
.ka_project_bundle .ka_project_bundle__button { display: inline-flex; align-items: center; background: #1c1c1e; color: #fff; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 12px 22px; border-radius: 2px; text-decoration: none; }
.ka_project_bundle .ka_project_bundle__button:hover { background: #B58A3D; color: #1a1d21; }
@media (max-width: 700px) { .ka_project_bundles .ka_project_bundles__grid { grid-template-columns: 1fr; } }

/* ============ §20 Pros teaser — ka/feature-teaser == legacy .wes-pros-teaser (NM-12) ============ */
.ka_feature_teaser { background: linear-gradient(180deg,#fbf6ec 0%,#faf3e6 100%); padding: clamp(64px,8vw,96px) 24px; position: relative; }
.ka_feature_teaser .ka_feature_teaser__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(40px,5vw,72px); align-items: center; }
.ka_feature_teaser .ka_feature_teaser__copy { display: flex; flex-direction: column; }
.ka_feature_teaser .ka_feature_teaser__section-mark { display: flex; align-items: center; gap: 12px; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0; padding: 0 !important; }
.ka_feature_teaser .ka_feature_teaser__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_feature_teaser .ka_feature_teaser__title { font-family: 'Spectral', serif; font-size: clamp(30px,3.8vw,46px); font-weight: 700; line-height: 1.1; letter-spacing: -.022em; color: #1c1c1e; margin: 14px 0 18px; }
.ka_feature_teaser .ka_feature_teaser__title em { font-style: italic; color: #B58A3D; }
.ka_feature_teaser .ka_feature_teaser__lede { font-family: 'AR One Sans', sans-serif; font-size: 16px; line-height: 1.65; color: #1c1c1e; margin: 0 0 22px; max-width: 54ch; }
.ka_feature_teaser .ka_feature_teaser__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ka_feature_teaser .ka_feature_teaser__chip { background: #fff; border: 1px solid rgba(28,26,31,.10); border-radius: 999px; padding: 7px 14px; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #B58A3D; box-shadow: var(--ka-shadow-sm); }
.ka_feature_teaser .ka_feature_teaser__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ka_feature_teaser .ka_feature_teaser__button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; font-family: 'AR One Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; border-radius: 2px; text-decoration: none; transition: all .2s ease; }
.ka_feature_teaser .ka_feature_teaser__button--primary { background: #D4A24E; color: #1a1d21; box-shadow: 0 4px 12px rgba(184,134,50,.3); }
.ka_feature_teaser .ka_feature_teaser__button--primary:hover { background: #E6BE6E; transform: translateY(-2px); }
.ka_feature_teaser .ka_feature_teaser__button--secondary { background: transparent; color: #1c1c1e; border: 1px solid rgba(28,26,31,.3); }
.ka_feature_teaser .ka_feature_teaser__button--secondary:hover { background: #1c1c1e; color: #fff; }
.ka_feature_teaser .ka_feature_teaser__photo { position: relative; margin: 0; border-radius: 14px; overflow: hidden; box-shadow: var(--ka-shadow-lg); aspect-ratio: 4/3; max-width: 520px; justify-self: end; }
.ka_feature_teaser .ka_feature_teaser__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ka_feature_teaser .ka_feature_teaser__photo figcaption { position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.95); padding: 8px 14px; border-radius: 8px; font-family: 'AR One Sans', sans-serif; font-size: 12px; color: #1c1c1e; box-shadow: var(--ka-shadow-md); }
.ka_feature_teaser .ka_feature_teaser__photo figcaption strong { color: #B58A3D; font-weight: 800; }
@media (max-width: 900px) { .ka_feature_teaser .ka_feature_teaser__inner { grid-template-columns: 1fr; gap: 32px; } .ka_feature_teaser .ka_feature_teaser__photo { justify-self: stretch; max-width: none; } }

/* ============ §22 Showroom Spotlight — ka/category-spotlight == legacy .wes-ssp (NM-13) ============ */
.ka_category_spotlight { background: #fbf6ec; padding: clamp(72px,8vw,104px) 24px; }
.ka_category_spotlight .ka_category_spotlight__inner { max-width: 1340px; margin: 0 auto; }
.ka_category_spotlight .ka_category_spotlight__head { text-align: center; margin: 0 auto 48px; max-width: 780px; }
.ka_category_spotlight .ka_category_spotlight__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0; padding: 0 !important; }
.ka_category_spotlight .ka_category_spotlight__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_category_spotlight .ka_category_spotlight__title { font-family: 'Spectral', serif; font-size: clamp(30px,3.6vw,44px); font-weight: 700; line-height: 1.1; letter-spacing: -.022em; color: #1c1c1e; margin: 14px 0 12px; }
.ka_category_spotlight .ka_category_spotlight__title em { font-style: italic; color: #B58A3D; }
.ka_category_spotlight .ka_category_spotlight__lede { font-family: 'AR One Sans', sans-serif; font-size: 15px; line-height: 1.6; color: #4a4540; margin: 0; }
.ka_category_spotlight .ka_category_spotlight__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.ka_category_spotlight .ka_category_spotlight__tile { display: flex; flex-direction: column; gap: 14px; }
.ka_category_spotlight .ka_category_spotlight__tile-link { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--ka-shadow-lg); text-decoration: none; color: inherit; transition: all .25s ease; }
.ka_category_spotlight .ka_category_spotlight__tile-link:hover { transform: translateY(-4px); }
.ka_category_spotlight .ka_category_spotlight__tile-img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: #fbf6ec; position: relative; }
.ka_category_spotlight .ka_category_spotlight__tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.32) 100%); }
.ka_category_spotlight .ka_category_spotlight__tile-cat { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); padding: 6px 12px; border-radius: 6px; font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #B58A3D; box-shadow: var(--ka-shadow-sm); }
.ka_category_spotlight .ka_category_spotlight__tile-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 14px; }
.ka_category_spotlight .ka_category_spotlight__tile-blurb { font-family: 'Spectral', serif; font-style: italic; font-size: 16px; line-height: 1.5; color: #1c1c1e; margin: 0; padding: 0 0 12px; border-bottom: 1px solid rgba(28,26,31,.08); }
.ka_category_spotlight .ka_category_spotlight__tile-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.ka_category_spotlight .ka_category_spotlight__tile-brand { font-family: 'AR One Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B58A3D; margin-bottom: 4px; }
.ka_category_spotlight .ka_category_spotlight__tile-name { font-family: 'AR One Sans', sans-serif; font-size: 13.5px; font-weight: 600; line-height: 1.35; color: #1c1c1e; }
.ka_category_spotlight .ka_category_spotlight__tile-price { font-family: 'Spectral', serif; font-style: italic; font-size: 22px; font-weight: 700; color: #B58A3D; line-height: 1; }
.ka_category_spotlight .ka_category_spotlight__tile-cat-link { align-self: flex-start; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: #B58A3D; text-decoration: none; padding: 6px 0; }
@media (max-width: 800px) { .ka_category_spotlight .ka_category_spotlight__grid { grid-template-columns: 1fr; } }

/* product-slider RAIL layout (NM-11 purpose): free-scroll row of cards (§15 New Arrivals, §21 Pro-favorites) */
.ka_product_slider .ka_product_slider__rail { max-width: 1400px; margin: 0 auto; display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
.ka_product_slider .ka_product_slider__rail > .ka_product_card { flex: 0 0 clamp(240px, 22vw, 290px); scroll-snap-align: start; }
.ka_product_slider:has(.ka_product_slider__rail) .ka_product_slider__head { text-align: left; max-width: none; margin: 0 auto 32px; }
/* §15 New Arrivals cards (new ribbon) hide the in-stock pill (OLD NA cards show only the NEW ribbon) */
.ka_product_slider:has(.ka_product_card__badge--new) .ka_product_card__stock { display: none; }

/* §13 tabs: surface the active tab's product-slider pane (the bundle JS shows the .ka_tab but
   leaves the nested product-slider hidden) + render it as a compact in-tab pane (no section chrome). */
.ka_tabs .ka_tab { height: auto; }
.ka_tabs .ka_tab .ka_product_slider { display: block !important; background: transparent !important; padding: 0 !important; }
.ka_tabs .ka_tab .ka_product_slider .ka_product_slider__head { display: none; }
.ka_tabs .ka_tab .ka_product_grid, .ka_tabs .ka_tab .ka_product_slider__slider, .ka_tabs .ka_tab .ka_product_slider__rail { grid-template-columns: repeat(4,1fr); display: grid !important; gap: 20px; }

/* ============ §13 Shop the Showroom — ka/tabs == legacy .wes-shopslider (G-11) ============ */
.ka_tabs { background: #23222a; padding: clamp(72px,8vw,104px) 24px; }
.ka_tabs .ka_tabs__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.ka_tabs .ka_tabs__section-mark { display: flex; align-items: center; gap: 12px; justify-content: center; font-family: 'AR One Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #D4A24E; margin: 0 0 14px; padding: 0 !important; }
.ka_tabs .ka_tabs__section-mark__num { padding: 0 !important; display: inline !important; font-family: 'Spectral', serif; font-style: italic; color: #D4A24E; }
.ka_tabs .ka_tabs__headline { font-family: 'Spectral', serif; font-size: clamp(32px,4vw,48px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; color: #fff; margin: 0 0 14px; }
.ka_tabs .ka_tabs__headline em { font-style: italic; color: #D4A24E; }
.ka_tabs .ka_tabs__lede { font-family: 'AR One Sans', sans-serif; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.7); margin: 0; }
.ka_tabs .ka_tabs__inner { max-width: 1340px; margin: 0 auto; }
.ka_tabs .ka_tabs__nav { display: inline-flex; gap: 0; padding: 6px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 999px; margin: 0 auto 40px; justify-content: center; flex-wrap: wrap; left: 50%; position: relative; transform: translateX(-50%); }
.ka_tabs .ka_tabs__nav button, .ka_tabs .ka_tabs__nav-item, .ka_tabs .ka_tabs__tab { background: transparent; border: 0; color: rgba(255,255,255,.7); font-family: 'AR One Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 12px 28px; border-radius: 999px; cursor: pointer; transition: all .2s ease; }
.ka_tabs .ka_tabs__nav button:hover { color: #fff; }
.ka_tabs .ka_tabs__nav button.is-active, .ka_tabs .ka_tabs__nav button[aria-selected="true"] { background: #D4A24E; color: #1a1d21; }
.ka_tabs .ka_tab { display: none; }
.ka_tabs .ka_tab.is-active { display: block; }
.ka_tabs .ka_tab .ka_product_card__title, .ka_tabs .ka_tab .ka_product_card__price { color: #fff; }
.ka_tabs .ka_tab .ka_product_card { background: rgba(255,255,255,.04); }
/* ============================================================
   ka/page-hero — WES "wes-about" immersive variant (NM-1, About §1)
   Mirrors the legacy .wes-about-immersive* look (full-bleed dark photo,
   ken-burns pan, radial overlay, centered serif headline w/ gold italic
   emphasis, italic lede, scroll cue). DOM: .ka_page_hero--wes-about >
   .ka_page_hero__inner > .ka_page_hero__image(img) + .ka_page_hero__overlay.
   ============================================================ */
.ka_page_hero--wes-about { position:relative; min-height:88vh; display:flex; align-items:center; overflow:hidden; background:#0e0d10; padding:clamp(80px,10vh,120px) 24px; width:100vw; margin-left:calc(50% - 50vw); box-sizing:border-box; font-family:"AR One Sans",sans-serif; color:#fff; }
.ka_page_hero--wes-about .ka_page_hero__image { position:absolute; inset:0; margin:0; padding:0; z-index:0; overflow:hidden; }
.ka_page_hero--wes-about .ka_page_hero__image img { width:100%; height:100%; object-fit:cover; display:block; opacity:.45; transform:scale(1.05); border-radius:0; animation:ka-page-hero-pan 24s ease-in-out infinite alternate; }
.ka_page_hero--wes-about::after { content:''; position:absolute; inset:0; z-index:1; background:radial-gradient(ellipse at center, transparent 0%, rgba(14,13,16,.65) 60%, rgba(14,13,16,.85) 100%); pointer-events:none; }
.ka_page_hero--wes-about .ka_page_hero__inner { position:relative; z-index:2; width:100%; }
.ka_page_hero--wes-about .ka_page_hero__overlay { max-width:1080px; margin:0 auto; text-align:center; color:#fff; }
.ka_page_hero--wes-about .ka_page_hero__eyebrow { font-family:'AR One Sans',sans-serif; font-size:12px; letter-spacing:.30em; text-transform:uppercase; color:#D4A24E; margin:0 0 36px; font-weight:600; opacity:1; }
.ka_page_hero--wes-about .ka_page_hero__title { font-family:'Spectral',serif; font-size:clamp(40px,7vw,88px); font-weight:700; line-height:1.05; letter-spacing:-0.025em; color:#fff; margin:0 0 32px; }
.ka_page_hero--wes-about .ka_page_hero__title-em { display:block; color:#D4A24E; }
.ka_page_hero--wes-about .ka_page_hero__title-em em { font-style:italic; }
.ka_page_hero--wes-about .ka_page_hero__subtitle { font-family:'Spectral',serif; font-style:italic; font-size:16px; line-height:1.5; color:rgba(255,255,255,.82); margin:0 auto 56px; max-width:60ch; }
.ka_page_hero--wes-about .ka_page_hero__subtitle p { margin:0; }
.ka_page_hero--wes-about .ka_page_hero__scroll { display:inline-flex; flex-direction:column; align-items:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.5); font-weight:600; }
.ka_page_hero--wes-about .ka_page_hero__scroll-line { display:inline-block; width:1px; height:32px; background:#D4A24E; position:relative; overflow:hidden; }
.ka_page_hero--wes-about .ka_page_hero__scroll-line::before { content:''; position:absolute; left:0; right:0; top:-100%; bottom:50%; background:rgba(255,255,255,.9); animation:ka-page-hero-scroll-pulse 2s ease-in-out infinite; }
@keyframes ka-page-hero-pan { from { transform:scale(1.05) translateX(-2%); } to { transform:scale(1.10) translateX(2%); } }
@keyframes ka-page-hero-scroll-pulse { 0% { top:-100%; bottom:100%; } 100% { top:100%; bottom:-100%; } }

/* ============================================================
   ka/editorial-band — WES "wes-about-origin" variant (About §2 origin story)
   Mirrors legacy .wes-about-origin* (cream bg, 2-col grid, 4:5 image w/ drop-shadow,
   circular 1962 "Year One" badge, italic-gold em title + closing paragraph).
   DOM: .ka_editorial_band--wes-about-origin > .ka_editorial_band__inner >
        .ka_editorial_band__image(img) + .ka_editorial_band__body
   ============================================================ */
.ka_editorial_band--wes-about-origin { background:#fff; padding:clamp(80px,10vw,140px) 24px; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__inner { display:grid; grid-template-columns:1fr 1fr; gap:clamp(48px,6vw,96px); align-items:center; max-width:1400px; margin:0 auto; position:relative; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__image { position:relative; margin:0; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__image img { width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; border-radius:clamp(32px,4vw,48px); filter:drop-shadow(0 12px 24px rgba(28,26,31,0.18)) drop-shadow(0 32px 64px rgba(28,26,31,0.22)); }
.ka_editorial_band--wes-about-origin .ka_editorial_band__body { display:block; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__section-mark { display:flex; align-items:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin-bottom:24px; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__section-mark__num { font-family:'Spectral',serif; font-style:italic; font-size:34px; font-weight:700; color:#D4A24E; opacity:.85; line-height:1; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__title { font-family:'Spectral',serif; font-size:clamp(36px,4.5vw,56px); font-weight:700; line-height:1.05; letter-spacing:-0.02em; color:#1c1c1e; margin:14px 0 28px; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__title-em { font-style:italic; color:#B58A3D; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__content p { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.75; color:#1c1c1e; margin:0 0 20px; max-width:55ch; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__content-close em { font-style:italic; color:#B58A3D; font-weight:500; }
/* circular 1962 "Year One" badge — stacked seal repositioned over the image's lower-right */
.ka_editorial_band--wes-about-origin .ka_editorial_band__seal { position:absolute; left:calc(50% - 179px); bottom:-32px; width:160px; height:160px; background:#fff; border:2px solid #D4A24E; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 30px 60px rgba(0,0,0,.18), 0 12px 24px rgba(0,0,0,.12); text-align:center; z-index:3; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__seal-year { font-family:'Spectral',serif; font-style:italic; font-size:42px; font-weight:700; color:#1c1c1e; line-height:1; order:1; }
.ka_editorial_band--wes-about-origin .ka_editorial_band__seal-line1 { font-family:'AR One Sans',sans-serif; font-size:9px; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin-top:6px; font-weight:700; order:2; }
@media (max-width:980px) {
  .ka_editorial_band--wes-about-origin .ka_editorial_band__inner { grid-template-columns:1fr; gap:48px; }
  .ka_editorial_band--wes-about-origin .ka_editorial_band__seal { left:auto; right:8px; bottom:-24px; width:120px; height:120px; }
  .ka_editorial_band--wes-about-origin .ka_editorial_band__seal-year { font-size:32px; }
}

/* ============================================================
   §3 Values grid — ka/services-strip "wes-about-values" + a divi/text header.
   Mirrors legacy .wes-about-values* (cream bg, centered mark+em header, 2x2
   numbered cards w/ corner accent + hover lift + gold left-bar grow-in).
   ============================================================ */
.kvh-mark { display:flex; align-items:center; justify-content:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin:0 0 6px; }
.kvh-num { font-family:'Spectral',serif; font-style:italic; font-size:20px; font-weight:700; color:#D4A24E; line-height:1; }
.kvh-title { font-family:'Spectral',serif; font-size:clamp(36px,4.5vw,56px); font-weight:700; line-height:1.05; letter-spacing:-0.02em; color:#1c1c1e; margin:14px 0; text-align:center; }
.kvh-title em { font-style:italic; color:#B58A3D; }
.kvh-lede { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.6; color:#4a4540; margin:0 auto; max-width:720px; text-align:center; }
.et_pb_text:has(.kvh-title) { max-width:720px; margin:0 auto 64px; text-align:center; }

.ka_services_strip--wes-about-values { background:transparent; padding:0; }
.ka_services_strip--wes-about-values .ka_services_strip__inner { background:transparent; padding:0; }
.ka_services_strip--wes-about-values .ka_services_strip__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.ka_services_strip--wes-about-values .ka_services_item__inner { position:relative; background:#fff; padding:48px 44px 40px; border-radius:12px; box-shadow:0 8px 24px rgba(28,26,31,.10); border:1px solid rgba(28,26,31,.04); overflow:hidden; transition:transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1); text-align:left; height:100%; }
.ka_services_strip--wes-about-values .ka_services_item__inner::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:linear-gradient(180deg,#D4A24E 0%,#B58A3D 100%); transform:scaleY(0); transform-origin:top; transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.ka_services_strip--wes-about-values .ka_services_item__inner::after { content:''; position:absolute; top:16px; right:16px; width:22px; height:22px; border-top:1.5px solid #D4A24E; border-right:1.5px solid #D4A24E; opacity:.45; transition:opacity .25s ease, transform .25s ease; }
.ka_services_strip--wes-about-values .ka_services_item__inner:hover { transform:translateY(-4px); box-shadow:0 24px 56px rgba(28,26,31,.16); }
.ka_services_strip--wes-about-values .ka_services_item__inner:hover::before { transform:scaleY(1); }
.ka_services_strip--wes-about-values .ka_services_item__inner:hover::after { opacity:1; transform:rotate(10deg); }
.ka_services_strip--wes-about-values .ka_services_item__icon { margin:0 0 20px; }
.ka_services_strip--wes-about-values .kv-num { font-family:'Spectral',serif; font-style:italic; font-size:48px; font-weight:700; color:#D4A24E; line-height:1; opacity:.85; display:block; }
.ka_services_strip--wes-about-values .ka_services_item__title { font-family:'Spectral',serif; font-size:28px; font-weight:700; line-height:1.15; color:#1c1c1e; margin:0 0 16px; letter-spacing:-0.015em; }
.ka_services_strip--wes-about-values .ka_services_item__description { font-family:'AR One Sans',sans-serif; font-size:15px; line-height:1.65; color:#4a4540; margin:0; }
@media (max-width:760px) { .ka_services_strip--wes-about-values .ka_services_strip__grid { grid-template-columns:1fr; } }

/* ============================================================
   §4 Timeline — ka/timeline "wes-about-history" (G-14 year-gutter heritage) +
   divi/text header. Year rides the item marker; spine + dot via CSS.
   ============================================================ */
.kth-mark { display:flex; align-items:center; justify-content:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin:0 0 6px; }
.kth-num { font-family:'Spectral',serif; font-style:italic; font-size:20px; font-weight:700; color:#D4A24E; line-height:1; }
.kth-title { font-family:'Spectral',serif; font-size:clamp(32px,4vw,52px); font-weight:700; line-height:1.05; letter-spacing:-0.02em; color:#1c1c1e; margin:14px 0; text-align:center; }
.kth-title em { font-style:italic; color:#B58A3D; }
.kth-lede { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.6; color:#4a4540; margin:0 auto; max-width:680px; text-align:center; }
.et_pb_text:has(.kth-title) { max-width:760px; margin:0 auto 56px; text-align:center; }

.ka_timeline--wes-about-history { background:transparent; max-width:920px; margin:0 auto; }
.ka_timeline--wes-about-history .ka_timeline__rail { display:block; }
.ka_timeline--wes-about-history .ka_timeline_item__inner { display:grid; grid-template-columns:84px 1fr; gap:28px; align-items:start; }
.ka_timeline--wes-about-history .ka_timeline_item__marker { font-family:'Spectral',serif; font-size:22px; font-weight:700; color:#B58A3D; text-align:right; padding-top:2px; background:none; border:0; width:auto; height:auto; line-height:1.2; }
.ka_timeline--wes-about-history .ka_timeline_item--current .ka_timeline_item__marker { color:#D4A24E; font-style:italic; }
.ka_timeline--wes-about-history .ka_timeline_item__body { position:relative; border-left:2px solid rgba(212,162,78,.25); padding:0 0 44px 32px; }
.ka_timeline--wes-about-history .ka_timeline_item:last-child .ka_timeline_item__body { padding-bottom:0; }
.ka_timeline--wes-about-history .ka_timeline_item__body::before { content:''; position:absolute; left:-8px; top:5px; width:13px; height:13px; border-radius:50%; background:#fbf6ec; border:2px solid #D4A24E; box-shadow:0 0 0 4px #fbf6ec; }
.ka_timeline--wes-about-history .ka_timeline_item--current .ka_timeline_item__body::before { background:#D4A24E; }
.ka_timeline--wes-about-history .ka_timeline_item__title { font-family:'Spectral',serif; font-size:20px; font-weight:700; color:#1c1c1e; margin:0 0 8px; line-height:1.2; letter-spacing:-0.01em; }
.ka_timeline--wes-about-history .ka_timeline_item__content { font-family:'AR One Sans',sans-serif; font-size:15px; line-height:1.65; color:#4a4540; margin:0; max-width:54ch; }
@media (max-width:600px) {
  .ka_timeline--wes-about-history .ka_timeline_item__inner { grid-template-columns:60px 1fr; gap:16px; }
  .ka_timeline--wes-about-history .ka_timeline_item__marker { font-size:17px; }
}
/* §4 timeline — neutralize base absolute-marker/rail so the grid year-gutter works */
.ka_timeline--wes-about-history .ka_timeline__rail { padding-left:0; }
.ka_timeline--wes-about-history .ka_timeline__rail::before { display:none; }
.ka_timeline--wes-about-history .ka_timeline_item__marker { position:static; }
.ka_timeline--wes-about-history .ka_timeline_item { margin-bottom:0; }

/* ============================================================
   §5 Numbers — ka/stat-counters "wes-about" (dark count-up band) + dark divi/text header.
   Count-up driven by scripts/frontend.js (.ka_stat_counter__number reads textContent).
   ============================================================ */
.kn-mark { display:flex; align-items:center; justify-content:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#D4A24E; margin:0 0 6px; }
.kn-num { font-family:'Spectral',serif; font-style:italic; font-size:20px; font-weight:700; color:#D4A24E; line-height:1; }
.kn-title { font-family:'Spectral',serif; font-size:clamp(32px,4vw,52px); font-weight:700; line-height:1.05; letter-spacing:-0.02em; color:#fff; margin:14px 0 0; text-align:center; }
.kn-title em { font-style:italic; color:#D4A24E; }
.et_pb_text:has(.kn-title) { max-width:900px; margin:0 auto 64px; text-align:center; }

.ka_stat_counters--wes-about { background:transparent; }
.ka_stat_counters--wes-about .ka_stat_counters__inner { display:grid; grid-template-columns:repeat(3,1fr); gap:0; max-width:1280px; margin:0 auto; }
.ka_stat_counters--wes-about .ka_stat_counter { padding:32px 28px; border-right:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); text-align:center; }
.ka_stat_counters--wes-about .ka_stat_counter:nth-child(3n) { border-right:0; }
.ka_stat_counters--wes-about .ka_stat_counter:nth-last-child(-n+3) { border-bottom:0; }
.ka_stat_counters--wes-about .ka_stat_counter__value { display:block; font-family:'Spectral',serif; font-style:italic; font-size:clamp(48px,6vw,80px); font-weight:700; color:#D4A24E; line-height:1; margin-bottom:12px; letter-spacing:-0.02em; }
.ka_stat_counters--wes-about .ka_stat_counter__label { display:block; font-family:'AR One Sans',sans-serif; font-size:13px; font-weight:700; letter-spacing:.10em; text-transform:uppercase; color:#fff; margin-bottom:4px; }
.ka_stat_counters--wes-about .ka_stat_counter__sub { display:block; font-family:'Spectral',serif; font-style:italic; font-size:14px; color:rgba(255,255,255,.55); }
@media (max-width:880px) {
  .ka_stat_counters--wes-about .ka_stat_counters__inner { grid-template-columns:repeat(2,1fr); }
  .ka_stat_counters--wes-about .ka_stat_counter:nth-child(3n) { border-right:1px solid rgba(255,255,255,.08); }
  .ka_stat_counters--wes-about .ka_stat_counter:nth-child(2n) { border-right:0; }
}
@media (max-width:520px) { .ka_stat_counters--wes-about .ka_stat_counters__inner { grid-template-columns:1fr; } .ka_stat_counters--wes-about .ka_stat_counter { border-right:0 !important; } }

/* ============================================================
   §6 Promise band — ka/pullquote "wes-about-promise" (dark, ghost quote-mark
   watermark, centered italic statement w/ gold em underline, family signature).
   ============================================================ */
.ka_pullquote--wes-about-promise { background:#1a1d21; color:#fff; padding:clamp(80px,10vw,140px) 24px; position:relative; overflow:hidden; }
.ka_pullquote--wes-about-promise::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:140%; height:200%; background:radial-gradient(closest-side, rgba(212,162,78,.06) 0%, transparent 60%); pointer-events:none; }
.ka_pullquote--wes-about-promise .ka_pullquote__inner { position:relative; max-width:960px; margin:0 auto; text-align:center; }
.ka_pullquote--wes-about-promise .ka_pullquote__inner::before { content:'\201C'; display:block; font-family:'Spectral',serif; font-size:200px; font-weight:700; line-height:.4; color:#D4A24E; opacity:.20; height:80px; }
.ka_pullquote--wes-about-promise .ka_pullquote__quote { font-family:'Spectral',serif; font-style:italic; font-size:clamp(24px,3.2vw,40px); font-weight:500; line-height:1.45; color:#fff; margin:0 0 56px; letter-spacing:-0.005em; border:0; padding:0; quotes:none; }
.ka_pullquote--wes-about-promise .ka_pullquote__quote::before,
.ka_pullquote--wes-about-promise .ka_pullquote__quote::after { content:none; }
.ka_pullquote--wes-about-promise .kp-em { position:relative; font-style:italic; color:#D4A24E; white-space:nowrap; }
.ka_pullquote--wes-about-promise .kp-em::after { content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px; background:#D4A24E; }
.ka_pullquote--wes-about-promise .ka_pullquote__attribution { display:inline-block; font-family:'Spectral',serif; font-style:italic; font-size:20px; color:rgba(255,255,255,.85); margin:0; position:relative; padding-top:36px; }
.ka_pullquote--wes-about-promise .ka_pullquote__attribution::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60px; height:1px; background:#D4A24E; }
.ka_pullquote--wes-about-promise .ka_pullquote__attribution::after { content:'Three generations. One name on the building.'; display:block; font-family:'AR One Sans',sans-serif; font-style:normal; font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); font-weight:600; margin-top:8px; }
/* §1 hero — drop the cloned banner-hero overlay padding/min-height so the module's
   own 90px padding + 88vh min-height match the baseline hero height exactly. */
.ka_page_hero--wes-about .ka_page_hero__overlay { padding:0; min-height:0; }
/* §2 origin — G1 gotcha: kill Divi's auto section-padding on the section-mark (renders ~418px tall otherwise) */
.ka_editorial_band--wes-about-origin .ka_editorial_band__section-mark { padding:0; min-height:0; }
/* §2 origin — G1: Divi's generated spacing on the section-mark needs !important to zero */
.ka_editorial_band--wes-about-origin .ka_editorial_band__section-mark { padding:0 !important; min-height:0 !important; margin:0 0 24px !important; }
/* §2 origin — G1: zero Divi's auto-spacing on the section-mark numeral too */
.ka_editorial_band--wes-about-origin .ka_editorial_band__section-mark__num { padding:0 !important; min-height:0 !important; height:auto !important; line-height:1 !important; }

/* ============================================================
   ka/page-hero — WES "wes-location" 2-col editorial hero (location pages)
   Copy-left (badge + h1 + city + Call/Directions) + photo-right, cream bg.
   ============================================================ */
.ka_page_hero--wes-location { background:#fbf6ec; padding:clamp(56px,7vw,96px) 24px; width:100vw; margin-left:calc(50% - 50vw); box-sizing:border-box; }
.ka_page_hero--wes-location .ka_page_hero__inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,5vw,80px); align-items:center; }
.ka_page_hero--wes-location .ka_page_hero__overlay { padding:0; min-height:0; max-width:none; margin:0; text-align:left; order:1; }
.ka_page_hero--wes-location .ka_page_hero__image { position:static; margin:0; order:2; }
.ka_page_hero--wes-location .ka_page_hero__image img { width:100%; height:auto; aspect-ratio:4/3; object-fit:cover; border-radius:12px; box-shadow:0 30px 60px rgba(0,0,0,.18); display:block; }
.ka_page_hero--wes-location .ka_page_hero__eyebrow { font-family:'AR One Sans',sans-serif; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:#1a1418; background:#D4A24E; display:inline-block; padding:6px 14px; border-radius:999px; font-weight:700; margin:0 0 20px; }
.ka_page_hero--wes-location .ka_page_hero__title { font-family:'Spectral',serif; font-size:clamp(48px,6vw,72px); font-weight:700; color:#1c1c1e; line-height:1; letter-spacing:-0.02em; margin:0 0 10px; }
.ka_page_hero--wes-location .ka_page_hero__subtitle { font-family:'AR One Sans',sans-serif; font-size:18px; color:#4a4540; margin:0 0 28px; }
.ka_page_hero--wes-location .ka_page_hero__subtitle p { margin:0; }
.ka_page_hero--wes-location .ka_page_hero__buttons { display:flex; gap:14px; flex-wrap:wrap; }
.ka_page_hero--wes-location .ka_page_hero__button { font-family:'AR One Sans',sans-serif; font-size:14px; font-weight:700; padding:14px 26px; border-radius:4px; text-decoration:none; display:inline-block; }
.ka_page_hero--wes-location .ka_page_hero__button--primary { background:#D4A24E; color:#1a1418; }
.ka_page_hero--wes-location .ka_page_hero__button--secondary { background:transparent; border:1px solid #1c1c1e; color:#1c1c1e; }
@media (max-width:880px){ .ka_page_hero--wes-location .ka_page_hero__inner{grid-template-columns:1fr;} .ka_page_hero--wes-location .ka_page_hero__image{order:1;} .ka_page_hero--wes-location .ka_page_hero__overlay{order:2;} }
/* §location hero — reset base single-cell grid (image+overlay both grid-area:1/1) so the 2-col split works */
.ka_page_hero--wes-location .ka_page_hero__overlay { grid-area:auto; }
.ka_page_hero--wes-location .ka_page_hero__image { grid-area:auto; }
/* §location hero — explicitly place copy left / photo right + vertically center */
.ka_page_hero--wes-location .ka_page_hero__inner { align-items:center; }
.ka_page_hero--wes-location .ka_page_hero__overlay { grid-column:1; grid-row:1; align-self:center; }
.ka_page_hero--wes-location .ka_page_hero__image { grid-column:2; grid-row:1; align-self:center; }

/* ============================================================
   Location pages (bristol-2 etc.) — §2 facts strip + §3 signature header/ideal.
   ============================================================ */
/* §2 facts strip (dark band) */
.wlf-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1240px; margin:0 auto; padding:26px 0; }
.wlf-fact { display:flex; flex-direction:column; gap:6px; }
.wlf-label { font-family:'AR One Sans',sans-serif; font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#B58A3D; }
.wlf-value { font-family:'AR One Sans',sans-serif; font-size:15px; color:#fff; }
.wlf-value a { color:#fff; text-decoration:none; }
.wlf-status { color:#7bd88f; font-weight:700; }
@media (max-width:760px){ .wlf-strip { grid-template-columns:repeat(2,1fr); } }
/* §3 signature header + ideal */
.wls-mark { display:flex; align-items:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin:0 0 14px; }
.wls-num { font-family:'Spectral',serif; font-style:italic; font-size:20px; font-weight:700; color:#D4A24E; }
.wls-title { font-family:'Spectral',serif; font-size:clamp(32px,4vw,48px); font-weight:700; line-height:1.1; letter-spacing:-0.02em; color:#1c1c1e; margin:0 0 16px; max-width:760px; }
.wls-title em { font-style:italic; color:#B58A3D; }
.wls-lede { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.7; color:#4a4540; margin:0 0 48px; max-width:62ch; }
.wls-ideal { font-family:'AR One Sans',sans-serif; font-size:15px; color:#4a4540; margin:32px 0 0; border-left:3px solid #D4A24E; padding-left:18px; }
.wls-ideal-label { display:block; font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#B58A3D; margin-bottom:6px; }
.et_pb_section:has(.wls-title) { padding:clamp(72px,9vw,120px) 24px; }
/* §3 signature: 3-col override on the reused values-card grid + left-align header */
.ka_services_strip--wes-loc-sig .ka_services_strip__grid { grid-template-columns:repeat(3,1fr); }
.et_pb_text:has(.wls-title) { text-align:left; margin:0 0 48px; max-width:none; }
@media (max-width:900px){ .ka_services_strip--wes-loc-sig .ka_services_strip__grid { grid-template-columns:1fr; } }

/* §4 location map header */
.wlm-title { font-family:'Spectral',serif; font-size:clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-0.02em; color:#1c1c1e; text-align:center; margin:0 0 40px; }
.et_pb_text:has(.wlm-title) { text-align:center; }
.et_pb_section:has(.wlm-title) { padding:clamp(64px,8vw,110px) 24px; }

/* ============================================================
   Johnson City FLAGSHIP extras (Standing Rule #33): photo essay, why-city,
   design-consult, team. (Inventory spotlight needs WooCommerce — sandbox lacks it.)
   ============================================================ */
.wfx-mark { display:flex; align-items:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#B58A3D; margin:0 0 14px; }
.wfx-mark--center { justify-content:center; }
.wfx-num { font-family:'Spectral',serif; font-style:italic; font-size:20px; font-weight:700; color:#D4A24E; }
.wfx-title { font-family:'Spectral',serif; font-size:clamp(30px,3.6vw,46px); font-weight:700; line-height:1.1; letter-spacing:-0.02em; color:#1c1c1e; margin:0 0 14px; }
.wfx-title em { font-style:italic; color:#B58A3D; }
.wfx-lede { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.7; color:#4a4540; margin:0 0 40px; max-width:64ch; }
.et_pb_section:has(.wfx-title),.et_pb_section:has(.wfc-title),.et_pb_section:has(.wfco-title),.et_pb_section:has(.wft-title){ padding:clamp(64px,8vw,120px) 24px; }
.et_pb_text:has(.wft-title){ text-align:center; max-width:760px; margin:0 auto 48px; }
/* photo essay grid */
.wfe-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:16px; max-width:1240px; margin:0 auto; }
.wfe-cell { position:relative; margin:0; overflow:hidden; border-radius:12px; box-shadow:0 18px 40px rgba(28,26,31,.16); }
.wfe-cell img { width:100%; height:100%; object-fit:cover; display:block; }
.wfe-cell--1 { grid-row:span 2; } .wfe-cell--4 { grid-column:span 2; }
.wfe-cell figcaption { position:absolute; left:0; right:0; bottom:0; padding:14px 16px; background:linear-gradient(transparent,rgba(14,13,16,.82)); color:#fff; font-family:'AR One Sans',sans-serif; font-size:12px; }
.wfe-cell figcaption span { display:inline-block; font-family:'Spectral',serif; font-style:italic; color:#D4A24E; margin-right:8px; }
/* why-city */
.wfc-grid { display:grid; grid-template-columns:1.4fr 1fr; gap:clamp(40px,5vw,80px); align-items:center; max-width:1200px; margin:0 auto; }
.wfc-title { font-family:'Spectral',serif; font-size:clamp(30px,3.6vw,46px); font-weight:700; line-height:1.1; color:#1c1c1e; margin:0 0 20px; } .wfc-title em { font-style:italic; color:#B58A3D; }
.wfc-body { font-family:'AR One Sans',sans-serif; font-size:16px; line-height:1.75; color:#4a4540; margin:0 0 18px; }
.wfc-stats { list-style:none; margin:0; padding:36px; display:grid; grid-template-columns:1fr 1fr; gap:28px; background:#1c1c1e; border-radius:14px; }
.wfc-stats li { display:flex; flex-direction:column; }
.wfc-stats strong { font-family:'Spectral',serif; font-style:italic; font-size:40px; color:#D4A24E; line-height:1; }
.wfc-stats span { font-family:'AR One Sans',sans-serif; font-size:13px; color:rgba(255,255,255,.7); margin-top:6px; }
/* design consult (dark) */
.wfco-card { max-width:880px; margin:0 auto; text-align:center; }
.wfco-mark { display:flex; justify-content:center; align-items:center; gap:12px; font-family:'AR One Sans',sans-serif; font-size:12px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:#D4A24E; margin:0 0 14px; }
.wfco-title { font-family:'Spectral',serif; font-size:clamp(32px,4vw,52px); font-weight:700; color:#fff; margin:0 0 16px; } .wfco-title em { font-style:italic; color:#D4A24E; }
.wfco-lede { font-family:'AR One Sans',sans-serif; font-size:17px; line-height:1.7; color:rgba(255,255,255,.75); margin:0 auto 36px; max-width:60ch; }
.wfco-features { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:620px; margin:0 auto 36px; }
.wfco-features strong { display:block; font-family:'Spectral',serif; font-style:italic; font-size:28px; color:#D4A24E; }
.wfco-features span { font-family:'AR One Sans',sans-serif; font-size:13px; color:rgba(255,255,255,.6); }
.wfco-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.wfco-btn { font-family:'AR One Sans',sans-serif; font-size:14px; font-weight:700; padding:14px 26px; border-radius:4px; text-decoration:none; background:#D4A24E; color:#1a1418; }
.wfco-btn--ghost { background:transparent; border:1px solid rgba(255,255,255,.5); color:#fff; }
/* team */
.wft-title { font-family:'Spectral',serif; font-size:clamp(30px,3.6vw,46px); font-weight:700; color:#1c1c1e; margin:0 0 14px; } .wft-title em { font-style:italic; color:#B58A3D; }
.wft-lede { font-family:'AR One Sans',sans-serif; font-size:16px; line-height:1.7; color:#4a4540; margin:0; }
.ka_services_strip--wft .ka_services_strip__grid { grid-template-columns:repeat(4,1fr); }
.ka_services_strip--wft .wft-bench { display:inline-block; font-family:'AR One Sans',sans-serif; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:#B58A3D; background:rgba(212,162,78,.12); padding:4px 10px; border-radius:999px; }
@media (max-width:900px){ .wfe-grid{grid-template-columns:repeat(2,1fr);} .wfc-grid{grid-template-columns:1fr;} .wfco-features{grid-template-columns:1fr;} .ka_services_strip--wft .ka_services_strip__grid{grid-template-columns:1fr 1fr;} }

/* flagship §inventory — product-slider grid + catalog CTA */
.ka_product_slider--wes-flag { max-width:1240px; margin:0 auto; }
.ka_product_slider--wes-flag .ka_product_grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.ka_product_slider--wes-flag .ka_product_card { display:block; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 14px 34px rgba(28,26,31,.12); text-decoration:none; }
.ka_product_slider--wes-flag .ka_product_card__image img { width:100%; aspect-ratio:1/1; object-fit:cover; display:block; background:#fbf6ec; }
.ka_product_slider--wes-flag .ka_product_card__body { padding:18px 18px 22px; }
.ka_product_slider--wes-flag .ka_product_card__title { font-family:'Spectral',serif; font-size:16px; font-weight:700; color:#1c1c1e; margin:0 0 8px; line-height:1.3; }
.ka_product_slider--wes-flag .ka_product_card__price { font-family:'AR One Sans',sans-serif; font-size:15px; font-weight:700; color:#B58A3D; }
.wfi-cta { text-align:center; margin:36px 0 0; }
.wfi-cta a { font-family:'AR One Sans',sans-serif; font-size:14px; font-weight:700; color:#1c1c1e; border:1px solid #1c1c1e; padding:13px 26px; border-radius:4px; text-decoration:none; display:inline-block; }
@media (max-width:900px){ .ka_product_slider--wes-flag .ka_product_grid{grid-template-columns:repeat(2,1fr);} }

/* ============================================================
   WooCommerce /shop/ archive — brand overrides (Standing Rule #28)
   Ported from wes_pages._global_css: hide Divi sidebar, full-width,
   brand the result-count/ordering/grid/cards/price/button/onsale/pagination.
   ============================================================ */
body.woocommerce.archive #sidebar, body.woocommerce.archive .et_pb_widget_area, body.woocommerce.archive aside.sidebar, body.archive.tax-product_cat #sidebar { display:none !important; }
body.woocommerce.archive #left-area, body.woocommerce.archive #main-content .container, body.archive.tax-product_cat #left-area { width:100% !important; max-width:1400px !important; margin-left:auto !important; margin-right:auto !important; padding:clamp(40px,5vw,80px) clamp(24px,4vw,48px) !important; float:none !important; }
body.woocommerce.archive .page-title, body.archive.tax-product_cat .page-title { font-family:'Spectral',serif !important; font-size:clamp(36px,5vw,64px) !important; font-weight:700 !important; color:#1c1c1e !important; margin:0 0 16px !important; letter-spacing:-0.02em !important; }
body.woocommerce.archive .term-description, body.archive.tax-product_cat .term-description { font-family:'AR One Sans',sans-serif !important; font-size:17px !important; line-height:1.6 !important; color:#4a4540 !important; margin:0 0 32px !important; max-width:60ch !important; }
/* Result count + ordering bar */
body.woocommerce.archive .woocommerce-result-count, body.archive.tax-product_cat .woocommerce-result-count { font-family:'AR One Sans',sans-serif !important; font-size:13px !important; color:#4a4540 !important; margin:0 !important; padding:16px 0 !important; border-top:1px solid rgba(28,26,31,.10); border-bottom:1px solid rgba(28,26,31,.10); }
body.woocommerce.archive form.woocommerce-ordering, body.archive.tax-product_cat form.woocommerce-ordering { float:right !important; margin:8px 0 !important; }
body.woocommerce.archive form.woocommerce-ordering select, body.archive.tax-product_cat form.woocommerce-ordering select { font-family:'AR One Sans',sans-serif !important; font-size:13px !important; padding:8px 32px 8px 14px !important; border:1px solid rgba(28,26,31,.18) !important; border-radius:2px !important; background:#fff !important; color:#1c1c1e !important; cursor:pointer; }
/* Shop product grid */
body.woocommerce.archive ul.products, body.archive.tax-product_cat ul.products { display:grid !important; grid-template-columns:repeat(4,1fr) !important; gap:24px !important; list-style:none; padding:32px 0 0 !important; margin:0 !important; }
body.woocommerce.archive ul.products::before, body.woocommerce.archive ul.products::after { display:none !important; }
body.woocommerce.archive ul.products li.product, body.archive.tax-product_cat ul.products li.product { width:100% !important; margin:0 !important; padding:0 !important; background:#fff; border-radius:10px; box-shadow:var(--wes-shadow-md); overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
body.woocommerce.archive ul.products li.product:hover, body.archive.tax-product_cat ul.products li.product:hover { transform:translateY(-3px); box-shadow:var(--wes-shadow-lg); }
body.woocommerce.archive ul.products li.product a, body.archive.tax-product_cat ul.products li.product a { text-decoration:none; color:inherit; }
body.woocommerce.archive ul.products li.product img, body.archive.tax-product_cat ul.products li.product img { width:100% !important; aspect-ratio:1/1; object-fit:cover; margin:0 !important; }
body.woocommerce.archive ul.products li.product .woocommerce-loop-product__title, body.archive.tax-product_cat ul.products li.product .woocommerce-loop-product__title { font-family:'Spectral',serif !important; font-size:16px !important; font-weight:600 !important; line-height:1.3 !important; color:#1c1c1e !important; padding:16px 18px 6px !important; min-height:60px; }
body.woocommerce.archive ul.products li.product .price, body.archive.tax-product_cat ul.products li.product .price { font-family:'Spectral',serif !important; font-size:18px !important; font-weight:700 !important; color:#1c1c1e !important; padding:0 18px 12px !important; display:block; }
body.woocommerce.archive ul.products li.product .price del, body.archive.tax-product_cat ul.products li.product .price del { color:#4a4540 !important; font-size:14px !important; font-weight:400 !important; margin-right:8px; }
body.woocommerce.archive ul.products li.product .price ins, body.archive.tax-product_cat ul.products li.product .price ins { text-decoration:none !important; color:#1c1c1e !important; }
body.woocommerce.archive ul.products li.product .button, body.archive.tax-product_cat ul.products li.product .button { display:inline-block; margin:0 18px 18px !important; padding:10px 16px !important; background:#1c1c1e !important; color:#fff !important; font-family:'AR One Sans',sans-serif !important; font-size:12px !important; font-weight:700 !important; letter-spacing:.08em !important; text-transform:uppercase !important; border-radius:2px !important; box-shadow:var(--wes-shadow-md) !important; }
body.woocommerce.archive ul.products li.product .button:hover, body.archive.tax-product_cat ul.products li.product .button:hover { background:#B58A3D !important; color:#1a1d21 !important; }
body.woocommerce.archive ul.products li.product .onsale, body.archive.tax-product_cat ul.products li.product .onsale { background:#dc2626 !important; color:#fff !important; font-family:'Spectral',serif !important; font-style:italic !important; font-weight:700 !important; padding:6px 12px !important; border-radius:2px !important; box-shadow:var(--wes-shadow-md) !important; top:12px !important; right:12px !important; left:auto !important; }
/* Pagination */
body.woocommerce.archive .woocommerce-pagination ul.page-numbers, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers { display:flex !important; gap:6px; justify-content:center; padding:32px 0 !important; border:0 !important; }
body.woocommerce.archive .woocommerce-pagination ul.page-numbers li, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers li { border:0 !important; }
body.woocommerce.archive .woocommerce-pagination ul.page-numbers a, body.woocommerce.archive .woocommerce-pagination ul.page-numbers span, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers a, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers span { display:inline-flex; align-items:center; justify-content:center; min-width:40px; height:40px; padding:0 12px; background:#fff !important; color:#1c1c1e !important; border:1px solid rgba(28,26,31,.12) !important; border-radius:2px !important; font-family:'AR One Sans',sans-serif !important; font-size:14px !important; font-weight:600 !important; text-decoration:none !important; transition:all .2s ease; }
body.woocommerce.archive .woocommerce-pagination ul.page-numbers .current, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers .current { background:#1c1c1e !important; color:#fff !important; border-color:#1c1c1e !important; }
body.woocommerce.archive .woocommerce-pagination ul.page-numbers a:hover, body.archive.tax-product_cat .woocommerce-pagination ul.page-numbers a:hover { background:#D4A24E !important; color:#1a1d21 !important; border-color:#D4A24E !important; }
@media (max-width:1080px) { body.woocommerce.archive ul.products, body.archive.tax-product_cat ul.products { grid-template-columns:repeat(3,1fr) !important; } }
@media (max-width:760px) { body.woocommerce.archive ul.products, body.archive.tax-product_cat ul.products { grid-template-columns:repeat(2,1fr) !important; } }
@media (max-width:480px) { body.woocommerce.archive ul.products, body.archive.tax-product_cat ul.products { grid-template-columns:1fr !important; } }
/* =================================================== Request-a-Quote (M2/WES-4) ====
   Generic dark page-head hero variant (reusable on every simple page head) +
   the ka/quote-form skin (matches the legacy classic-Divi quote form). */

/* Generic page-head hero — solid dark band, centered (no image). */
.ka_banner_hero--theme-wes-pagehead { background: #23222a; }
.ka_banner_hero--theme-wes-pagehead .ka_banner_hero__inner { min-height: 380px; }
.ka_banner_hero--theme-wes-pagehead .ka_banner_hero__inner::before { display: none; }
.ka_banner_hero--theme-wes-pagehead .ka_banner_hero__overlay {
  max-width: 100%; align-items: center; text-align: center; justify-content: center;
  min-height: 380px; padding: 80px 32px;
}
.ka_banner_hero--theme-wes-pagehead .ka_banner_hero__title {
  font-family: "Spectral", Georgia, serif; font-size: 56px; font-weight: 700;
  line-height: 1.1; letter-spacing: -0.01em; color: #ffffff; margin: 0 0 16px;
}
.ka_banner_hero--theme-wes-pagehead .ka_banner_hero__subtitle {
  font-family: "AR One Sans", -apple-system, sans-serif; font-size: 20px;
  line-height: 1.5; color: #f5f1ea; max-width: 780px; margin: 0 auto; opacity: 1;
}

/* ka/quote-form — native Request-a-Quote form. */
.ka_quote_form--theme-wes { padding: 90px 24px; background: #ffffff; }
.ka_quote_form--theme-wes .ka_quote_form__inner { max-width: 820px; margin: 0 auto; }
.ka_quote_form--theme-wes .ka_quote_form__content {
  background: #fff8e6; border-left: 4px solid #D4A24E; padding: 16px 20px; margin: 0 0 24px;
  font-family: "AR One Sans", sans-serif; font-size: 15px; line-height: 1.5; color: #1c1c1e;
  border-radius: 0 4px 4px 0;
}
.ka_quote_form--theme-wes .ka_quote_form__content strong { color: #1c1c1e; }
.ka_quote_form--theme-wes .ka_quote_form__form {
  background: #fff; padding: 48px; border-radius: 6px; box-shadow: var(--ka-shadow-md);
  display: flex; flex-direction: column; gap: 20px;
}
.ka_quote_form--theme-wes .ka_quote_form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ka_quote_form--theme-wes .ka_quote_form__field { display: flex; flex-direction: column; }
.ka_quote_form--theme-wes .ka_quote_form__label {
  font-family: "AR One Sans", sans-serif; font-size: 13px; font-weight: 700; color: #1c1c1e;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; display: block;
}
.ka_quote_form--theme-wes .ka_quote_form__req { color: #D4A24E; }
.ka_quote_form--theme-wes .ka_quote_form__input {
  padding: 14px 16px; font-family: "AR One Sans", sans-serif; font-size: 15px;
  border: 1px solid rgba(28,26,31,.18); border-radius: 4px; width: 100%; box-sizing: border-box;
  background: #fff; color: #1c1c1e;
}
.ka_quote_form--theme-wes .ka_quote_form__input:focus { outline: 2px solid #D4A24E; outline-offset: 1px; border-color: #D4A24E; }
.ka_quote_form--theme-wes .ka_quote_form__textarea { resize: vertical; min-height: 160px; }
.ka_quote_form--theme-wes .ka_quote_form__file { padding: 10px; }
.ka_quote_form--theme-wes .ka_quote_form__consent {
  font-family: "AR One Sans", sans-serif; font-size: 14px; color: #4a4540; line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.ka_quote_form--theme-wes .ka_quote_form__consent input { margin-top: 4px; }
.ka_quote_form--theme-wes .ka_quote_form__submit {
  align-self: flex-start; border: 0; cursor: pointer;
  font-family: "AR One Sans", sans-serif; font-size: 15px; font-weight: 700;
  color: #1a1d21; background: linear-gradient(180deg, #e0b563 0%, #D4A24E 100%);
  padding: 16px 34px; border-radius: 999px; box-shadow: var(--ka-shadow-md);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ka_quote_form--theme-wes .ka_quote_form__submit:hover { transform: translateY(-2px); box-shadow: var(--ka-shadow-lg); }

@media (max-width: 640px) {
  .ka_quote_form--theme-wes .ka_quote_form__row { grid-template-columns: 1fr; }
  .ka_quote_form--theme-wes .ka_quote_form__form { padding: 28px; }
  .ka_banner_hero--theme-wes-pagehead .ka_banner_hero__title { font-size: 36px; }
}
