/* ==========================================================================
   K5 Investment Group — main.css
   Brand tokens, reset, typography, layout, components.
   ========================================================================== */

:root {
  --navy: #0B2545;
  --navy-deep: #08182F;
  --gold: #B8872D;
  --gold-soft: #D4A84B;
  --light-gold: #F5ECD7;
  /* Steel-blue accent from the La Gala Construction logo. Used for the
     credibility / trust-bar signals that tie K5 rentals to the 25-year
     construction track record. */
  --lagala-blue: #5C95B8;
  --lagala-blue-soft: #A6CFE5;
  --lagala-blue-bg: #EAF4FA;
  --slate: #334155;
  --slate-soft: #64748B;
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --border: #E5E1D5;
  --shadow-sm: 0 1px 2px rgba(8, 24, 47, .06);
  --shadow-md: 0 10px 30px rgba(8, 24, 47, .08);
  --shadow-lg: 0 20px 60px rgba(8, 24, 47, .12);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1180px;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
input, select, textarea { font: inherit; color: inherit; }
ul { padding: 0; list-style: none; margin: 0; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); font-weight: 700; color: var(--gold); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .6rem;
}
.divider--gold {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1.2rem 0 1.6rem;
  border: 0;
}
.muted { color: var(--slate-soft); }

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--white);
}
.section--light { background: var(--white); }
.section--cream { background: var(--light-gold); }
.section--dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(184,135,45,.18), transparent 45%),
    linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: #E8EEF6;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #FFF; }
.section--dark h4 { color: var(--gold-soft); }
.section--dark .muted { color: rgba(232,238,246,.7); }
.section__header { max-width: 760px; margin: 0 auto 2.8rem; text-align: center; }
.section__header h2 { margin-bottom: .8rem; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
@media (max-width: 720px) {
  .site-header__inner { padding: 10px 0; gap: 8px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,135,45,.35);
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--slate-soft);
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

/* Drop the wordmark subtitle on tight viewports — "Powered by La Gala
 * Construction · CGC 059211" is long and squeezes the hamburger button. The
 * trust bar above already says the same thing, so removing the subtitle
 * costs nothing and frees ~30% of the brand's horizontal footprint. */
@media (max-width: 720px) {
  .brand__text small { display: none; }
  .brand { font-size: 1.2rem; }
  .brand__mark { width: 36px; height: 36px; }
}
/* Smallest phones — keep the wordmark, ditch the LC mark to save more space */
@media (max-width: 380px) {
  .brand__mark { width: 32px; height: 32px; }
  .brand { font-size: 1.05rem; gap: 8px; }
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__list {
  display: flex;
  gap: 4px;          /* tighter base gap; padding on the link gives the visual gap */
  align-items: center;
}
.nav__link {
  color: var(--slate);
  font-weight: 500;
  font-size: .95rem;
  /* Bigger hover/click target — was 6px 0. Now the whole pill area is hoverable
   * and the underline animates within the padding so adjacent items don't bleed. */
  padding: 10px 12px;
  border-radius: 6px;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: rgba(11, 37, 69, .04); color: var(--navy); }
.nav__link::after {
  content: '';
  position: absolute;
  /* Anchor the underline INSIDE the padding so it visually centers under the
   * link text, instead of running off into adjacent items at full width. */
  left: 12px; right: 12px; bottom: 4px;
  width: auto; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); }
.nav__auth { display: inline-flex; gap: 10px; align-items: center; margin-left: 8px; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 6px;
  background: var(--navy);
  position: relative;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: '';
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--gold-soft);
  transition: transform .25s, top .25s, opacity .2s;
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after  { top: 7px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Hamburger kicks in at iPad-portrait + smaller. Bumped from 820px → 980px
 * because we now have 7 nav items (Home / Rentals / Concierge / Refer / About
 * / Contact + Sign-In button) and they were cramping the brand wordmark on
 * standard iPads. */
@media (max-width: 980px) {
  .site-header { position: relative; }   /* anchor for the absolute mobile menu */
  .nav__toggle { display: inline-block; }
  .nav__list {
    position: absolute;
    /* top: 100% positions the menu directly below the header regardless of
     * the trust-bar height above it. The previous hard-coded 72px broke as
     * soon as the trust bar pushed the header down. */
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 24px 16px;
    display: none;
    z-index: 50;
  }
  .nav__list.is-open { display: flex; }
  .nav__link {
    padding: 14px 6px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .nav__link::after { display: none; }   /* drop the gold underline in mobile menu — too noisy stacked */
  .nav__link:hover { background: var(--bg); }
  .nav__link:last-of-type { border-bottom: 0; }
  .nav__auth { margin-left: 0; padding-top: 8px; }
  .nav__auth {
    margin-top: 10px;
    justify-content: flex-start;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-align: center;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--gold); color: #fff; box-shadow: 0 6px 18px rgba(184,135,45,.35); }
.btn--primary:hover { background: var(--gold-soft); color: #fff; box-shadow: 0 10px 24px rgba(184,135,45,.4); }
.btn--secondary { background: var(--navy); color: #fff; }
.btn--secondary:hover { background: var(--navy-deep); color: #fff; }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 78% 12%, rgba(184,135,45,.2), transparent 48%),
    radial-gradient(circle at 10% 90%, rgba(184,135,45,.1), transparent 50%),
    linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 70%);
  color: #F4F1EA;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(244,241,234,.88);
  margin-bottom: 1.8rem;
  max-width: 620px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(184,135,45,.18);
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(184,135,45,.35);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,135,45,.35);
}
.card h3 { margin-bottom: .5rem; }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--light-gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.section--dark .card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: rgba(232,238,246,.88);
}
.section--dark .card h3 { color: #fff; }

/* Arm cards (two-arm split on landing) */
.arm-card {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.arm-card__kicker {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .6rem;
}
.arm-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: .8rem; }

/* Stat blocks */
.stat {
  text-align: center;
  padding: 1.4rem 1rem;
}
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .3rem;
}
.section--dark .stat__value { color: var(--gold-soft); }
.stat__label {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--slate-soft);
  font-weight: 600;
}
.section--dark .stat__label { color: rgba(232,238,246,.7); }

/* Property cards */
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.property-card__image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(11,37,69,.7), rgba(184,135,45,.4)),
    var(--light-gold);
  background-size: cover;
  background-position: center;
  position: relative;
}
.property-card__image.placeholder::after {
  content: 'K5';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  letter-spacing: .1em;
}
.property-card__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.property-card__title { margin: 0 0 .3rem; font-size: 1.2rem; }
.property-card__location {
  font-size: .85rem;
  color: var(--slate-soft);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-card__meta {
  display: flex;
  gap: 12px;
  font-size: .82rem;
  color: var(--slate-soft);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.property-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.property-card__rate {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.property-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}
.property-card__price small {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--slate-soft);
}
.property-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11,37,69,.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--light-gold);
  color: var(--gold);
}

/* Forms */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-size: 1rem;
  color: var(--slate);
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,135,45,.15);
}
.field__help { font-size: .78rem; color: var(--slate-soft); }
.field__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field__row { grid-template-columns: 1fr; } }
.field--check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--slate);
}
.field--check input { width: auto; margin-top: 2px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card.is-submitted .form { display: none; }
.form-card__success {
  display: none;
  padding: 1rem 0;
  text-align: center;
}
.form-card.is-submitted .form-card__success { display: block; }
.form-card__success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--light-gold);
  color: var(--gold);
  font-size: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

/* Waterfall / tables */
.data-display {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.data-display table { width: 100%; border-collapse: collapse; }
.data-display th,
.data-display td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.data-display th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.data-display tr:last-child td { border-bottom: 0; }
.data-display tbody tr:hover { background: var(--light-gold); }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* Filter toolbar (rentals) */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.toolbar__btn {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--border);
  font-size: .88rem;
  color: var(--slate);
  font-weight: 500;
  transition: all .2s;
}
.toolbar__btn:hover { border-color: var(--gold); color: var(--navy); }
.toolbar__btn.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Results summary + empty state */
.results-meta {
  text-align: center;
  margin-bottom: 1.4rem;
  font-size: .9rem;
  color: var(--slate-soft);
}
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--slate-soft);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(244,241,234,.75);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}
.site-footer a { color: rgba(244,241,234,.75); }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer h4 {
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-size: .78rem;
  letter-spacing: .2em;
}
.site-footer ul li { margin-bottom: .5rem; font-size: .92rem; }
.site-footer__brand {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: .6rem;
  display: inline-block;
}
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.4rem;
  margin-top: 2.4rem;
  font-size: .8rem;
  color: rgba(244,241,234,.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__grid { display: grid; gap: 32px; grid-template-columns: 1.3fr 1fr 1fr 1fr; }
@media (max-width: 820px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ===========================================================================
   Trust bar — runs above the header on every page. Single biggest credibility
   signal: ties K5 rentals to La Gala Construction's federal track record.
   =========================================================================== */
.trust-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  color: #DCE9F2;
  font-size: .82rem;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}
.trust-bar__inner {
  display: flex; align-items: center; gap: 1rem;
  padding: 8px 1rem; flex-wrap: wrap; justify-content: center;
}
.trust-bar__badge {
  background: var(--lagala-blue);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-bar__line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-bar__line strong { color: var(--lagala-blue-soft); font-weight: 600; }
.trust-bar a { color: var(--lagala-blue-soft); text-decoration: none; }
.trust-bar a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 720px) {
  .trust-bar { font-size: .72rem; }
  .trust-bar__inner { padding: 6px .8rem; gap: .6rem; }
  .trust-bar__line { white-space: normal; text-align: center; }
}

/* La Gala "LC" SVG mark replaces the old text-only K5 mark. Same .brand__mark
 * box just rendering the SVG centered. */
.brand__mark--lc {
  background: #fff !important;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.brand__mark--lc svg { width: 70%; height: 70%; }
